January 24, 2010 at 8:59 pm
Hi everyone...
I m trying to run ssis package from SQL SERVER AGENT, and it give this error:
Message
The job failed. The Job was invoked by User sa. The last step to run was step 1 (SSISPAckegeNAme).
Please help me resolving this error.
January 25, 2010 at 8:32 am
You need to look at the step details for that job to get the specific error caused the step to fail. You could also use a query like this:
USE msdb ;
Go
SELECT
name,
enabled,
description,
start_step_id,
date_created,
date_modified,
version_number,
step_id,
step_name,
sql_message_id,
sql_severity,
message,
run_status,
run_date,
run_time
FROM
dbo.sysjobs AS J JOIN
dbo.sysjobhistory AS S
ON S.job_id = S.job_id
WHERE
S.run_status = 0 AND
S.step_id > 0
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 25, 2010 at 7:00 pm
Hi Jack Corbett...thank you for your replay..
this is result from query :
Executed as user: Domain\Administrator. The package execution failed. The step failed.
Why its also get error like this, although i created new CREDENTIAL and Proxy for SSIS Package Execution and use this proxy instead of sql server agent account. As contained in the forum http://www.sqlservercentral.com/Forums/Topic543713-148-1.aspx.
Any solution please....
Thanks,
January 28, 2010 at 10:55 am
phina_el (1/24/2010)
Hi everyone...I m trying to run ssis package from SQL SERVER AGENT, and it give this error:
Message
The job failed. The Job was invoked by User sa. The last step to run was step 1 (SSISPAckegeNAme).
Please help me resolving this error.
This is not enough. When you open the Job history execution log, expand the failed step and select the sub-children. There should be more details for this error.
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply