如何将数据库的数据导入到csv文件中

时间:2021-12-27 20:39:21
  如何将数据库的数据导入到csv文件中 2011-01-13 20:23

set colsep ,     -- separate columns with a comma
set pagesize 0   -- only one header row
set trimspool on-- remove trailing blanks
set headsep off  -- this may or may not be useful...depends on your headings.
set linesize X   -- X should be the sum of the column widths

spool myfile
.csv

select table_name, tablespace_name
 
from all_tables
 
where owner ='SYS'
   
and tablespace_name isnotnull;

 

 

有很多set *** off的选项,为了避免在生成的csv文件中有多余的注释或者行头或者其它信息,看自己需要选择。

比如:

Sql代码 spool常用的设置   set colsep' ';    //域输出分隔符   set echo off;    //显示start启动的脚本中的每个sql命令,缺省为on  set feedback off;  //回显本次sql命令处理的记录条数,缺省为on  set heading off;   //输出域标题,缺省为on  set pagesize 0;   //输出每页行数,缺省为24,为了避免分页,可设定为0。   set termout off;   //显示脚本中的命令的执行结果,缺省为on  set trimout on;   //去除标准输出每行的拖尾空格,缺省为off  set trimspool on;  //去除重定向(spool)输出每行的拖尾空格,缺省为off   

spool常用的设置 set colsep' ';    //域输出分隔符set echo off;    //显示start启动的脚本中的每个sql命令,缺省为on set feedback off;  //回显本次sql命令处理的记录条数,缺省为onset heading off;   //输出域标题,缺省为on set pagesize 0;   //输出每页行数,缺省为24,为了避免分页,可设定为0。 set termout off;   //显示脚本中的命令的执行结果,缺省为onset trimout on;   //去除标准输出每行的拖尾空格,缺省为off set trimspool on;  //去除重定向(spool)输出每行的拖尾空格,缺省为off


通过spool指定输出的文件

Sql代码 spool UdbUser.csv  

spool UdbUser.csv

执行完毕后要关掉重定向

Sql代码 spool off  

spool off