April 7, 2014 at 2:00 pm
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 🙁
April 12, 2014 at 8:50 am
Is there any hope to resolve this issue ? :unsure:
April 12, 2014 at 3:19 pm
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
May 5, 2014 at 9:19 am
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. 🙂
May 9, 2014 at 1:01 pm
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
May 12, 2014 at 2:18 pm
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.
May 13, 2014 at 8:10 am
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
May 19, 2014 at 12:03 pm
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