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
  •  | 
  •  

Domanda

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

È stato utile?

Soluzione

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

Altri suggerimenti

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top