SQL Server Agent : Job Failure

  • 1- The proxy i created is based on a credential attached to my local admin account, wich have full access to my databases.

    2- The Protection level of the package is on "DontSaveSensitive".

    3- In the Job history I'm getting only the errors above 🙁

  • Is there any hope to resolve this issue ? :unsure:

  • First try running the job using and see if it works then we can schedule it as a job ..

    USE msdb ;

    GO

    EXEC dbo.sp_start_job N'Job_Name' ;

    GO

    --

    SQLBuddy

  • Hello,

    Sorry for the delay, I had personal difficulties so I could'nt do this test.

    I've just launched that query and it appears that it goes well (Message : Job 'Test' started successfully.), but no email was generated :ermm:

    Must I du something else ?

    Thanks. 🙂

  • elhelalaoui (5/5/2014)


    Hello,

    Sorry for the delay, I had personal difficulties so I could'nt do this test.

    I've just launched that query and it appears that it goes well (Message : Job 'Test' started successfully.), but no email was generated :ermm:

    Must I du something else ?

    Thanks. 🙂

    Create a job and within a TSQL Job step use this command

    USE msdb ;

    GO

    EXEC dbo.sp_start_job N'Job_Name' ;

    GO

    Let the job run under your account i.e Owner of the job ..

    --

    SQLBuddy

  • Do you mean that I must create 2 step in one JOB ?

    1st Step witch contains that command.

    Second step with the SSIS package.

    Thanks.

  • elhelalaoui (5/12/2014)


    Do you mean that I must create 2 step in one JOB ?

    1st Step witch contains that command.

    Second step with the SSIS package.

    Thanks.

    No just one step. You already have a Job for SSIS package that you have been running manually. Lets say its JOBA.

    In the new job, just use that command with JOBA in it.

    --

    SQLBuddy

  • Excuse me but could you show me the methode please ?

    I'm still not able to create that second Job

Viewing 8 posts - 16 through 22 (of 22 total)

You must be logged in to reply to this topic. Login to reply