Viewing 15 posts - 886 through 900 (of 3,738 total)
Unfortunately it does not return any records.
Thank you for your help.
March 18, 2014 at 4:23 pm
Thanks.
I need it to return 1 record for each job that is currently executing.
The following code does not work for In Progress.
CASE h.Run_Status
...
March 18, 2014 at 10:51 am
rador (3/12/2014)
March 12, 2014 at 10:46 am
I need to revise the following query do display an jobs that are currently running.
What would be the best way to do this?
-- SELECT *
--FROM msdb.dbo.sysjobactivity
SELECT DISTINCT
'CYP_BI'...
March 11, 2014 at 7:01 am
Thank you!
March 10, 2014 at 1:39 pm
Lynn Pettis (3/10/2014)
Care to show us what you have tried to accomplish this task?
ok, this is what I have so far and it works. I had to focus on something...
March 10, 2014 at 12:38 pm
djj (3/10/2014)
Why not modify the first query to LEFT JOIN to msdb..Sysjobhistory?
Thanks.
I will need a LEFT JOIN on sysjobs because I want them to show up regardless if they have...
March 10, 2014 at 10:12 am
I tried adding the following from the 1st query to the second query and I get an error invalid column run_date, run_time and run-duration.
msdb.dbo.Agent_datetime(Run_Date, Run_Time) AS Run_Datetime,
Dateadd(second, Datediff(second, 0, msdb.dbo.Agent_datetime(19000101,...
March 10, 2014 at 9:45 am
GilaMonster (3/9/2014)
What doesn't work?That's a derived table that Jessie posted, you'd put it in the join clause and join to it like a table.
I appreciate it. Could I get the...
March 9, 2014 at 11:42 am
Thanks but can I get the entire code?
It does not work.
March 8, 2014 at 5:26 pm
Thank you very much for all of the help.
March 5, 2014 at 6:43 pm
Thank you very much everyone!
March 4, 2014 at 2:42 pm
Well a decision was made to use the msdb databases (more than one server UNION & Linked Server) to work with what I have generated.
I still need to figure how...
March 4, 2014 at 1:15 pm
Disregard.
The requirements changed they are going to take a static Excel Document and generate XML Strings.
My apologies.
March 4, 2014 at 11:01 am
Viewing 15 posts - 886 through 900 (of 3,738 total)