|
|
|
Mr or Mrs. 500
      
Group: General Forum Members
Last Login: Saturday, March 16, 2013 6:35 AM
Points: 533,
Visits: 12
|
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Today @ 4:29 AM
Points: 1,282,
Visits: 744
|
|
Are you able to start SQL Server Agent in SQL Server 2008 Express Edition? I can't find any proof of this. According to http://msdn.microsoft.com/en-us/library/cc645993.aspx it is not supported.
Please explain.
thanks,
Robbert
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Today @ 4:19 AM
Points: 1,946,
Visits: 573
|
|
|
|
|
|
Hall of Fame
       
Group: General Forum Members
Last Login: Today @ 5:42 AM
Points: 3,189,
Visits: 4,146
|
|
I can't see anything about jobs there. The link seems to be not relevant to the question.
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Today @ 4:19 AM
Points: 1,946,
Visits: 573
|
|
I can't see anything about jobs there. The link seems to be not relevant to the question. What is the use of a job if there is no service to be executed (scheduled) with? Any new features in 2008 Express?
See http://msdn.microsoft.com/en-us/library/ms190268.aspx 2. Expand SQL Server Agent.
|
|
|
|
|
SSCrazy
      
Group: General Forum Members
Last Login: Today @ 7:57 AM
Points: 2,621,
Visits: 2,758
|
|
We have had a number of questions which included a deliberate spelling error that had an answer xxx is wrong because it does not exist. As far as I know 'Enterprize' edition does not exist, but I have heard of 'Enterprise' edition and would have selected that if it was given in the question.
Author: SQL Server FineBuild 1-click install and best practice configuration of SQL Server 2012, 2008 R2, 2008 and 2005. 25 March 2013: now over 23,000 downloads. Disclaimer: All information provided is a personal opinion that may not match reality. Concept: "Pizza Apartheid" - the discrimination that separates those who earn enough in one day to buy a pizza if they want one, from those who can not.
|
|
|
|
|
SSCrazy
      
Group: General Forum Members
Last Login: Today @ 7:57 AM
Points: 2,621,
Visits: 2,758
|
|
You can get SQL Agent on SQL 2008 Express Edition to start. You need to set up account rights and enable the agent XPs.
But as soon as it starts it gives a message that Agent is not supported on Express edition and then stops. IMHO this is a case where you win the battle but loose the war.
Author: SQL Server FineBuild 1-click install and best practice configuration of SQL Server 2012, 2008 R2, 2008 and 2005. 25 March 2013: now over 23,000 downloads. Disclaimer: All information provided is a personal opinion that may not match reality. Concept: "Pizza Apartheid" - the discrimination that separates those who earn enough in one day to buy a pizza if they want one, from those who can not.
|
|
|
|
|
Hall of Fame
       
Group: General Forum Members
Last Login: Today @ 5:42 AM
Points: 3,189,
Visits: 4,146
|
|
dawryn (11/26/2009)
I can't see anything about jobs there. The link seems to be not relevant to the question. What is the use of a job if there is no service to be executed (scheduled) with? Any new features in 2008 Express? This was not a reply to your post, I know about the relation between jobs and SQL Server Agent 
I quoted the link from the explanation of the question. That link contains nothing about jobs and SQL Server Agents and should be corrected.
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Today @ 4:19 AM
Points: 1,946,
Visits: 573
|
|
vk-kirov... That link contains nothing about jobs and SQL Server Agents and should be corrected. Done (it was under first result)
|
|
|
|
|
SSCarpal Tunnel
       
Group: General Forum Members
Last Login: Today @ 3:22 AM
Points: 4,218,
Visits: 3,875
|
|
Strictly speaking you can create a job in SQL 2005 Express as well. All the necessary stored procedures in the msdb are there and you can execute them succesfully. You cannot execute them on a schedule because there's no SQL Agent, but a job exists. Just try this:
USE msdb ; GO
EXEC dbo.sp_add_job @job_name = N'Daily Backup' ; GO select * from sysjobs GO Exec dbo.sp_delete_job @job_name = N'Daily Backup' ; I think the question should be in which version can you execute jobs on a schedule.
Markus Bohse
|
|
|
|