This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --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); | |