Hi All,
I have a DTS package which is passing query given below through a dynamic property task.
select 'Countinue' =
CASE
WHEN count(*) > 0 THEN 1
ELSE 4
END
from TablenameA
where
File_Type = 'Member'
and Process_File_Status ='N'.
Iam currently trying to migrate this package to SSIS.Can anyone please let me know how to pass the above query.
Your help would be appreciated .