sql server - How to extract SSIS package tasks information? -
Currently our SSIS 2005 packages are responsible for data loading on our machines (Windows 2008 Enterprise Service Pack 2 64bit) . The team decided to move our database into a new machine (Windows 2008 Enterprise Service Pack 2 64bit) and continue SQL Worker (SSIS package execution) on the old machine. I started updating the configuration files of all the packages to point to the new machine. My checkpoint is that, in some packages the old server names in the OLEDB source component are hard coded. For East: Select from A.column, B.column, OldMachine. Join Tables A Other Adder.Table B .... My question is, how can I get source query information where the server name is harder than all the packages on the old machine (most packages are saved as a file location ) So that I have to open them all. Thanks Ton
The SSS package contains .dtsx files, basically the XML.If you know the name of the old server and Machines, you can search for simple text on the folder where the package resides. This quest will expose those packages that you need to open and modify.
Comments
Post a Comment