Reputation: 1
I'm interested in continuously bulk unloading data from Snowflake to a local storage. Are there any drawbacks to bulk unload from Snowflake by directly issuing a SELECT
query using JDBC vs using COPY_INTO
to copy to a Snowflake internal stage and then using the GET
command to download from internal stage (Snowflake reference).
Making a select query through JDBC seems more direct without having to use Snowflake storage capacity of the intermediate internal stage.
Upvotes: 0
Views: 469
Reputation: 1520
COPY INTO has some extra benefits that direct SELECT does not have:
This is not an exhaustive list, so I think COPY INTO gives you more control over simple direct SELECT.
Upvotes: 0