查看表空间使用情况:
>sp_iqdbspace;
或者
>select * from sp_iqdbspace();
查看数据文件信息
>sp_iqfile;
或者
>select * from sp_iqfile();
查看指定表空间内的对象占用空间情况:
>sp_iqdbspaceinfo dbname
或者
>select * from sp_iqdbspaceinfo('dbname');
查看指定表占用空间情况:
>sp_iqindexinfo 'table owner.tbname';
或者
>select * from sp_iqindexinfo(
'table owner.tbname');