Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Fastest way to export stored procedures, triggers & packages to text file
On Sat, 6 Sep 2003 20:29:32 +0300, "Tanel Poder"
<change_to_my_first_name_at_integrid.info> wrote:
>Hi!
>
>Why not full export with rows=n (and possibly specifying needed schemas)
>instead?
>Utl_file and sqlplus spooling are very slow...
>
>Tanel.
>
Hi Tanel,
For 2 reasons :
select text
from DBA_SOURCE
order by owner, type,name,line;
Becomes :
select text
from DBA_SOURCE
where type ='PACKAGE BODY'
and name like '%UPDATE%'
order by owner, name,line;
![]() |
![]() |