Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it as simple as deleting the file, or do I have to do anything to de-register it before I delete it.

Does the deployment process do anything more than copy it to the "Packages" folder.

share|improve this question

1 Answer

SQL Server does register the SSIS packages on the target SSIS server. If you delete the packages from the file system, you would leave the registration information on the SSIS server.

The best way to remove a deployed SSIS package from a server is to use SQL Server Management Studio, Object Explorer and connect to the SSIS server (note that your server type is Integration Services, not Database Engine, in the connection dialog.) Navigate to Stored Packages > File System to find your project. Right-click the project and select Delete.

By the way, if you already deleted the files from the file system, you'll get errors when deleting from the SSIS server. You can redeploy the SSIS packages and then delete from the SSIS server.

share|improve this answer
What if I haven't imported them yet? – user204019 Oct 5 '10 at 14:24
Once they no longer show up under Stored Packages -> File System, is it safe to delete them from the file system? – user204019 Oct 5 '10 at 14:24
If the files are not imported yet, then you won't see them in SSMS Object Explorer. The delete from SSMS Object Explorer will also delete the file(s) from the file system as well. – bobs Oct 5 '10 at 16:49
I imported a package, and then deleted, it stayed in the file system. – user204019 Oct 5 '10 at 19:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.