Define SQL Server Agent

Define SQL Server Agent.

- SQL server agent is an important service of the server where instances of SQL server are running.

- The agent is responsible to run tasks that are scheduled to occur at specific times or intervals.

- The agent is also responsible to run replication task set by the administrators.

- It is a Microsoft Windows service which executes scheduled administrative tasks.

- It uses to store job information.

- It can run a job on schedule.

- It schedules jobs and handles other automated tasks.

- SQL Server Agent runs as a Windows service so it can start automatically when the system boots or can be started manually.

- It handles a variety of tasks such as backup automation, database replication setup, job scheduling, user permissions and database monitoring.

- SQL Server Agent allows the Database Administrator(DBA) to schedule automated execution jobs.
Difference between DELETE and TRUNCATE commands in SQL Server
DELETE TABLE is a logged operation, it is a slow process. TRUNCATE TABLE deletes all the rows........
What are constraints in SQL Server?
Constraints enforce the data integrity to the database and protect columns of the table from unwanted values........
What is an index?
Indexes of SQL Server are similar to the indexes in books. They help SQL Server retrieve the data quicker.........
Post your comment