Tutorial: your first transfer
database setup for this tutorial
use role sysadmin;
create database ta_verify;
use database ta_verify;
create schema test;
use schema test;
CREATE STAGE if not exists test.test_uploads
DIRECTORY = ( ENABLE = true );
create table if not exists test.Leads (
LeadID INT PRIMARY KEY,
LeadName VARCHAR(100),
email VARCHAR(200)
);Change the following:
grant app privileges to the objects
test it out
Last updated