Oracle10g通过sqlplus导出excel

前端之家收集整理的这篇文章主要介绍了Oracle10g通过sqlplus导出excel前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Oracle10g通过sqlplus导出excel

1、创建脚本:

cd/home/oracle/bristol

vim a1.sql

set linesize 200


set term off verify off Feedback off pagesize 999


set markup html on entmap ON spool on preformat off


spool /home/oracle/bristol/tables.xls


@/home/oracle/bristol/get_tables.sql


spool off


exit


vim a2.sql

select * from CHANNELTYPE;


2、执行并获得输出

sqlplus "test/test" @/home/oracle/bristol/a1.sql

3、下载输出的excel结果

原文链接:https://www.f2er.com/oracle/208003.html

猜你在找的Oracle相关文章