In SQL*PLus Release 8 you can use DESC:
DESC your_package
Or you can use ALL_SOURCE view:
SELECT text
FROM all_source
WHERE type = 'PACKAGE'
AND name = 'YOUR_PACKAGE'
ORDER BY line;
|
Results 1 to 2 of 2
Thread: PackagesThreaded View
|
Click Here to Expand Forum to Full Width |