Im running the below copy statement into snowflake destination table with a precreated external stage for the existing blob store account. The copy works correctly and rows are then visible in destination snowflake table. The purge of the corresponding folder 'D_CALENDER' in azure blob store doesn't process though. No error, just doesnt process. Any ideas perhaps?
COPY INTO "STAGING"."D_CALENDAR"
FROM @STAGE/D_CALENDAR/
FILE_FORMAT = CSV_IMPORT ON_ERROR = CONTINUE PURGE = TRUE;
Regards Posty