Hi everyone,
I am having issues with using package configurations when just chaging the ServerName and InitialCatalog vars of a Connection Manager. I have DelayValidation = True on the Data Flow Task that is erroring out, but I am still recieving a VS_NEEDSNEWMETADATA error before the package is executed. The 2 boxes have identical tables I'm trying to access, although 1 is 2005 and the other is 2000. Any thoughts I thought that package configs were supposed to be quick and painless
Thanks,
Adrian

Package config errors - VS_NEEDSNEWMETADATA
Greg.Duffield
We worked around this by setting the source to a SQL command rather than a Table/View. Do that in the Source Editor "Data Access Mode" box. Then type in your query... Select Column1 from Table1. No matter the case of Column1 on the back end, it woudl succeeds in our case.
This workaround keeps validation from being so strict on the column names.
Since our back end was case-insensitive SQL, our back end can handle the mixed cases of columns, so your SQL Command can succeed against the data source irrespective of column case, and so SSIS is not aware that the back end column metadata doesn't match the case of the SSIS package column labels.
David Poole
CougarT
HTH,
Matt
newb821
Although I have seen this thread at a very later date, It helped me a lot . I was facing issues with VS_NEEDSNEWMETADATA error and the reason was because of case sensitive column names.
Thanks a lot
Dinesh Kulkarni - MSFT
Thanks,
Adrian
al2torres
Thanks,
Adrian
Yiru
Thanks,
Matt
cdonner
Thanks,
Matt
Jin Feng - MSFT
Thanks,
Matt