Viewing 11 posts - 1 through 11 (of 11 total)
I already have linked server and can query the databases remotely but the problem is
--1- I want to put such thing in a sql job to automate the process
--2-...
October 22, 2013 at 9:24 am
Ed Wagner (2/11/2013)
declare @strBody varchar(255);
select @strBody = 'This is to test...
February 13, 2013 at 7:28 am
I know putting such code in job is not right but the job I am working on runs on weekend and since it is off hours so I wanted to...
January 25, 2013 at 1:42 pm
Yeah... For somereason I was putting job name but not the job id......:w00t:
So this script will check if the job's last run status is successful, then it will move forward...
January 25, 2013 at 11:23 am
ScottPletcher (1/23/2013)
Perry Whittle (1/23/2013)
and all that's easier than a quick check in the dbo.sysjobhistory table??
Yes: which specific entry for "Job A" does one check in sysjobhistory?
The last one? What...
January 25, 2013 at 7:41 am
The job A will run once a week and Job B should run the same day too. So adding a step to check if the job A ran today (the...
January 24, 2013 at 6:12 am
I can't have both jobs running togather. Job doesnt need to run every time the Job A runs. Also Job A completes on different times but Job B should...
January 23, 2013 at 8:31 am
Adding this logic will check the time and if it is not 7AM, it will keep waiting until it is 7Am. How can I add a time check every 30...
January 22, 2013 at 1:56 pm
this job (Job B)is started by another job (Job A) and the job A complets at a different time. I cant have the job B started before 7AM. thats why...
January 22, 2013 at 1:18 pm
Viewing 11 posts - 1 through 11 (of 11 total)