Skip to content

sfc-gh-svadakath/SNF_DATA_ENGINEERING_WORK

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

This repository contains simple sample worksheet and programs that will make snowflake Data Engineering works easy for you.

Initial Task :-

  1. Get a snowflake account with accountadmin or appropriate previleges.
  2. Create DB, schema and stages

// create DB create database SNF_RPEGU_DEMO_DB;

// create schema create schema snf_rpegu_demo_db.data;

use role accountadmin; use database SNF_RPEGU_DEMO_DB; use schema snf_rpegu_demo_db.data;

//creating stage create stage if not exists stg_unstructured ENCRYPTION = (TYPE = 'SNOWFLAKE_SSE') DIRECTORY = ( ENABLE = true );

//upload the excel file list @stg_unstructured ;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PLpgSQL 100.0%