Reputation: 65
I have a working SSIS project locally done by me with SQL Server Data Tools. I found out that the easiest way to have the project deployed in SQL Server is using the option "deploy", available on that IDE. I have done it successfully locally.
My problem is that I am not able to deploy the project directly to the client Server beacuse I have been ordered to give him no more than files, scripts , etc. in order to get the project deployed only by him. He cannot instal SQL Server Data Tools and deploy. I wonder if I can export my already deployed project in my local SQL Server instance and make him to import it?
Upvotes: 1
Views: 1292
Reputation: 31775
You can give him the .ispac
file from your SSDT project's /bin
folder, and he will be able to import it to the SQL Server using SSMS.
Upvotes: 1