Last Updated: Sep 13, 2021
Dataset node is used to retrieve data from Datasets using a query. The query editor supports ANSI SQL standard queries.
For Jiffy table and Document table, it is recommended to use Jiffy Select and Jiffy Insert/Update nodes.
Double click the Dataset node and click the Query tab.
Query to be executed is specified in the Query field.
Parameters in the query can be passed in the following format:
Specify query to be executed in the Query field.
Query must be in the format: Select * from `/<app_group>/<app>/<dataset_name>` where <column_name> = <‘value’>.
Ensure that the symbol used is backquote` and not single quote'.
To select the columns from Customers dataset where the value in the column LastName is Smith, the query is:
Select * from `/Human Resource/Administration/EmployeeDetails.csv` where LastName ='Smith';
The query can be processed in two ways:
Row Wise Processing: Records in the dataset are processed row by row.
Specify the following details:
This is mandatory and the specified column names should be the same as the name of the columns in the dataset.
Use Row Wise Processing when:
- You need each row in the dataset to be fetched as an iteration for further automation.
- You need to process less than 1000 records.
Row limit for Bulk Processing is 1000.
Bulk Processing: Records in the dataset are processed in bulk.
Specify the following details:
Use Bulk Processing when:
- All the records in the dataset must be used for further automation as a Datatable.
- You need to process more than 1000 records.
Row limit for Bulk Processing is 5000.
After executing the task, the Result of Execution window displays the following tabs: