Home Forums SQL Server 7,2000 T-SQL start time of a job while it is running RE: start time of a job while it is running

  • For jobs where I am likely to need to know this information, I add a step at the beginning called Initialise. I set the subsystem to CmdExec so that it doesn't make a connection to the database, and I set the command to something like "REM Do nothing". That way, you always know when your job started, whether it's finished or not.

    John