NullTerminator
Programmer
I have the following
set @crsTablesToProcess = cursor for select Table_Name
from t_TableList_SalesNet2
where partition <>'no'
I would like to have the following
set @crsTablesToProcess = cursor for select Table_Name
from @TableNamePassedAsArgument
where partition <>'no'
Is there a way to create a cursor based on non static statement
Thanks for your feedback
\0
set @crsTablesToProcess = cursor for select Table_Name
from t_TableList_SalesNet2
where partition <>'no'
I would like to have the following
set @crsTablesToProcess = cursor for select Table_Name
from @TableNamePassedAsArgument
where partition <>'no'
Is there a way to create a cursor based on non static statement
Thanks for your feedback
\0