is there a way to create single set-up/installable for some 5 ssis packages?
we have multiple ssis 开发者_如何学Pythonpackages that need to be deployed on server .. is there a way to install all these together, perhaps?
Yes you can create a Deployment Manifest which will let you install all the packages in a project. To create this, you need to select the project Properties (on the Project menu), then select Deployment Utility and set CreateDeploymentUtility to True. By default, the path for this will be bin\Deployment under your project path. You can then copy everything in that folder to your destination and double-click the .SSISDeploymentManifest file to begin the install.
Alternatively, if you have sufficient rights, you can deploy a project directly from BIDS by entering the relevant destination server details in the project property pages (by right-clicking on the project name in Solution Explorer), then right-click and Deploy.
精彩评论