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