sybase iq表空間管理常用語句

linxueguo發表於2022-01-26

    檢視錶空間使用情況:

    >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');

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31374736/viewspace-2854038/,如需轉載,請註明出處,否則將追究法律責任。

相關文章