Hi, I am trying to externalize a WHERE clause in a snapshot and then pass the parameter via a restful service.
Current Configuration:
Setup Snapshot:
- Data Store is an oracle database connection
- Table Selection is 'Select Table or View'
- Column Selection all selected
- Filter Options - none at the moment.
- Sampling Options: All

Job:


Web Service Call:
POST: http://<servername>:<port>/edq/jobs/run
{
"project":"Ross Development Project",
"job":"Alias",
"overrides":[
{
"name":"run\_id",
"value":"RUN\_ID = 924"
}
]
}
or
{
"project":"Ross Development Project",
"job":"Alias",
"run_id":"RUN_ID = 924"
}
or
{
"project":"Ross Development Project",
"job":"Alias",
"properties":[
{
"name":"run\_id",
"value":"RUN\_ID = 924"
}
]
}
Result:
- All rows are being returned (WHERE clause was not applied).
Where am I going wrong? Assuming the Setup of the Snapshot?
Thanks,
Ross
Message was edited by: 3596198 added additional request options tried