欢迎投稿

今日深度:

How to use SQLPlus export data to csv format

How to use SQLPlus export data to csv format


How to use SQLPlus export data to csv format
 
Sqlplus opr1d/password@swoprdb1d.nam.nsroot.net:1521/OPRISKD1
set colsep '|'
set echo off

set feedback off
set linesize 1000
set pagesize 0

set trimspool on
set headsep off

spool output.dat

select <table>.*
  from <table>
where <conditions>

spool off

 

 

www.htsjk.Com true http://www.htsjk.com/oracle/21378.html NewsArticle How to use SQLPlus export data to csv format How to use SQLPlus export data to csv format Sqlplus opr1d/password@swoprdb1d.nam.nsroot.net:1521/OPRISKD1set colsep |set echo offset feedback offset linesize 1000set pagesize 0set trimspool onse...
相关文章
    暂无相关文章
评论暂时关闭