In my current project, the database name changes, and I do not want to change my OLE DB sources every time. So I want to set it as a variable. That is, in every OLE DB source I could use it as a parameter. However, it seems that SSIS does not allow passing the database name as a parameter. So what should I do to minimize my changes?
I want to do something like this SQL statement in OLE DB Source:
Select OrderID
From ?.Order
And I just need to change my variable when changing the database name. Thanks for any solutions!
source
share