Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Export/backup Stored Database Procedures
And for versions 8.1 and earlier you could just say:
set pagesize 0
spool backup.lst
select text
from dba_source
where owner =3D 'SCHEMA_OWNER'
order by name, type, line ;
But in general the in-house written source code was put in a source = control system, and the third-party source code would be retrieved from = a database backup if necessary.
I would share with the complaining DBA in your group the mantra I repeat = to myself now that I'm learning SQL Server basics (from Thomas Kyte's = book): understand your database, know how it works, know what it can do = for you, and use it to its fullest potential. My corollary - don't = complain about what the database doesn't do, but look for the things = that it does well.
> -----Original Message-----
> From: oracle-l-bounce_at_freelists.org
> [mailto:oracle-l-bounce_at_freelists.org]On Behalf Of Freeman, Donald
> Sent: jeudi, 12. f=E9vrier 2004 12:53
> To: oracle-l_at_freelists.org
> Subject: RE: Export/backup Stored Database Procedures
>=20 >=20
>=20
>=20
>=20
>=20
>=20
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Thu Feb 12 2004 - 16:38:47 CST
![]() |
![]() |