top of page

Obter alguns detalhes de tabela - SQL SERVER

Atualizado: 23 de set.



💠 Obter data de criação da tabela no SQL Server


SELECT

name AS TableName,

format(create_date, 'dd/MM/yyyy') AS CriadoEm

FROM

sys.tables

WHERE

name = 'basetri'










💠 Quantidade de linhas em uma tabela


SELECT COUNT(*) FROM basetri













💠 Colunas da tabela e seus tipos de dados


EXEC sp_columns basetri







💠 Tamanho da tabela no disco

EXEC sp_spaceused basetri





bottom of page