Link to home
Start Free TrialLog in
Avatar of TPBPIT
TPBPIT

asked on

Trouble understanding how to create a scheduled job using a package from SSIS

I have created a package in SSIS that outputs a csv file.  I need to schedule this file in the SQL Server Agent.  I have create the Job and when I try to run it I get Event ID 18456 with the following error: Login failed for user 'sa'. [CLIENT: <local machine>].  I did some research and found a document that talked about creating a user and assigning rights.  I have tried this on a test server and it run the quesries, but fails.  I have no clue what I need to be doing or how to make this work.  I know that in the query below I need to change out some of the values, like those for authenication, but what do I else do I need to change?  Any help on this would be well received.  I don't know while Microsoft had to make this so difficult for a novice.

-----------------------------------------------------------------------------------------------------------------
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.


ASKER CERTIFIED SOLUTION
Avatar of Julianva
Julianva
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of TPBPIT
TPBPIT

ASKER

Yeha, not sure what you are recommending here.  Remember, I'm very new to SQL 2005 and all its changes.
Avatar of TPBPIT

ASKER

I understand now what you were saying.  I actually just changed the Source connector in the Integration service to Windows Authenication from SA and it worked.  Thanks for making me think about it