{"id":76,"date":"2023-07-25T15:09:32","date_gmt":"2023-07-25T18:09:32","guid":{"rendered":"https:\/\/thiagoldaniel.com.br\/?p=76"},"modified":"2023-07-25T15:10:53","modified_gmt":"2023-07-25T18:10:53","slug":"listar-10-maiores-tabelas-em-um-servidor-de-banco-de-dados-mssql","status":"publish","type":"post","link":"https:\/\/thiagoldaniel.com.br\/index.php\/2023\/07\/25\/listar-10-maiores-tabelas-em-um-servidor-de-banco-de-dados-mssql\/","title":{"rendered":"Listar 10 Maiores Tabelas em um Servidor de Banco de Dados MSSQL."},"content":{"rendered":"\n<p><strong>Query retorna as 10 principais tabelas de um servidor de banco de dados Microsoft SQL Server em n\u00edvel de tamanho de ocupa\u00e7\u00e3o destas tabelas<\/strong>.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-small-font-size\">select top 10 schema_name(tab.schema_id) + &#8216;.&#8217; + tab.name as [table],<\/p>\n\n\n\n<p class=\"has-small-font-size\">&nbsp;&nbsp;&nbsp;&nbsp;cast(sum(spc.used_pages * 8)\/1024.00 as numeric(36, 2)) as used_mb,<\/p>\n\n\n\n<p class=\"has-small-font-size\">&nbsp;&nbsp;&nbsp; cast(sum(spc.total_pages * 8)\/1024.00 as numeric(36, 2)) as allocated_mb<\/p>\n\n\n\n<p class=\"has-small-font-size\">from sys.tables tab<\/p>\n\n\n\n<p class=\"has-small-font-size\">join sys.indexes ind<\/p>\n\n\n\n<p class=\"has-small-font-size\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;on tab.object_id = ind.object_id<\/p>\n\n\n\n<p class=\"has-small-font-size\">join sys.partitions part<\/p>\n\n\n\n<p class=\"has-small-font-size\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;on ind.object_id = part.object_id and ind.index_id = part.index_id<\/p>\n\n\n\n<p class=\"has-small-font-size\">join sys.allocation_units spc<\/p>\n\n\n\n<p class=\"has-small-font-size\">&nbsp;&nbsp;&nbsp;&nbsp; on part.partition_id = spc.container_id<\/p>\n\n\n\n<p class=\"has-small-font-size\">group by schema_name(tab.schema_id) + &#8216;.&#8217; + tab.name<\/p>\n\n\n\n<p class=\"has-small-font-size\">order by sum(spc.used_pages) desc;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Query retorna as 10 principais tabelas de um servidor de banco de dados Microsoft SQL Server em n\u00edvel de tamanho de ocupa\u00e7\u00e3o destas tabelas. select top 10 schema_name(tab.schema_id) + &#8216;.&#8217; + tab.name as [table], &nbsp;&nbsp;&nbsp;&nbsp;cast(sum(spc.used_pages * 8)\/1024.00 as numeric(36, 2)) as used_mb,<\/p>\n<p class=\"link-more\"><a class=\"myButt three\" href=\"https:\/\/thiagoldaniel.com.br\/index.php\/2023\/07\/25\/listar-10-maiores-tabelas-em-um-servidor-de-banco-de-dados-mssql\/\">Leia Mais&#8230;<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,4,1],"tags":[6,10,7,8,9],"class_list":["post-76","post","type-post","status-publish","format-standard","hentry","category-banco-de-dados","category-infraestrutura-de-tecnologia-da-informacao","category-sem-categoria","tag-banco-de-dados","tag-infraestrutura-de-tecnologia-da-informacao","tag-mssql","tag-query","tag-sizing"],"_links":{"self":[{"href":"https:\/\/thiagoldaniel.com.br\/index.php\/wp-json\/wp\/v2\/posts\/76","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thiagoldaniel.com.br\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thiagoldaniel.com.br\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thiagoldaniel.com.br\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/thiagoldaniel.com.br\/index.php\/wp-json\/wp\/v2\/comments?post=76"}],"version-history":[{"count":1,"href":"https:\/\/thiagoldaniel.com.br\/index.php\/wp-json\/wp\/v2\/posts\/76\/revisions"}],"predecessor-version":[{"id":77,"href":"https:\/\/thiagoldaniel.com.br\/index.php\/wp-json\/wp\/v2\/posts\/76\/revisions\/77"}],"wp:attachment":[{"href":"https:\/\/thiagoldaniel.com.br\/index.php\/wp-json\/wp\/v2\/media?parent=76"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thiagoldaniel.com.br\/index.php\/wp-json\/wp\/v2\/categories?post=76"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thiagoldaniel.com.br\/index.php\/wp-json\/wp\/v2\/tags?post=76"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}