Re: ASCII DELIMITED Data File

From: Jerry Gitomer <jgitomer_at_erols.com>
Date: Wed, 29 Mar 2000 00:10:40 -0500
Message-ID: <38E19050.63AD4EFA_at_erols.com>


Brandon Duncan wrote:
>
> To any Oracle Experts:
>
> Is there a clean way to create an ASCII Delmited Data file via ORACLE
> for the purpose of transferring data from one database to another?
> I don't want to mess with the structure at all.
>
> Thanks for you help,
>
> Brandon

	set colsep='|'
	set feedback off
	set pages 0
	set lines <n>   #where n => record length
	set termout off
	spool <file_name.ext>
	select * from <table_name>
	spool off

	I may have missed a parameter or two, but this will get you
started.
-- 
Jerry Gitomer 
Once I learned how to spell DBA, I became one
Received on Wed Mar 29 2000 - 07:10:40 CEST

Original text of this message