Skip to main content

SSIS Deployment

You may have designed the package in your Development System and tested the Package from BIDS. Now it’s time to move it to the SQL Server. Deploying SSIS Packages would be helpful when you have multiple packages in a single solution, so that you can deploy all of them at once.
Deploy SSIS package in two ways
            1. File system deployment
            2. SQL server deployment
The following steps create the utility:
  1. Make sure that the project has been converted to the package deployment model.
  2. Right-click on the package and select properties.
  3. Select the Deployment tab.
  4. Set AllowConfigurationChanges to True.
  5. Set CreateDeploymentUtility to True.
  6. Click OK to close.
  7. Right-click the project and select Build.
 Step 1:

After package complete, go to package properties and set Deployment Utility is TRUE.






Step 2:
Again go to package properties and right click. In right click options BUILD option will appear.


Step 3:
After complete building the manifest files save in default path.
C:\Users\Dell\Documents\Visual Studio 2008\Projects\SSIS\SSIS\bin\Deployment


Step 4:
Double click on manifest file, Package Installation wizard begins and Deploy SSIS Packages.


Step 5:
Click next and select SQL server deployment


Step 6:
Click next and give server name and select windows authentication.


Step 7:
Click next and browse installation folder.


Step 8:
Click next and start installation.


Step 9:
Click next and Installation is done and the tasks in the packages are validated.  


Step 10:
Go to bellow path and double click on package
C:\Users\Dell\Documents\Visual Studio 2008\Projects\SSIS\SSIS\bin\Package


Step 11:

After running deployment package it shows bellow window.


Step 12:

Click execute 




Comments

Popular posts from this blog

SSRS INTERVIEW QUESTIONS

Q: What is SSRS? Ă˜   SSRS or SQL Server Reporting Service is a server-based report generation software systems from Microsoft and is part of Microsoft BI. Ă˜   It is used for preparing and delivering interactive and variety of reports. Ă˜   It is administered through an web based interface. Ă˜   Reporting services utilizes a web service interface for supporting and developing of customized reporting applications. Ă˜   SSRS lets you create very rich reports (Tabular/Graphical/Interactive) from various datasources with rich data visualization (Charts, Maps, sparklines) Ă˜   SSRS allows are reports to be exported in various formats (Excel, PDF, word etc) Q: Explain SSRS Architecture? Reporting services architecture comprises of integrated components. It is a multi-tiered, included with application, server and data layers. This architecture is scalable and modular. A single installation can be used across multiple computers. It includes the fo...

Exception deserializing the package "The process cannot access the file because it is being used by another process."

TITLE: Microsoft Visual Studio ------------------------------ Failed to start project ------------------------------ ADDITIONAL INFORMATION: Exception deserializing the package "The process cannot access the file 'E:\SSASCube\HistoricalDataLoad\HistoricalDataLoad\bin\Development\HistoricalDataLoad.ispac' because it is being used by another process.". (Microsoft.DataTransformationServices.VsIntegration) ------------------------------ The process cannot access the file 'E:\SSASCube\HistoricalDataLoad\HistoricalDataLoad\bin\Development\HistoricalDataLoad.ispac' because it is being used by another process. (mscorlib) ------------------------------ BUTTONS: OK ------------------------------ While running SSIS package i got the error “The process cannot access the file ‘*.ispac’ because it is being used by another process”. I tried to close SSDT and run it again but, I still got the same error while compiling. Then, after searching over internet, I got...

Failed to execute the package or element. Build errors were encountered

Error: TITLE: Microsoft Visual Studio ------------------------------ Failed to execute the package or element.   Build errors were encountered. For more information, see the Output window. ------------------------------ BUTTONS: OK ------------------------------   Solution: We tried to close SSDT and run it again but, we still got the same error while running SSIS package. Then, we need to follow bellow solution: Step 1: Go to Task Manager–> Details Tab. Step 2: Locate the process “ DtsDebugHost.exe “. Kill this process. There might be multiple instances of this process. Kill all of them. Step 3: Rerun SSIS package