Skip to content

Latest commit

 

History

History
53 lines (47 loc) · 2.82 KB

File metadata and controls

53 lines (47 loc) · 2.82 KB
title sys.views (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/15/2017
ms.prod sql-non-specified
ms.reviewer
ms.suite
ms.technology
database-engine
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
views_TSQL
views
sys.views_TSQL
sys.views
dev_langs
TSQL
helpviewer_keywords
sys.views catalog view
ms.assetid f8a8ea39-5a09-4662-801e-b43519467def
caps.latest.revision 28
author BYHAM
ms.author rickbyh
manager jhubbard

sys.views (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-all_md]

Contains a row for each view object, with sys.objects.type = V.

Column name Data type Description
<inherited columns> For a list of columns that this view inherits, see sys.objects (Transact-SQL)
is_replicated bit 1 = View is replicated.
has_replication_filter bit 1 = View has a replication filter.
has_opaque_metadata bit 1 = VIEW_METADATA option specified for view. For more information, see CREATE VIEW (Transact-SQL).
has_unchecked_assembly_data bit 1 = View contains persisted data that depends on an assembly whose definition changed during the last ALTER ASSEMBLY. Resets to 0 after the next successful DBCC CHECKDB or DBCC CHECKTABLE.
with_check_option bit 1 = WITH CHECK OPTION was specified in the view definition.
is_date_correlation_view bit 1 = View was created automatically by the system to store correlation information between datetime columns. Creation of this view was enabled by setting DATE_CORRELATION_OPTIMIZATION to ON.

Permissions

[!INCLUDEssCatViewPerm] For more information, see Metadata Visibility Configuration.

See Also

Object Catalog Views (Transact-SQL)
Catalog Views (Transact-SQL)
ALTER ASSEMBLY (Transact-SQL)
DBCC CHECKDB (Transact-SQL)
DBCC CHECKTABLE (Transact-SQL)
Querying the SQL Server System Catalog FAQ