Skip to content

Instantly share code, notes, and snippets.

@william-wash
william-wash / WITSML_SNOWFLAKE.sql
Created March 30, 2020 18:11 — forked from rtempleton/WITSML_SNOWFLAKE.sql
Source code for WITSML processing in Snowflake referenced in
--set up your environment
create database my_test_db;
create schema my_test_db.witsml;
use schema my_test_db.witsml;
--create the staging table where all WITSML files are loaded to by Snowpipe
create table witsml_temp (col1 variant);