Trying to get a file from stage into my local storage via Snowflake GET command but command gets greyed out and gives the above error.
CREATE TEMPORARY STAGE my_temp_stage;
COPY INTO @my_temp_stage/output_filex
FROM (SELECT * FROM Table_name)
FILE_FORMAT = (
TYPE='CSV'
COMPRESSION=GZIP
FIELD_DELIMITER=','
ESCAPE=NONE
ESCAPE_UNENCLOSED_FIELD=NONE
date_format='AUTO'
time_format='AUTO'
timestamp_format='AUTO'
binary_format='UTF-8'
field_optionally_enclosed_by='"'
null_if=''
EMPTY_FIELD_AS_NULL = FALSE
)
overwrite=TRUE
single=FALSE
max_file_size=5368709120
header=TRUE;
I'm using the below GET command to load above file into my local
GET @my_temp_stage/my_temp_stage/output_filex_0_0_0.csv.gz file://C:\Users\zn\Downloads;
Are you running the command in the Web UI? It is only supported from a driver/connector such as SnowSQL