Finding table size

  • Thread starter Thread starter guptavinayak
  • Start date Start date
G

guptavinayak

Hi All,
I need to find the table size of a particular table, I have a valid
Oracle query :
select sum(bytes) from user_segments where segment_name like
'TEST_TABLE' , which returnes the size in byes, I need a similar query
that should work on MS SQL.
Thanks,
Vinayak
 
Access is a file based database and there is no "table size" per se. You
could make a copy of your file, compact both the copy and the original,
remove the table from the copy, compact again, and compare the sizes of the
two files, but table size is not really applicable to a file-based
application.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top