I have a SQL Server Integration Services project that queries a SQL Server 2005 database using an OLE DB source using an SQL command as the data access mode.
I am trying to parameterize my SQL query, but the syntax is not @PARAM and when am I trying to use? and click on the parameters, I get the error message: "Parameters cannot be extracted from the SQL command."
I'm doing something like
SELECT * FROM [dbo].[TabledValuedFunction] (?)
source
share