SMS SQL to See the Size of a Table
The following will show you the size of your software inventory table. Change the table name to view other table sizes. Replace yourSMSdbName with the name of your SMS database.
----Begin SQL----
EXEC sp_spaceused N'yourSMSdbName.dbo.SoftwareInventory';
----End SQL----
----Begin SQL----
EXEC sp_spaceused N'yourSMSdbName.dbo.SoftwareInventory';
----End SQL----
Comments