Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Administration
 Difference between sql server and sql agaent

Author  Topic 

anoop_mig25
Starting Member

20 Posts

Posted - 2013-07-22 : 13:42:02
hi whats difference between sql server and sql server agent ???

arent both windows services .if yes then why can we allocate memory to sql server but not agent

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2013-07-22 : 13:45:08
SQL Server service is the database engine. The Agent is dependent upon the SQL Server service, meaning you can't startup the Agent unless the main service is started. The Agent is used for things like scheduled jobs. No need to have separate memory since it uses the memory of the SQL Server process.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2013-07-22 : 13:48:55
sql server is the name of the product. It has various components implemented as services like database engine component denoted by SQL Server service, Reporting Services denoted by Reporting Services service etc. SQL Server Agent service denotes the scheduler component of SQL server called agent which is used for automated execution of scheduled tasks created on the SQL Server. It has no other function other than managing automatic execution of jobs as well as taking care of schedule etc. All the data/metadata required by agent are stored by itself in a system database called msdb. Thats why it doesnt require any memory by itself compared to database services etc

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/
https://www.facebook.com/VmBlogs
Go to Top of Page
   

- Advertisement -