InterviewSolution
Saved Bookmarks
| 1. |
How is the deployment utility created in SSIS? |
|
Answer» Deployment is nothing but a PROCESS of updating the state of the package from development mode to executable mode. Deployment in SSIS can be done by simply performing the right-click operation on the “INTEGRATION Services Project” and clicking on the BUILD option. This would create a “package.dtsx” file inside the bin folder named “projectbin”. The utility HELPS in deploying packages at SQL server or as an executable file on a SPECIFIED location. Following are the steps followed to create a deployment utility:
|
|