Skip to content

Commit 77e2a12

Browse files
committed
Correct nullable value for sys.dm_server_services (UUF 309806)
1 parent 8633c72 commit 77e2a12

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/relational-databases/system-dynamic-management-views/sys-dm-server-services-transact-sql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: "sys.dm_server_services (Transact-SQL)"
3-
description: sys.dm_server_services returns information about the services in the current SQL Server instance.
3+
description: sys.dm_server_services returns information about the services in the current SQL Server instance.
44
author: rwestMSFT
55
ms.author: randolphwest
6-
ms.date: 02/09/2024
6+
ms.date: 09/12/2024
77
ms.service: sql
88
ms.subservice: system-objects
99
ms.topic: "reference"
@@ -30,7 +30,7 @@ Returns information about the [!INCLUDE [ssnoversion-md](../../includes/ssnovers
3030
| `startup_type_desc` | **nvarchar(256)** | Describes the start mode of the service. The following are the possible values and their corresponding descriptions.<br /><br />Other: Other (boot start)<br />Other: Other (system start)<br />Automatic: Auto start<br />Manual: Demand start<br />Disabled: Disabled<br /><br />Not nullable. |
3131
| `status` | **int** | Indicates the current status of the service. The following are the possible values and their corresponding descriptions.<br /><br />1: Stopped<br />2: Other (start pending)<br />3: Other (stop pending)<br />4: Running<br />5: Other (continue pending)<br />6: Other (pause pending)<br />7: Paused<br /><br />Nullable. |
3232
| `status_desc` | **nvarchar(256)** | Describes the current status of the service. The following are the possible values and their corresponding descriptions.<br /><br />Stopped: The service is stopped.<br />Other (start operation pending): The service is in the process of starting.<br />Other (stop operation pending): The service is in the process of stopping.<br />Running: The service is running.<br />Other (continue operations pending): The service is in a pending state.<br />Other (pause pending): The service is in the process of pausing.<br />Paused: The service is paused.<br /><br />Not nullable. |
33-
| `process_id` | **int** | The process ID of the service.<br /><br />Not nullable. |
33+
| `process_id` | **int** | The process ID of the service.<br /><br />Nullable. |
3434
| `last_startup_time` | **datetimeoffset(7)** | The date and time the service was last started. Nullable. |
3535
| `service_account` | **nvarchar(256)** | The account authorized to control the service. This account can start or stop the service, or modify service properties.<br /><br />Not nullable. |
3636
| `filename` | **nvarchar(256)** | The path and filename of the service executable.<br /><br />Not nullable. |

0 commit comments

Comments
 (0)