Then try the execSQL step with the $dbAlias value as database name, the sql in the $dbSQL field, any values to be substituted in the query in $dbParamNames field and the datatype in the $dbParamTypes field.
eg: select * from emp where empid = ‘101’
This query is to be executed in the database Employee
$dbAlias = Employee
$dbSQL = select * from emp where empid = ?
$dbParamNames = Name of the empid field in your pipeline. you can hardcode the value as 101 for testing.
$dbParamTypes = numeric (you can leave this field blank)
You can refer the User Guide too. Thanks
#Flow-and-Java-services#Integration-Server-and-ESB#webMethods