26 lines
851 B
SQL
26 lines
851 B
SQL
-- -----------------------------------------------------------------------------------
|
|
-- File Name : https://oracle-base.com/dba/10g/sga_resize_ops.sql
|
|
-- Author : Tim Hall
|
|
-- Description : Provides information about memory resize operations.
|
|
-- Requirements : Access to the v$ views.
|
|
-- Call Syntax : @sga_resize_ops
|
|
-- Last Modified: 09/05/2017
|
|
-- -----------------------------------------------------------------------------------
|
|
|
|
SET LINESIZE 200
|
|
|
|
COLUMN parameter FORMAT A25
|
|
|
|
SELECT start_time,
|
|
end_time,
|
|
component,
|
|
oper_type,
|
|
oper_mode,
|
|
parameter,
|
|
ROUND(initial_size/1024/1024) AS initial_size_mb,
|
|
ROUND(target_size/1024/1024) AS target_size_mb,
|
|
ROUND(final_size/1024/1024) AS final_size_mb,
|
|
status
|
|
FROM v$sga_resize_ops
|
|
ORDER BY start_time;
|