How to see the statistic of MS SQL Server

Roman Sedov


0 127 Visits
select * from sys.dm_db_index_physical_stats(DB_ID(N'database_name'), OBJECT_ID(N'table_name'), null, null, 'Detailed');

 


Comments