Click here to Skip to main content
Click here to Skip to main content

How to Schedule and Run a SSIS package ( DTS ) Job in SQL Server 2005

By , 9 Jun 2006
 
<!-- Article Starts - DO NOT ADD HTML/BODY START TAGS-->

Introduction

How to Schedule and Run a SSIS package ( DTS ) Job

 

In the SQL Server 2005, after you create a SSIS package ( DTS), you want to create a job and schedule to run it. You will get the error to prevent you to run the job. What is the problem?

 

Here is why: SQL Server 2005 is quite different from SQL Server 2000. In SQL Server 2000, you can create the job and run it without problem. In SQL Server 2005, you need to go through the security layer in order to run the job.

 

The logic is like this:

Ø      The job executor account needs the roles of sysadmin,  SQLAgentUserRole, SQLAgentReaderRole,  SQLAgentOperatorRole

Ø      The job needs to be run under Proxy account

Ø      The job executor account is better to be used to create SSIS package and so you are sure the job executor account has the right to run this SSIS package.

 

The following steps can be followed to get the job done.

The work environment is MS SQL Server Management Studio and you log in as sa.

 

I. Create job executor account

Highlight Security->New Login, say to make login as devlogin, type your password, default database can be your target database.

Server roles: check “sysadmin

User mapping: your target database

Msdb database: you make sure to include SQLAgentUserRole, SQLAgentReaderRole,  SQLAgentOperatorRole

Then click OK

 

II. Create SQL proxy account and associate proxy account with job executor account

Here is the code and run it the query window.

 

Use master

CREATE CREDENTIAL [MyCredential] WITH IDENTITY = 'yourdomain\myWindowAccount', secret = 'WindowLoginPassword'

Use msdb

Sp_add_proxy @proxy_name='MyProxy', @credential_name='MyCredential'

Sp_grant_login_to_proxy @login_name=' devlogin', @proxy_name='MyProxy'

Sp_grant_proxy_to_subsystem @proxy_name='MyProxy', @subsystem_name='SSIS'

 

III. Create SSIS package

In MS SQL Server Business Intelligence Development Studio, you use job executor account devlogin to create the SSIS package (DTS) and make sure you can execute this package in SQL Server Business Intelligence Development Studio. Compile/build this package.

 

IV. Create the job, schedule the job and run the job

In SQL Server Management Studio, highlight SQL Server Agent -> Start. Highlight Job ->New Job…, name it , myJob.

Under Steps, New Step, name it, Step1,

Type: SQL Server Integration Service Package

Run as: myProxy

Package source: File System

Browse to select your package file xxx.dtsx

Click Ok

Schedule your job and enable it

 

Now you can run your job.

 

If you think this is very helpful, please leave your comments online. If you have any questions or suggestions, please email me at hong_wei_li@yahoo.com.

 

Happy SQLing!

 

- Hongwei Li

 

 

 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

hong_wei_li@yahoo.com
Web Developer
United States United States
.Focus on database (SQL Server 2005/2000/7/6.5 and Oracle 10g) development with C#,
 
ASP.NET, ASP, Java, PHP.
.Like to work with MS Server 2005 SSIS and report service
.Like full cycle software design, development and deployment
.Microsoft Certified SQL Server Developer and DBA.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionThis just saved me from madnessmemberglynrb16-Jan-13 0:22 
GeneralMembers of sysadmin server role are allowed to use any proxy.memberMohammed Raheem23-Jul-12 1:55 
QuestionCreate SSIS with job executor, how?memberzhuangrich17-Jul-11 20:39 
GeneralThanks a lot - Muchas GraciasmemberMember 358032614-Jan-11 8:23 
GeneralWow... Thanks its worksmemberanakbinus17-Aug-09 17:40 
GeneralGreat help!memberOmoba28-Apr-09 5:07 
Generalfaster extraction and loading on SSIS.memberblackpower2k725-Apr-09 19:54 
GeneralSSIS execution from SQL agentmembermmohsin20-Jan-09 6:40 
QuestionDo I need a NT account for creating an credential?memberChris sc Lee9-Dec-08 14:55 
Hi,
 
In step 2:
II. Create SQL proxy account and associate proxy account with job executor account
 
CREATE CREDENTIAL [MyCredential] WITH IDENTITY = 'yourdomain\myWindowAccount', secret = 'WindowLoginPassword'
 
So does it mean I need a Windows account before creating a credential? Thanks.
 
Chris
GeneralSSIS OLE DB Source oracle proc callmemberWTurcios27-Aug-08 9:49 
Generalunable to castmembersuperman10013-Aug-08 14:12 
QuestionError code Error 15404memberMember 382627511-Aug-08 8:34 
AnswerRe: Error code Error 15404memberPedro B3-Jun-10 4:48 
GeneralOMG Thank you so muchmemberanvie1-Aug-08 6:32 
GeneralGreat working solution - I think there may be more thoughmemberJames Towell31-Jul-08 3:00 
GeneralDTS to SSIS conversionmemberSayCode24-Jul-08 4:50 
GeneralRunning an SSIS packagememberStevie G22-May-08 1:02 
GeneralGood Job Man!memberJonCR6-May-08 11:30 
QuestionHow do I resolve error after following Step 1? [modified]memberPaul Cho7-Feb-08 10:16 
AnswerRe: How do I resolve error after following Step 1?memberPaul Cho19-Feb-08 11:56 
GeneralGreatmemberCool_rajdevil12-Jul-07 3:40 
GeneralI am not able to find the option: Package Source: File System.memberWadeDing29-May-07 7:23 
GeneralRe: I am not able to find the option: Package Source: File System.memberhong_wei_li@yahoo.com29-May-07 18:40 
GeneralRe: I am not able to find the option: Package Source: File System.memberWadeDing30-May-07 2:29 
GeneralRe: I am not able to find the option: Package Source: File System.memberWadeDing30-May-07 5:34 
QuestionSQL Server Integration Service Package Type [modified]memberAunty B13-Feb-07 4:46 
AnswerRe: SQL Server Integration Service Package TypememberAunty B13-Feb-07 5:25 
GeneralVerify SSIS Accountmemberjlminer5-Jan-07 10:41 
GeneralMicrosoft - An SSIS package does not run when you call the SSIS package from a SQL Server Agent job stepmembercoby cai26-Sep-06 17:21 
GeneralA Tipmembercoby cai26-Sep-06 17:18 
GeneralIncomplete solutionmembermahmudaq25-Aug-06 3:22 
QuestionSQL Sever DTS [modified]member| Muhammad Waqas Butt |9-Jun-06 22:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130617.1 | Last Updated 9 Jun 2006
Article Copyright 2006 by hong_wei_li@yahoo.com
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid