Link to home
Create AccountLog in
Avatar of kchoed
kchoed

asked on

How to Upload dtsx to SQL Server 2005

Hi Experts,

I have created the dtsx using Business Intelligence Development Studio , and then, could you please advise how to put it on to the SQL Server 2005, and then schedule it to start this SSIS in a particular time ?

Thanks
kchoed
Avatar of rickchild
rickchild
Flag of United Kingdom of Great Britain and Northern Ireland image

One method is you can create a Deployment package to help you load the SSIS into the server.

In Visual Studio right click on the project (In Solution Explorer) and choose properties.
Go to Deployment Utility and change CreateDeploymentUtility to True.

Now when you Build the project there will be a file called ProjectName.SSISDeploymentManifest
Double click this and it will run a wizard to help deploy the package to the server.

To Schedule a job go Managemnt Studio -> SQL SErver Agent -> Jobs and create a new job.
For your job step choose Type "SQL Server Integration Services Package"



An easy alternative is just go to the job, choose step "SQL Server Integration Services Package" and then choose Package Source "File System" instead of SQL Server.  You can then choose the .dtsx.
ASKER CERTIFIED SOLUTION
Avatar of sqlconsumer
sqlconsumer
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
That was mentioned in the last paragraph as the easy alternative ;-)
Yeah I know we answered the question at exactly the same time, check out the DATE TIME stamp.

Your just a bit quicker typing than me. ;-)
Avatar of kchoed
kchoed

ASKER

Really Thanks Experts, it's useful