Úplný dotaz pro uloženou proceduru (ne v balíčku):
select text
from all_source
where owner = 'MYSCHEMA'
and type = 'PROCEDURE'
and name = 'MY_PROCEDURE'
order by line;
Pokud jste připojeni jako uživatel MYSCHEMA, můžete použít USER_SOURCE:
select text
from user_source
where type = 'PROCEDURE'
and name = 'MY_PROCEDURE'
order by line;
Další hodnoty pro TYPE jsou:
- TYP BODY
- FUNKCE
- TRIGGER
- TYP
- ZDROJ JAVA
- TĚLO BALENÍ
- BALENÍ