Skip to content

Latest commit

 

History

History
118 lines (78 loc) · 7 KB

catalog-views-transact-sql.md

File metadata and controls

118 lines (78 loc) · 7 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic ms.custom f1_keywords helpviewer_keywords dev_langs monikerRange
System catalog views (Transact-SQL)
Catalog views return information that is used by the Database Engine.
rwestMSFT
randolphwest
09/24/2024
sql
system-objects
reference
ignite-2024
sql13.SysViewExpandPortal.f1
catalog metadata [SQL Server]
system views [SQL Server], catalog
metadata [SQL Server], views
catalogs [SQL Server], metadata
catalog views [SQL Server]
Database Engine [SQL Server], metadata
catalog views [SQL Server], about catalog views
TSQL
>=aps-pdw-2016 || =azuresqldb-current || =azure-sqldw-latest || >=sql-server-2016 || >=sql-server-linux-2017 || =azuresqldb-mi-current || =fabric

System catalog views (Transact-SQL)

[!INCLUDE sql-asdb-asdbmi-asa-pdw-fabricse-fabricdw-fabricsqldb]

Catalog views return information that is used by the [!INCLUDE ssDEnoversion]. We recommend that you use catalog views because they are the most general interface to the catalog metadata, and provide the most efficient way to obtain, transform, and present customized forms of this information. All user-available catalog metadata is exposed through catalog views.

Note

Catalog views do not contain information about replication, backup, database maintenance plan, or [!INCLUDE ssNoVersion] Agent catalog data.

Remarks

Some catalog views inherit rows from other catalog views. For example, the sys.tables catalog view inherits from the sys.objects catalog view. The sys.objects catalog view is referred to as the base view, and the sys.tables view is called the derived view. The sys.tables catalog view returns the columns that are specific to tables and also all the columns that the sys.objects catalog view returns. The sys.objects catalog view returns rows for objects other than tables, such as stored procedures and views. After a table is created, the metadata for the table is returned in both views. Although the two catalog views return different levels of information about the table, there is only one entry in metadata for this table with one name and one object_id. This can be summarized as follows:

  • The base view contains a subset of columns and a superset of rows.
  • The derived view contains a superset of columns and a subset of rows.

Important

In future releases of [!INCLUDE ssNoVersion], [!INCLUDE msCoName] may augment the definition of any system catalog view by adding columns to the end of the column list. We recommend against using the syntax SELECT * FROM sys.<catalog_view_name> in production code because the number of columns returned might change and break your application.

The catalog views in [!INCLUDE ssNoVersion] have been organized into the following categories:

:::row::: :::column::: Always On Availability Groups Catalog Views (Transact-SQL)

    [Azure SQL Database Catalog Views](azure-sql-database-catalog-views.md)

    [Change Tracking Catalog Views - sys.change_tracking_databases](change-tracking-catalog-views-sys-change-tracking-databases.md)

    [CLR Assembly Catalog Views (Transact-SQL)](clr-assembly-catalog-views-transact-sql.md)

    [Data Collector Views (Transact-SQL)](data-collector-views-transact-sql.md)

    [Data Spaces (Transact-SQL)](data-spaces-transact-sql.md)

    [Database Mail Views (Transact-SQL)](database-mail-views-transact-sql.md)

    [Database Mirroring Witness Catalog Views - sys.database_mirroring_witnesses](database-mirroring-witness-catalog-views-sys-database-mirroring-witnesses.md)

    [Databases and Files Catalog Views (Transact-SQL)](databases-and-files-catalog-views-transact-sql.md)

    [Endpoints Catalog Views (Transact-SQL)](endpoints-catalog-views-transact-sql.md)

    [Extended Events Catalog Views (Transact-SQL)](extended-events-catalog-views-transact-sql.md)

    [Extended Properties Catalog Views - sys.extended_properties](extended-properties-catalog-views-sys-extended-properties.md)

    [External Operations Catalog Views (Transact-SQL)](external-operations-catalog-views-transact-sql.md)

    [FILESTREAM and FileTable Catalog Views (Transact-SQL)](filestream-and-filetable-catalog-views-transact-sql.md)

    [Full-Text Search and Semantic Search Catalog Views (Transact-SQL)](full-text-search-and-semantic-search-catalog-views-transact-sql.md)

    [Linked Servers Catalog Views (Transact-SQL)](linked-servers-catalog-views-transact-sql.md)
:::column-end:::
:::column:::
    [Messages (for errors) Catalog Views - sys.messages](messages-for-errors-catalog-views-sys-messages.md)

    [Object Catalog Views (Transact-SQL)](object-catalog-views-transact-sql.md)

    [Partition Function Catalog Views (Transact-SQL)](partition-function-catalog-views-transact-sql.md)

    [Policy-Based Management Views (Transact-SQL)](policy-based-management-views-transact-sql.md)

    [Resource Governor Catalog Views (Transact-SQL)](resource-governor-catalog-views-transact-sql.md)

    [Query Store catalog views (Transact-SQL)](query-store-catalog-views-transact-sql.md)

    [Scalar Types Catalog Views (Transact-SQL)](scalar-types-catalog-views-transact-sql.md)

    [Schemas Catalog Views - sys.schemas](schemas-catalog-views-sys-schemas.md)

    [Security Catalog Views (Transact-SQL)](security-catalog-views-transact-sql.md)

    [Service Broker Catalog Views (Transact-SQL)](service-broker-catalog-views-transact-sql.md)

    [Server-wide Configuration Catalog Views (Transact-SQL)](server-wide-configuration-catalog-views-transact-sql.md)

    [Spatial Data Catalog Views](spatial-data-catalog-views.md)

    [Azure Synapse Analytics and Analytics Platform System (PDW) catalog views](sql-data-warehouse-and-parallel-data-warehouse-catalog-views.md)

    [Stretch Database Catalog Views - sys.remote_data_archive_databases](/previous-versions/sql/relational-databases/system-catalog-views/stretch-database-catalog-views-sys-remote-data-archive-databases)

    [XML Schemas (XML Type System) Catalog Views (Transact-SQL)](xml-schemas-xml-type-system-catalog-views-transact-sql.md)
:::column-end:::

:::row-end:::

Related content