I have a SQL Executable task in which I am checking the count(*) of records in a particular table.
select count(*) as Is_Data from TABLE_NAME;
I need to get the Is_Data value out as an expression, so that based on the value the next execution start.
How to get the Is_Data value out from SQL Executable task
Thanksc

