Skip to content

Instantly share code, notes, and snippets.

@rtempleton
rtempleton / WITSML_SNOWFLAKE.sql
Last active December 6, 2021 00:35
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);