Hi,
Could somebody tell me how to check the procedure source code in SQL*Plus? I want to know what the procedure try to do. I lost the original script. Any idea?
Thanks.
Printable View
Hi,
Could somebody tell me how to check the procedure source code in SQL*Plus? I want to know what the procedure try to do. I lost the original script. Any idea?
Thanks.
you can have it from the TEXT column of user_source.........
select text from user_source where name like <%proc_name%>;