Displays the number of rows, disk space reserved, and disk space used for a specific table, or for all tables in a SQL Data Warehouse or SQL Data Warehouse Parallel Data Warehouse database.
Transact-SQL Syntax Conventions (Transact-SQL)
-- Show the space used for all user tables and system tables in the current database
DBCC PDW_SHOWSPACEUSED
[;]
-- Show the space used for a table
DBCC PDW_SHOWSPACEUSED ( " [ database_name . [ schema_name ] . ] | [ schema_name .] table_name " )
[;]
[ database_name . [ schema_name ] . | schema_name . ] table_name
The one, two, or three-part name of the table to be displayed. For two or three-part table names, the name must be enclosed with double quotes (""). Using quotes around a one-part table name is optional. When no table name is specified, the information is displayed for the current database.
Requires VIEW SERVER STATE permission.
This is the result set for all tables.
Column | Data Type | Description |
---|---|---|
reserved_space | bigint | Total space used for the database, in KB. |
data_space | bigint | Space used for data, in KB. |
index_space | bigint | Space used for indexes, in KB. |
unused_space | bigint | Space that is part of the reserved space and not used, in KB. |
pdw_node_id | int | Compute node that is being used for the data. |
This is the result set for one table.
Column | Data Type | Description | Range |
---|---|---|---|
rows | bigint | Number of rows. | |
reserved_space | bigint | Total space reserved for the object, in KB. | |
data_space | bigint | Space used for the data, in KB. | |
index_space | bigint | Space used for indexes, in KB. | |
unused_space | bigint | Space that is part of the reserved space and not used, in KB. | |
pdw_node_id | int | Compute node that is used for reporting the space usage. | |
distribution_id | int | Distribution that is used for reporting the space usage. | Value is -1 for replicated tables. |
The following examples show multiple ways to display the number of rows, disk space reserved, and disk space used by the FactInternetSales table in the **AdventureWorksPDW2012** database.
-- Uses AdventureWorks
DBCC PDW_SHOWSPACEUSED ( "AdventureWorksPDW2012.dbo.FactInternetSales" );
DBCC PDW_SHOWSPACEUSED ( "AdventureWorksPDW2012..FactInternetSales" );
DBCC PDW_SHOWSPACEUSED ( "dbo.FactInternetSales" );
DBCC PDW_SHOWSPACEUSED ( FactInternetSales );
The following example shows the disk space reserved and used by all user tables and system tables in the **AdventureWorksPDW2012** database.
## See also DBCC PDW_SHOWEXECUTIONPLAN (Transact-SQL)
DBCC PDW_SHOWPARTITIONSTATS (Transact-SQL)