--- title: "VIEWS (Transact-SQL) | Microsoft Docs" ms.custom: "" ms.date: "03/15/2017" ms.prod: sql ms.prod_service: "database-engine, sql-database, sql-data-warehouse, pdw" ms.reviewer: "" ms.technology: system-objects ms.topic: "language-reference" f1_keywords: - "VIEWS_TSQL" - "VIEWS" dev_langs: - "TSQL" helpviewer_keywords: - "VIEWS view" - "INFORMATION_SCHEMA.VIEWS view" ms.assetid: 6119bc94-0b22-45d4-a34b-967afd810a9d author: CarlRabeler ms.author: carlrab monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-server-2016||=sqlallproducts-allversions||>=sql-server-linux-2017||=azuresqldb-mi-current" --- # VIEWS (Transact-SQL) [!INCLUDE[tsql-appliesto-ss2008-all-md](../../includes/tsql-appliesto-ss2008-all-md.md)] Returns one row for views that can be accessed by the current user in the current database. To retrieve information from these views, specify the fully qualified name of **INFORMATION_SCHEMA.**_view_name_. |Column name|Data type|Description| |-----------------|---------------|-----------------| |**TABLE_CATALOG**|**nvarchar(**128**)**|View qualifier.| |**TABLE_SCHEMA**|**nvarchar(**128**)**|Name of schema that contains the view.

**** Important **** only reliable way to find the schema of a object is to query the sys.objects catalog view.| |**TABLE_NAME**|**nvarchar(**128**)**|View name.| |**VIEW_DEFINITION**|**nvarchar(**4000**)**|If the length of definition is larger than **nvarchar(**4000**)**, this column is NULL. Otherwise, this column is the view definition text.| |**CHECK_OPTION**|**varchar(**7**)**|Type of WITH CHECK OPTION. Is CASCADE if the original view was created by using the WITH CHECK OPTION. Otherwise, NONE is returned.| |**IS_UPDATABLE**|**varchar(**2**)**|Specifies whether the view is updatable. Always returns NO.| ## See Also [System Views (Transact-SQL)](https://msdn.microsoft.com/library/35a6161d-7f43-4e00-bcd3-3091f2015e90) [Information Schema Views (Transact-SQL)](~/relational-databases/system-information-schema-views/system-information-schema-views-transact-sql.md) [sys.sql_modules (Transact-SQL)](../../relational-databases/system-catalog-views/sys-sql-modules-transact-sql.md) [sys.views (Transact-SQL)](../../relational-databases/system-catalog-views/sys-views-transact-sql.md)