views:

102

answers:

2

I right clicked on a Database in the object explorer of SQL Server 2008 Management Studio. I went to Tasks > Import Data, and imported some data from a flat text file, opting to save the package on the server.

Now how the heck do I get to the package to edit or run it again? Where in SQL Server Management Studio do I go? I've expanded everything and I can't find it. It's driving me nuts.

+1  A: 

If you connect to the Integration Services instance on the server (different choice in the dropdown from "Database Engine" when you connect in SQL Server Management Studio), they'll be under the MSDB folder under Stored Packages.

Daniel DiPaolo
I tried this. There are two root folders. Running Packages and Stored Packages. Both of those and every subfolder is empty.However, if I go through my import process again, it will tell me the package exists and ask if I want to overwrite, so I know they must be on the server!I double-checked and I am connecting to the correct server.
Chris
Oh wait I do see them there! But there is no option to Edit. Just Import, Export, Upgrade, etc.
Chris
You can't edit them on the Integration Services instance itself. You'll need to export them and then open them up in BIDS (Business Intelligence Design Studio, the Visual Studio flavor for BI), and then you can redeploy the package.
Daniel DiPaolo
+1  A: 

When you start management studio and connect to a database, make sure you have the server type set to Integration Services instead of Database Engine.

Justin Niessner
Wrong product - it's Integration Services.
Todd McDermid
@Todd McDermid - Doh! No more posting on StackOverflow under the severe influence of coffee for me. Updated my post.
Justin Niessner

related questions