Skip to content

Latest commit

 

History

History
57 lines (46 loc) · 4.26 KB

File metadata and controls

57 lines (46 loc) · 4.26 KB
title Permissions Hierarchy (Database Engine)
description Learn about the hierarchy of entities that can be secured with permissions, known as securables, in SQL Server Database Engine.
author VanMSFT
ms.author vanto
ms.date 02/27/2026
ms.service sql
ms.subservice security
ms.topic concept-article
ms.custom
sfi-image-nochange
ignite-2025
f1_keywords
sql13.swb.server.permissions.f1--May use common.permissions
helpviewer_keywords
security [SQL Server], denying access
hierarchies [SQL Server], permissions
securables [SQL Server]
security [SQL Server], permissions
permissions [SQL Server], hierarchy
security [SQL Server], granting access
monikerRange >=aps-pdw-2016 || =azuresqldb-current || =azure-sqldw-latest || >=sql-server-2016 || >=sql-server-linux-2017 || =azuresqldb-mi-current || =fabric-sqldb

Permissions Hierarchy (Database Engine)

[!INCLUDE SQL Server Azure SQL Database Synapse Analytics PDW FabricSQLDB]

The [!INCLUDEssDE] manages a hierarchical collection of entities that can be secured with permissions. These entities are known as securables. The most prominent securables are servers and databases, but discrete permissions can be set at a much finer level. [!INCLUDEssNoVersion] regulates the actions of principals on securables by verifying that they've been granted appropriate permissions.

The following illustration shows the relationships among the [!INCLUDEssDE] permissions hierarchies.

The permissions system works the same in all versions of [!INCLUDEssNoVersion], [!INCLUDEssSDS], [!INCLUDE fabric-sqldb], [!INCLUDEssazuresynapse-md], [!INCLUDEssAPS], however some features aren't available in all versions. For example, server-level permission can't be configured in Azure products.

Diagram of Database Engine permissions hierarchies

Chart of SQL Server permissions

For a poster sized chart of all [!INCLUDE ssDE] permissions in PDF format, see https://aka.ms/sql-permissions-poster.

Working with permissions

You can manipulate permissions with the familiar [!INCLUDEtsql] queries GRANT, DENY, and REVOKE. Information about permissions is visible in the sys.server_permissions and sys.database_permissions catalog views. There's also support for querying permissions information by using built-in functions.

For information about designing a permissions system, see Getting Started with Database Engine Permissions.

Related content