Will changing the column names in SQL Server have an effect on my SSIS packages? [closed]

StackOverflow https://stackoverflow.com/questions/23566989

  •  19-07-2023
  •  | 
  •  

I was just wondering if I change column names on tables in SQL Server will they effect my SSIS packages.

有帮助吗?

解决方案

Yes it would, the source component would fail with a "Component (1) failed validation and returned validation status VS_NEEDSNEWMETADATA".

其他提示

Sure will and they can be painful and time consuming to fix. You may need to go through steps all through the data flow not just the intial one or the final one (depending on whether you are changing the source or destination). Unions in the dataflow can be a particular pain point. If you want the change to reflect in a file you are creating, you may need to revisit the connection as well.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top