Skip to content

Instantly share code, notes, and snippets.

@shaytan1986
shaytan1986 / dbsa.sql
Last active April 5, 2022 19:47
Size of all tables in all databases
set nocount, xact_abort on
declare
@ExclDatabases nvarchar(max) = 'master|msdb|tempdb|ssisdb|model',
@Schemas nvarchar(max) = null
drop table if exists #AllTabs
create table #AllTabs
(
DbName nvarchar(128),
SchemaName nvarchar(128),