Start SQL Agent - Failed
Horst
Posts: 2
Hello,
i have a problem to run the daily backup job.
On the Jobs tab it says "Your SQL Server Agent does not appear to be running" if i click "start sql server agent" it says:
Start SQL Agent - Failed
========================
Start Agent - Failed
'StartService()' hat den Fehler '1060', 'Der angegebene Dienst ist kein installierter Dienst.' zurückgegeben.
Refreshing server information - Successful
This operation completed successfully.
The manual backups are ok.
I am using server 2003 and sql express 2005.
Thanks for help.
Horst
i have a problem to run the daily backup job.
On the Jobs tab it says "Your SQL Server Agent does not appear to be running" if i click "start sql server agent" it says:
Start SQL Agent - Failed
========================
Start Agent - Failed
'StartService()' hat den Fehler '1060', 'Der angegebene Dienst ist kein installierter Dienst.' zurückgegeben.
Refreshing server information - Successful
This operation completed successfully.
The manual backups are ok.
I am using server 2003 and sql express 2005.
Thanks for help.
Horst
Comments
Since SQL Backup uses the SQL Server Agent for scheduling, unfortunately this means you cannot schedule backup jobs via the standard graphical user interface tools.
The ideal solution is to use a version of SQL Server the supports the SQL Server Agent (anything but express).
However, if you cannot justify the upgrade, there is a "workaround" of sorts, where you can generate the Command Line statement using the backup wizard, insert it into a batch file, and then use "Scheduled Tasks" to run the batch file on the schedule you want.
It's far from ideal, but should be a reasonable substitute for the Agent, although it isn't clear how reliable or stable the Scheduled Tasks functionality is, so be wary if considering it in a production environment.
Hope that helps,
Jason