| title | View the Table Definition | Microsoft Docs | ||||
|---|---|---|---|---|---|
| ms.custom | |||||
| ms.date | 03/14/2017 | ||||
| ms.prod | sql | ||||
| ms.prod_service | table-view-index, sql-database, sql-data-warehouse, pdw | ||||
| ms.reviewer | |||||
| ms.technology | table-view-index | ||||
| ms.topic | conceptual | ||||
| helpviewer_keywords |
|
||||
| ms.assetid | 1865fb7c-f480-4100-9007-df5364cd002a | ||||
| author | stevestein | ||||
| ms.author | sstein | ||||
| monikerRange | >=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-server-2016||=sqlallproducts-allversions||>=sql-server-linux-2017||=azuresqldb-mi-current |
[!INCLUDEtsql-appliesto-ss2016-all-md]
You can display properties for a table in [!INCLUDEssCurrent] by using [!INCLUDEssManStudioFull] or [!INCLUDEtsql].
In This Topic
-
Before you begin:
-
To display table properties, using:
You can only see properties in a table if you either own the table or have been granted permissions to that table.
-
In Object Explorer, select the table for which you want to show properties.
-
Right-click the table and choose Properties from the shortcut menu. For more information, see Table Properties - SSMS.
-
In Object Explorer, connect to an instance of [!INCLUDEssDE].
-
On the Standard bar, click New Query.
-
Copy and paste the following example into the query window and click Execute. The example returns all columns from the
sys.tablescatalog view for the specified object.SELECT * FROM sys.tables WHERE object_id = 1973582069;
For more information, see sys.tables (Transact-SQL).