Update 17_resource_limits.sql

This commit is contained in:
Yacine31
2023-12-07 19:11:14 +01:00
parent f60340c574
commit b4c6d140bb

View File

@@ -1,7 +1,10 @@
prompt <h2>Resource Limit (GV$RESOURCE_LIMIT)</h2>
SELECT /*+ NO_MERGE */
*
FROM gv$resource_limit
ORDER BY
resource_name,
inst_id;
SELECT
*
FROM
gv$resource_limit
WHERE
resource_name IN ( 'processes', 'sessions' )
ORDER BY
resource_name,
inst_id;