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