Det finns en TYPE-kolumn i all_source-vyn. Typen kan ha 2 värden - 'PACKAGE' och 'PACKAGE BODY'. Så för att få specifikationerna,
select text from all_source
where name = 'PACK_JACK'
and type = 'PACKAGE'
order by line;
och för att få kroppen
select text from all_source
where name = 'PACK_JACK'
and type = 'PACKAGE BODY'
order by line;
Dessutom, istället för att använda all_source, kan du använda user_source. all_source innehåller allt inklusive systempaket. USER_SOURCE har bara användardefinierade paket.