Data Sources in SSIS
Hi all, I’ve many SSIS packages in a Single Project. Is it good to use Data Sources to have a common Connection manager? Please let me know the pros and cons of using Data Sources. Regards, Ram
June 21st, 2011 12:41am

The advantages of using data sources in Integration Services packages include the following: A data source has project scope, which means that a data source created in an Integration Services project is available to all the packages in the project. A data source can be defined one time and then referenced by connection managers in multiple packages. A data source offers synchronization between the data source object and its package references. If the data source and the packages that reference it reside in the same project, the connection string property of the data source references is automatically updated when the data source changes. There is no dependency between a data source and the connection managers that reference it. If a data source is no longer part of the project, the packages continue to be valid, because information about the data source, such as its connection type and connection string, is included in the package definition. http://msdn.microsoft.com/en-us/library/ms139848.aspxJeff Wharton MSysDev (C.Sturt), MDbDsgnMgt (C.Sturt) MCT, MCPD, MCITP, MCDBA Blog: Mr. Wharty's Ramblings Please mark solved if I've answered your question, vote for it as helpful to help other user's find a solution quicker
Free Windows Admin Tool Kit Click here and download it now
June 21st, 2011 12:58am

Data sources are optional within SSIS, but they are beneficial during development if you have a large number of packages that need to use the same database or file connection. Using a data source also helps if you need to change a connection used in many packages. You simply change the data source once and then open each package in your project, which will automatically synchronize the connection string stored in the package with the data source.Let us TRY this | Mail me My Blog :: http://quest4gen.blogspot.com/
June 21st, 2011 9:49am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics