Viewing 8 posts - 16 through 23 (of 23 total)
This is what I use to list failed jobs
SELECT DISTINCT
CAST(CONVERT(datetime,CAST(run_date AS char(8)),101) AS char(11))AS 'Failure Date',
SUBSTRING(T2.name,1,40)AS 'Job Name',
T1.step_id AS 'Step_id',
T1.step_nameAS 'Step Name',
LEFT(T1.[message],500)AS 'Error Message'
FROM msdb..sysjobhistory T1
JOINmsdb..sysjobsT2
ON T1.job_id = T2.job_id
WHERET1.run_status...
September 11, 2009 at 2:00 am
Great stuff. All sorted now 🙂
Thanks 😉
June 15, 2009 at 7:32 am
That is what my senior developers and architects are recommending whilst I'm sat here pulling my hair out 😉
To me business logic should be in all layers,not one.
October 25, 2007 at 10:20 am
Many thanks to all those who have posted.
June 22, 2007 at 4:52 am
Thanks Noel,
New problem. Now when I try to browse to the new directory via enterprize manager its only showing me the one existing drive. I'm confused as when I look...
October 27, 2006 at 6:19 am
Thanks for that. Unfortunately I do have to have the sequencing right so looks like Shaping services for me then....
June 30, 2006 at 4:30 am
That did the trick thx
February 6, 2006 at 3:22 pm
Viewing 8 posts - 16 through 23 (of 23 total)