Viewing 3 posts - 1 through 3 (of 3 total)
If a job is 'running' then the job scheduler will NOT start the next scheduled iteration of that job.
August 11, 2005 at 5:35 am
#581340
I disagree with the 'correct' answer. In order to make a copy of a database on the same server, you must rename the mdf and ldf files or change their...
February 16, 2004 at 7:10 am
#494166
Try this:
SET NOCOUNT ON
DECLARE @ServiceExists VARCHAR(255)
CREATE TABLE #services
( service VARCHAR(255) )
-- Retrieve list of services that ARE running
INSERT INTO #services
EXECUTE master..xp_cmdshell 'net start'
-- Clean up...
September 10, 2003 at 5:50 am
#473392