4

如何在 SQL Anywhere 上查看表的长度(以字节为单位)?这是可能的?

谢谢

4

1 回答 1

5

要查找表中数据占用的字节数:

select db_property('pagesize')*(stab.table_page_count+stab.ext_page_count)
    from sys.systab stab join sys.sysuser suser on stab.creator=suser.user_id
    where stab.table_name='table_name' and suser.user_name='user_name'

这不包括表上任何索引或触发器的大小。

于 2009-11-16T18:56:01.473 回答