Oracle
 sql >> Database >  >> RDS >> Oracle

Impostazioni SQLPlus per generare file di dati separati da tabulazioni

Come ha sottolineato Justin nel suo link, usando il set colsep funzione Il comando SQLPlus salva digitando un separatore per ogni colonna.

Ma per delimitato da tabulazioni, set colsep Chr(9) non funzionerà.

Per UNIX o LINUX, usa set colsep ' ' con lo spazio tra le virgolette singole che è una scheda digitata.

Per Windows, usa queste impostazioni:

col TAB# new_value TAB NOPRINT
select chr(9) TAB# from dual;
set colsep "&TAB"

select * from table;