Create 19_memory_resize_operations.sql

This commit is contained in:
Yacine31
2023-11-09 01:47:36 +01:00
parent 7af034977e
commit af5445b903

View File

@@ -0,0 +1,9 @@
prompt <h2>Memory Resize Operations</h2>
SELECT /*+ NO_MERGE */
*
FROM gv$memory_resize_ops
ORDER BY
inst_id,
start_time DESC,
component;
exit