CREATE PIPE
Creates a pipe backed by a COPY INTO <table> statement.
Syntax
CREATE PIPE [ IF NOT EXISTS ] <name>
[ AUTO_INGEST = TRUE ]
[ COMMENT = '<comment>' | COMMENTS = '<comment>' ]
AS
COPY INTO <table> ...
Parameters
Example
CREATE PIPE IF NOT EXISTS my_pipe
AUTO_INGEST = TRUE
COMMENTS = 'load staged files into target table'
AS
COPY INTO my_table
FROM @my_stage;