Skip to content

Commit 4aa8a4d

Browse files
authored
Merge pull request MicrosoftDocs#854 from meet-bhagdev/patch-18
updated start job code block
2 parents 1232b91 + 1411d75 commit 4aa8a4d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

docs/linux/sql-server-linux-run-sql-server-agent-job.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,8 @@ The following steps provide an example of how to create a SQL Server Agent job o
105105
6. **Start the job**.
106106
107107
```tsql
108-
EXEC dbo.sp_add_jobserver
109-
@job_name = N'Daily SampleDB Backup',
110-
@server_name = N'(LOCAL)';
111-
GO
108+
EXEC dbo.sp_start_job N’ Daily SampleDB Backup’ ;
109+
GO
112110
```
113111
## Create a job with SSMS
114112

0 commit comments

Comments
 (0)