Skip to content

Commit 1c7815b

Browse files
committed
minor style fix
1 parent 2e111cc commit 1c7815b

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

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

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -36,27 +36,27 @@ This issue can be caused by any of the following underlying problems:
3636

3737
1. Confirm that the SQL Server Agent service is running by using one of the following PowerShell commands:
3838

39-
* For default SQL instances:
39+
- For default SQL instances:
4040

4141
```powershell
4242
Get-Service -Name "SQLSERVERAGENT"
4343
```
4444
45-
* For named SQL instances:
45+
- For named SQL instances:
4646
4747
```powershell
4848
Get-Service -Name "SQLSERVERAGENT$<InstanceName>"
4949
```
5050
5151
1. If the SQL Server Agent service isn't running, start it by using one of the following commands:
5252
53-
* For default SQL instances:
53+
- For default SQL instances:
5454
5555
```powershell
5656
Start-Service -Name "SQLSERVERAGENT"
5757
```
5858
59-
* For named SQL instances:
59+
- For named SQL instances:
6060
6161
```powershell
6262
Start-Service -Name "SQLSERVERAGENT$<InstanceName>"
@@ -107,7 +107,7 @@ This issue can be caused by any of the following underlying problems:
107107
GO
108108
```
109109
110-
* To identify the query associated with a blocking session run the following query in SSMS:
110+
- To identify the query associated with a blocking session run the following query in SSMS:
111111
112112
```tsql
113113
SELECT
@@ -209,28 +209,28 @@ This issue can be caused by any of the following underlying problems:
209209
210210
Investigate the output of the health check query for any of the following problems using the given symptoms:
211211
212-
* Worker thread pressure:
213-
* Worker exhaustion, for example `Workers: 512/512`.
214-
* `WorkQueue` is greater than zero, indicating that tasks are waiting and the system is overloaded.
215-
* CPU pressure:
216-
* `RunnableTasks` is greater than zero, indicating there's a CPU bottleneck.
217-
* Memory pressure:
218-
* `Memory state` is `LOW`, indicating the overall system is low on memory.
219-
* A low value for `AvailableMB`, indicating high memory usage for SQL Server.
220-
* A `PLE` value less than 300, indicating high memory churn.
212+
- Worker thread pressure:
213+
- Worker exhaustion, for example `Workers: 512/512`.
214+
- `WorkQueue` is greater than zero, indicating that tasks are waiting and the system is overloaded.
215+
- CPU pressure:
216+
- `RunnableTasks` is greater than zero, indicating there's a CPU bottleneck.
217+
- Memory pressure:
218+
- `Memory state` is `LOW`, indicating the overall system is low on memory.
219+
- A low value for `AvailableMB`, indicating high memory usage for SQL Server.
220+
- A `PLE` value less than 300, indicating high memory churn.
221221
1. If you identified any worker, CPU, or memory problems in the previous step, reduce your current workload to resolve them. If you didn't identify any worker, CPU, or memory problems, proceed to the next step.
222222
1. Restart the SQL Server Agent by running one of the the following PowerShell commands:
223223
224224
> [!IMPORTANT]
225225
> Restarting the SQL Server Agent interrupts any currently running jobs.
226226
227-
* For default SQL instances:
227+
- For default SQL instances:
228228
229229
```powershell
230230
Restart-Service -Name "SQLSERVERAGENT"
231231
```
232232
233-
* For named SQL instances:
233+
- For named SQL instances:
234234
235235
```powershell
236236
Restart-Service -Name "SQLAgent$<InstanceName>"

0 commit comments

Comments
 (0)