This commit is contained in:
Yacine31
2023-11-09 02:54:43 +01:00
parent fed0b1dd33
commit cecd195e76
31 changed files with 759 additions and 2 deletions

10
sql/16_dba_registry.sql Normal file
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;