Monday, February 14, 2011

How to find the Package code from SQL Prompt

The following query will get you there , if you have full access to the database

Select *
from all_source
--where owner = ''
where type = 'PACKAGE BODY'
and name = ''
order by line

No comments:

Post a Comment