You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/shared/influxdb3-query-guides/snapshots/snowflake.md
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -25,19 +25,17 @@ Before you begin, ensure you have the following:
25
25
5.[Query your data in Snowflake](#query-your-data-in-snowflake)
26
26
27
27
28
-
##Configure external storage
28
+
### Create a Snowflake external stage
29
29
30
-
Set up an external storage location (such as AWS S3) to store Iceberg table data and metadata.
30
+
Use the `CREATE STAGE` Snowflake SQL command to set up an external storage location
31
+
(such as AWS S3) to store Iceberg table data and metadata--for example:
31
32
32
-
### Example: Configure an S3 stage in Snowflake
33
+
####Example: Configure an S3 stage in Snowflake
33
34
34
35
```sql
35
36
CREATE STAGE my_s3_stage
36
37
URL='s3://my-bucket/'
37
38
STORAGE_INTEGRATION=my_storage_integration;
38
-
```
39
-
40
-
For more details, refer to the [Snowflake documentation](https://docs.snowflake.com/en/user-guide/tables-iceberg-configure-catalog-integration-object-storage).
0 commit comments