SQL Transform Tool
The SQL Transform tool enables you to write and execute custom SQL queries directly within your workflow. It allows seamless access to data from an upstream tool/node using the alias upstream
, making it easy to reference input data in your queries.
Before using the SQL Transform tool, ensure that Enable LiveQuery option is turned on:
Navigate to Designer Cloud > Options.
Verify that Enable LiveQuery is enabled.
Using the SQL Transform Tool
Select SQL Transform from the Developer tools menu.
Write your SQL query in the query box on the right side. Use
upstream
as the table name to reference input data, for exampleSELECT "column_name" FROM upstream;
.Select the Execute button to run your SQL command.
Tip
Use built-in and custom CDW functions or UDFs to enhance your queries
Limitations
Data manipulation commands (UPDATE
, INSERT
, etc.) are not supported.