1

タイトルにあるように、次の情報に基づいてApexレポートを作成します。

show sga
show parameter

SQLPlusに存在するコマンド

誰かがこれのバックラウンドで行われるselectステートメントまたはそれが参照するテーブルを知っていますか?

4

1 に答える 1

2

表示パラメータは、次の選択によってシミュレートできます。

select name,  
       case type 
         when 1 then 'boolean'  
         when 2 then 'string' 
         when 3 then 'integer' 
         when 4 then 'parameter file' 
         when 5 then 'reserved' 
         when 6 then 'big integer' 
         else to_char(type) 
       end as type,  
       value, 
       description, 
       update_comment 
from v$parameter 
where name like '%foo%'

Show SGAは、次のステートメントを使用してシミュレートできます。

select 'Total System Global Area' as "Memory", 
       sum(VALUE) as "Value", 
       'bytes' as unit 
from V$SGA 
union all 
select NAME, 
       VALUE, 
       'bytes' 
from V$SGA
于 2012-06-08T17:36:48.830 に答える