Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
CREATING A CENTRAL SSIS SERVER
This is another section that applies only to the package deployment model. If you can, you should be changing your SSIS methods to take advantage of the new project deployment model.
Many enterprises have so many packages that they decide to separate the service from SQL Server and place it on its own server. When you do this, you must still license the server just as if it were running SQL Server. The advantages of this separation are that your SSIS packages will not suffocate the SQL Server’s memory during a large load and you have a central management location. The disadvantages are that you must license the server separately and you add an added layer of complexity when you’re debugging packages. You have a fantastic way to easily scale packages by adding more memory to your central server, but you also create an added performance hit because all remote data must be copied over the network before entering the Data ....