Skip to content

Latest commit

 

History

History
65 lines (49 loc) · 1.9 KB

File metadata and controls

65 lines (49 loc) · 1.9 KB
title sysmail_help_status_sp (Transact-SQL)
description sysmail_help_status_sp (Transact-SQL)
author markingmyname
ms.author maghan
ms.date 03/03/2017
ms.service sql
ms.subservice system-objects
ms.topic reference
f1_keywords
sysmail_help_status_sp
sysmail_help_status_sp_TSQL
helpviewer_keywords
sysmail_help_status_sp
dev_langs
TSQL

sysmail_help_status_sp (Transact-SQL)

[!INCLUDE SQL Server]

Displays the status of Database Mail queues. Use sysmail_start_sp to start the Database Mail queues and sysmail_stop_sp to stop the Database Mail queues.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

  
sysmail_help_status_sp  

Return Code Values

0 (success) or 1 (failure)

Result Set

Column name Data type Description
Status nvarchar(7) The status of the Database Mail. Possible values are STARTED and STOPPED.

Permissions

By default, only members of the sysadmin fixed server role can access this procedure.

Examples

The following example displays the status of Database Mail.

EXECUTE msdb.dbo.sysmail_help_status_sp ;  
GO  

Result set:

Status  
-------  
STARTED  

See Also

Database Mail External Program
sysmail_start_sp (Transact-SQL)
sysmail_stop_sp (Transact-SQL)