Reputation: 1384
I try to start the server browser and agent but, this don't work. The option "Start" when clicked right click is disabled
I'm using sql server 2017. and the info to start the server and agent does not work
(I made a mistake, is not a sql express, y sql server and management studio)
Upvotes: 0
Views: 151
Reputation: 30585
SQL Server Express does not include SQL Server Agent. Hence it's not possible to create SQL Agent jobs.
as a workaround, you can create sripts as batch files (sqlcmd -i myBatch.sql
) and use windows Task scheduler to schedule them.
Upvotes: 1