如何了解目前所有課程使用量

出自 NCUCCWiki
於 2008年5月13日 (二) 05:41 由 Center17 (對話 | 貢獻) 所做的修訂 (新頁面: Q: 如何了解目前所有課程使用量 A: You can use the following SQL statement to query out the disk usage. spool result.txt select a.course_id,a.course_name,(b.registry_value/1...)
(差異) ←上個修訂 | 最新修訂 (差異) | 下個修訂→ (差異)
前往: 導覽搜尋

Q: 如何了解目前所有課程使用量

A: You can use the following SQL statement to query out the disk usage.

spool result.txt

select a.course_id,a.course_name,(b.registry_value/1024) disk_usage_in_kB

from course_main a, course_registry b

where a.pk1=b.crsmain_pk1 and b.registry_key='disk_usage';

spool off

請記得因為有使用 SQL*Plus 要輸出中文時,必需要先設定NLS_LANG=american_america.AL32UTF8 這個參數, 輸出來的中文字才不會變成亂碼將,輸出的檔案至windows下看應該沒有問題,在 Unix 下直接看還是亂碼。