Skip to content

Commit 497b75e

Browse files
committed
documentor updates
1 parent e061a21 commit 497b75e

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

support/sql/database-engine/agent/job-failed-error-258.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ This article provides troubleshooting guidance for an issue where SQL Agent jobs
1212

1313
## Symptoms
1414

15-
The SQL Agent service is running, but scheduled SQL Agent jobs are not being executed. The SQL Server and Agent logs show network and login timeouts as well as failed logons.
15+
The SQL Agent service runs, but scheduled SQL Agent jobs don't execute. The SQL Server and Agent logs show network and authentication timeouts as well as failed sign-ins.
1616

17-
The following is an example of the error message that is added to the logs:
17+
The following example shows the error message that's added to the logs:
1818

1919
```output
2020
SQLServer Error: 258, TCP Provider: Timeout error [258]
@@ -40,7 +40,7 @@ This issue can be caused by any of the following underlying problems:
4040
Get-Service -Name "SQLSERVERAGENT"
4141
```
4242
43-
1. If the SQL Server Agent service is not already running, start it.
43+
1. If the SQL Server Agent service isn't running, start it.
4444
1. Check the jobs and schedules in `msdb` by opening [SQL Server Management Studio (SSMS)](/ssms/install/install) and running the following query: <!-- Check with SME, what the user should do with the output of this query -->
4545
4646
```tsql
@@ -64,7 +64,7 @@ This issue can be caused by any of the following underlying problems:
6464
GO
6565
```
6666
67-
1. Detect blocking on `msdb` Agent system tables by running the following query is SSMS:
67+
1. Detect blocking on `msdb` Agent system tables by running the following query in SSMS:
6868
6969
```tsql
7070
USE msdb;
@@ -79,17 +79,17 @@ This issue can be caused by any of the following underlying problems:
7979
```
8080
8181
1. If blocking sessions are found, investigate the blocking query using `sys.dm_exec_requests` and `sys.dm_exec_sql_text`. Then, resolve or kill the blocking session.
82-
1. Check the system health extended events for any worker, thread, or resource issues by running the following query is SSMS:
82+
1. Check the system health extended events for any worker, thread, or resource issues by running the following query in SSMS:
8383
8484
```tsql
8585
?????
8686
```
8787
88-
Inspect the query results for `QUERY_PROCESSING`, `RESOURCE`, and `SYSTEM` components, look for thread exhaustion, memory pressure, or CPU issues.
88+
Inspect the query results for `QUERY_PROCESSING`, `RESOURCE`, and `SYSTEM` components. Look for thread exhaustion, memory pressure, or CPU issues.
8989
9090
<!-- Check with SME what the user should do if they identify any thread exhaustion, memory pressure, or CPU issues -->
9191
92-
1. If blocking, hangs, or worker exhaustion can't be resolved, restart the SQL Server Agent by running the following commands in PowerShell:
92+
1. If you can't resolve blocking, hangs, or worker exhaustion, restart the SQL Server Agent by running the following commands in PowerShell:
9393
9494
```powershell
9595
Restart-Service -Name "SQLSERVERAGENT" -Force
@@ -98,7 +98,7 @@ This issue can be caused by any of the following underlying problems:
9898
```
9999
100100
> [!IMPORTANT]
101-
> Restarting the SQL Server Agent will interrupt any currently running jobs.
101+
> Restarting the SQL Server Agent interrupts any currently running jobs.
102102
103103
After the SQL Server Agent restarts, verify that jobs are now being executed by using the [Job Activity Monitor](/ssms/agent/monitor-job-activity#job-activity-monitor).
104104

0 commit comments

Comments
 (0)