Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: Timer

    If a job is 'running' then the job scheduler will NOT start the next scheduled iteration of that job.

  • RE: Question of the Day for 16 Feb 2004

    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...

  • RE: Script to see if SQLAgent is running

    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...

Viewing 3 posts - 1 through 3 (of 3 total)