Last active
March 22, 2022 19:07
-
-
Save rruntsch/7e8a9027379b1e1d7323c1a5d56dea02 to your computer and use it in GitHub Desktop.
This SQL query obtain end-user table metadata from SQL Server database system tables.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- File Name: get_tables.sql | |
-- Description: Get all schemas and user-defined tables in the SQL Server database | |
-- specified in the USE statement. | |
USE AdventureWorks2019; | |
GO | |
SELECT | |
SCHEMA_NAME(tbl.[schema_id]) AS [Schema] | |
, tbl.[name] AS [Table] | |
, part.[rows] AS [Rows] | |
FROM sys.tables tbl | |
INNER JOIN sys.partitions part | |
ON tbl.[object_id] = part.[object_id] | |
WHERE part.index_id IN (0, 1) -- 0 for table with a primary key and 1 for tables without a primary key | |
ORDER BY [Schema], [Table]; | |
GO | |
INNER JOIN sys.partitions part ON tbl.[object_id] = part.[object_id] | |
INNER JOIN sys.extended_properties prop ON tbl.[object_id] = prop.[major_id] | |
WHERE part.index_id IN (0, 1) -- 0 for table with a primary key and 1 for tables without a primary key | |
ORDER BY [Schema], [Table]; | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment