2026-03-12 20:23:15
This commit is contained in:
25
timhall/10g/sga_resize_ops.sql
Normal file
25
timhall/10g/sga_resize_ops.sql
Normal file
@@ -0,0 +1,25 @@
|
||||
-- -----------------------------------------------------------------------------------
|
||||
-- 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;
|
||||
Reference in New Issue
Block a user