Show Pipeline Summary The SHOW PIPELINE command displays pipeline information. Syntax show pipeline <pipeline_name> [members | labels]; Parameters Parameter Description Parameter Description &l...
Pipeline
Invoke Pipeline
Invoke Pipeline Summary Use the INVOKE PIPELINE command to interactively execute a pipeline. Syntax invoke [synchronous] pipeline <pipeline_name> [(variables variable_name1=value_override1, va...
Drop Pipeline
Drop Pipeline Summary The DROP PIPELINE command removes the specified pipeline domain object from the Connect instance. Syntax drop pipeline [if exists] <pipeline_name>; Parameters Parameter Des...
Create Pipeline
Create Pipeline Summary The CREATE PIPELINE command creates a pipeline domain object. Pipelines allow developers to build and store complex ETL and data processing logic. Syntax create pipeline [i...
Alter Pipeline
Alter Pipeline Summary The ALTER PIPELINE command modifies the attributes of an existing pipeline domain object. Use it to add member steps and child pipelines to a parent pipeline. Syntax // [&helli...
Add Steps to a Pipeline
Use ALTER PIPELINE to add steps to a pipeline. 1. Add Step 1. 1 SQL> alter pipeline p_pay_extract add step s_get_month_period_type; 2. Add Step 2. 1 […]