Copy Data from Snowflake to GCP
To copy data from Snowflake into Google Cloud Storage (GCS) without creating a storage integration, you can create an external stage with GCP credentials. Here's how you can do it:
Create the external stage
Copy data into the GCS bucket
Hereβs the process step-by-step:
Create the external stage:
Replace your-bucket-name
, your-path
, and your-gcp-keyfile-json-string
with your actual GCS bucket name, path, and the contents of your GCP key file (in JSON format), respectively.
Copy data into the GCS bucket:
Replace your-file-name
with the desired file name in the GCS bucket and your_table
with the name of the table you want to export.
Last updated