Hi
We are trying to pass parameters from data manager to SSIS package. We are trying to give option of selecting members from Dimension using SelectInput while modifying script.
But we are not able to catch the values in SSIS package.
Code in Data manager package:
(ON)
(SELECTINPUT,%VER%,,"Select Account",%ACCOUNT_DIM%)
(Execute sp_ver_copy,SqlStatementSource,exec dbo.sp_ver_copy2 '%VER%')
We also tried with writing GLOBAL(VER,%VER%) instead of -- (Execute sp_ver_copy,SqlStatementSource,exec dbo.sp_ver_copy2 '%VER%')
But that also dosent work.
We need to use the parameters passed, in SQL code that we have written in OLE DB source, under data flow task.
Any help is appreciated.
Thanks in advance