I want to view Packages Body Text from data dictionary
like DBA_TRIGGERS.DESCRIPTION Column, I have used DBA_SOURCE
View but the information this view is providing is not adequate.
It shows every line in different row.
Printable View
I want to view Packages Body Text from data dictionary
like DBA_TRIGGERS.DESCRIPTION Column, I have used DBA_SOURCE
View but the information this view is providing is not adequate.
It shows every line in different row.
elect text from dba_source where name like '' order by line;
select text from dba_source where name like '' order by line;