-- Create ETL schema create schema if not exists etl; -- ETL Config Defaults create table etl.config ( item varchar(100), value varchar(500) ) diststyle all sortkey (item); insert into etl.config (item, value) values ('source-schema-name', ''), ('ingest-schema-name', ''), ('delta-schema-name', ''), ('staging-schema-name', ''), ('target-schema-name', ':role/');