Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Printing Procedures
SQL> desc all_source
Name Null? Type ------------------------------- -------- ---- OWNER NOT NULL VARCHAR2(30) NAME NOT NULL VARCHAR2(30) TYPE VARCHAR2(12) LINE NOT NULL NUMBER TEXT VARCHAR2(2000)
select name, text from all_source
where type in ('PROCEDURE', 'FUNCTION') and
owner = '....'
amerar_at_ci.chi.il.us wrote:
> Hello,
>
> I need to save the source all my stored procedures and functions to my
> Unix box. What view or table can I access to get this information?
>
> Thanks,
>
> Arthur
>
> Sent via Deja.com http://www.deja.com/
> Share what you know. Learn what you don't.
Received on Thu Aug 05 1999 - 15:38:32 CDT
![]() |
![]() |