如何正确把Oracle数据导出成Txt的格式
1个回答
展开全部
简单的就下载个PL/SQL,连接ORACLE后用其自带的导出导入功能就可以了,很方便。复杂点的
就用sqlldr spool(oracl自带的),网上有很多例子
sqlldr导出txt
利用spool 导出txt
1.写output.sql
sqlplus system/psw@db as sysdba --连接oracle
CHARACTERSET
al32UTF8 --设置编码集
set trimspool
on --打开池
spool
c:\output\output.txt --池输出路径
set pagesize
0 --页设置
set heading
off --关闭表头
set linesize
32767 --最大行显
select
'#'||col1||'#,#'||col2||'#,#'||col3||'#‘ --设置需要的列格式。此例,列间以以逗号分隔,列内容用#引起。
from test_data;
exit;
--退出sqlplus
spool off
--关闭池
pause
就用sqlldr spool(oracl自带的),网上有很多例子
sqlldr导出txt
利用spool 导出txt
1.写output.sql
sqlplus system/psw@db as sysdba --连接oracle
CHARACTERSET
al32UTF8 --设置编码集
set trimspool
on --打开池
spool
c:\output\output.txt --池输出路径
set pagesize
0 --页设置
set heading
off --关闭表头
set linesize
32767 --最大行显
select
'#'||col1||'#,#'||col2||'#,#'||col3||'#‘ --设置需要的列格式。此例,列间以以逗号分隔,列内容用#引起。
from test_data;
exit;
--退出sqlplus
spool off
--关闭池
pause
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询