resource limit

This commit is contained in:
Yacine31
2023-11-09 01:30:18 +01:00
parent 1f498b19d9
commit 6fec91e21b
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
prompt <h2>Registry (DBA_REGISTRY)</h2>
SELECT /*+ NO_MERGE */
x.*
--,c.name con_name
FROM dba_registry x
--LEFT OUTER JOIN v$containers c ON c.con_id = x.con_id
ORDER BY
--x.con_id,
x.comp_id;
exit;

View File

@@ -0,0 +1,8 @@
prompt <h2>Resource Limit (GV$RESOURCE_LIMIT)</h2>
SELECT /*+ NO_MERGE */
*
FROM gv$resource_limit
ORDER BY
resource_name,
inst_id;
exit