Search
 
SCRIPT & CODE EXAMPLE
 

SQL

check the size of the tables here ordered from the biggest size

SELECT
t.NAME AS TableName,
s.Name AS SchemaName,
p.rows,
SUM(a.total_pages) * 8 AS TotalSpaceKB,
CAST(ROUND(((SUM(a.total_pages) * 8) / 1024.00), 2) AS NUMERIC(36, 2)) AS TotalSpaceMB,
SUM(a.used_pages) * 8 AS UsedSpaceKB,
CAST(ROUND(((SUM(a.used_pages) * 8) / 1024.00), 2) AS NUMERIC(36, 2)) AS UsedSpaceMB,
(SUM(a.total_pages) - SUM(a.used_pages)) * 8 AS UnusedSpaceKB,
CAST(ROUND(((SUM(a.total_pages) - SUM(a.used_pages)) * 8) / 1024.00, 2) AS NUMERIC(36, 2)) AS UnusedSpaceMB
FROM
sys.tables t
INNER JOIN
sys.indexes i ON t.OBJECT_ID = i.object_id
INNER JOIN
sys.partitions p ON i.object_id = p.OBJECT_ID AND i.index_id = p.index_id
INNER JOIN
sys.allocation_units a ON p.partition_id = a.container_id
LEFT OUTER JOIN
sys.schemas s ON t.schema_id = s.schema_id
WHERE
t.NAME NOT LIKE 'dt%'
AND t.is_ms_shipped = 0
AND i.OBJECT_ID > 255
GROUP BY
t.Name, s.Name, p.Rows
ORDER BY
TotalSpaceMB DESC, t.Name
Comment

PREVIOUS NEXT
Code Example
Sql :: row_number equivalent MS Access for sequential id By Group 
Sql :: sql get latest of 2 datetimes 
Sql :: power bi connect to postgresql 
Sql :: how to fetch highest score in minimum time using mysql 
Sql :: fast sql column count 
Sql :: best practive to pass multiple table to stored procedure in sql server 
Sql :: copy table structure from postgresql to mysql 
Sql :: SQL Backup Only New Changes in SQL 
Sql :: error E11000 
Sql :: systemctl mssql-server details 
Sql :: postgres insert knex 
Sql :: https://stackoverflow.com/questions/52997573/how-to-connect-to-sql-database-with-react 
Sql :: mysql select 
Sql :: subquery 
Sql :: SQL LIKE With Wildcards 
Sql :: mysql select all table that have field names 
Sql :: sql server standard 
Sql :: postgresql get random data from table 
Sql :: timing sql queries 
Sql :: add colum in sql 
Csharp :: how to restart a scene in unity 
Csharp :: unity how to change rotation 
Csharp :: draw sphere gizmo unity 
Csharp :: ALWAYS MAximize window on start c# 
Csharp :: how to print a variable in c# with text 
Csharp :: how to clear console in c# 
Csharp :: unity application quit 
Csharp :: randomize through array in C# 
Csharp :: unity why is there no transform.left 
Csharp :: c# string to double 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =