Database Utilities (MOSC)

MOSC Banner

I have to extract several large tables to pipe delimited text files. In total, the tables are about

edited Jun 5, 2015 10:06AM in Database Utilities (MOSC) 5 commentsAnswered

My sql script has the following sytnax:

set colsep '|';

set echo       off;

set feedback   off;

set heading    off;

set linesize   32767;

set pagesize   0;

set termout    off;

set trimspool  on;

set verify     off;

set timing on;

spool tbl1_flatfile.txt

select * from tbl1;

spool off;

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center