Skip to content

Instantly share code, notes, and snippets.

View sfc-gh-vsekar's full-sized avatar

Venkatesh Sekar sfc-gh-vsekar

  • Snowflake
  • Waterloo, Canada
View GitHub Profile
@sfc-gh-vsekar
sfc-gh-vsekar / blog_querying_multi_terabyte_via_external_table_sqls.sql
Last active February 18, 2025 12:08
A quick gist for the sqls used in the blog : Querying TB sized External Tables with Snowflake
/*
Block : #STAGE
DDL for defining the external stage
*/
-- Step 1 : Create a database and schema for the experiment
create database ccrawl;
create schema ccrawl.raw;
use schema ccrawl.raw;