Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to I add SSIS Packages to the MSDB database on SQL Server 2005?

I have SQL Server 2005 install on my PC and am having execution problems with an SSIS Package stored in the filesystem. I want to stored this in the MSDB database but don't know how to do this.

I watched this video: http://download.microsoft.com/download/5/3/0/5303799D-8739-4BDC-8062-337368357391/SQLServerAgentTroubleshoot.wmv

This video guides you through the process in SQL Management Studio, however it shows Integration Services as a separate section in Management Studio and I don't have this?

Any ideas how I can see Intergration Service in Management Studio or how I can add the package to the MSDB database without it?

like image 492
Phil Avatar asked Nov 21 '25 00:11

Phil


1 Answers

In the Object Explorer in Management Studio, the Connect button has a drop down that allows you to specify Integration Services. You can use this to get to your MSDB package repository.

However, to get your SSIS package in there, the easiest way is to build it for deployment so you get a .manifest file. Run this and you can choose to install it to MSDB.

like image 93
cjk Avatar answered Nov 22 '25 17:11

cjk