Is there a way to get a record count or a space-used value for all the tables in a SQL Server Compact database file (SQL CE 3.5.1)?
views:
208answers:
1
+2
A:
SELECT CARDINALITY FROM INFORMATION_SCHEMA.INDEXES WHERE TABLE_NAME = N'Categories' - will give you the recordcount.
http://support.microsoft.com/kb/827968/en-us - how to calculate the size (there is no space used value available)
ErikEJ
2010-01-17 06:37:14