Answers for "how to get the particular record size in table"

0

how to get the particular record size in table

dbcc showcontig ('YourTableNameHere') with tableresults
Posted by: Guest on January-11-2021
0

how to get the particular record size in table

SELECT * FROM sys.dm_db_index_physical_stats (DB_ID(N'AdventureWorks2014'), OBJECT_ID(N'[sales].[SalesOrderHeader]'), NULL, NULL , 'DETAILED')
Posted by: Guest on January-11-2021

Code answers related to "how to get the particular record size in table"

Browse Popular Code Answers by Language