Quantcast
Channel: CodeSection,代码区,SQL Server(mssql)数据库 技术分享 - CodeSec
Viewing all articles
Browse latest Browse all 3160

Deploying Package to SQL Server Integration Services Catalog (SSISDB) from Visua ...

$
0
0

Deploying packages to SQL Server from SSDT is straightforward. We can either deploy the project or an individual SSIS Package i.e. Project Deployment or Package Deployment. (SQL Server 2016 Onwards).

Here we will see the package deployment.

Right-click the package that we would like to deploy and select Deploy Package.


Deploying Package to SQL Server Integration Services Catalog (SSISDB) from Visua ...

This opens the Integration Services Deployment Wizard


Deploying Package to SQL Server Integration Services Catalog (SSISDB) from Visua ...

Click on Next and Specify Server Name and the credentials to connect to the SQL Server an click on Connect.


Deploying Package to SQL Server Integration Services Catalog (SSISDB) from Visua ...

For the Path specify the existing Project or create a new Project in SSID where we would like to deploy our packages.


Deploying Package to SQL Server Integration Services Catalog (SSISDB) from Visua ...

Review the details and if all the information is correct, click on Deploy.


Deploying Package to SQL Server Integration Services Catalog (SSISDB) from Visua ...

The result page would show the status of the deployment.


Deploying Package to SQL Server Integration Services Catalog (SSISDB) from Visua ...

Inside Integration Service Catalogs we can see our Package Deployed.


Deploying Package to SQL Server Integration Services Catalog (SSISDB) from Visua ...

Another option for deploying the package is through the Deploy Project option of the Project inside SQL Server Management Studio’s SSIDB node.


Deploying Package to SQL Server Integration Services Catalog (SSISDB) from Visua ...

It will open the Integration Service Deployment Wizard.


Deploying Package to SQL Server Integration Services Catalog (SSISDB) from Visua ...

And after selecting the Package folder we can click on Next and follow the wizard as we had done earlier to deploy the package.

We can also run the Wizard directly from windows Explorer or command prompt IsDeploymentWizard.exe


Deploying Package to SQL Server Integration Services Catalog (SSISDB) from Visua ...
Deploying Package to SQL Server Integration Services Catalog (SSISDB) from Visua ...

Through Stored Procedure à

catalog.deploy_packages

[catalog].[deploy_packages] [ @folder_name = ] folder_name, [ @project_name = ] project_name, [ @packages_table = ] packages_table, [ @operation_id OUTPUT ] operation_id OUTPUT ]

Through Management Object Model API.

Hope it helps ..


Viewing all articles
Browse latest Browse all 3160

Trending Articles