creating an HTML file with SQL*Plus

Here is an example of creating an HTML file with SQL*Plus:

  1. Create a script, call it runhtml.sql, with the following code:

set ver off

set term off

set markup html on spool on

spool <drive>:\ex1.html

select * from table_name;

select * from table_name;

spool off

  1. Execute this script using:

SQL> @runhtml.sql

  1. Open the output file ex1.html, which, in our example, it is saved on the C:\ drive.

  2. Now you can import this ex1.html in Excel 2000. You do not need to create a csv file anymore. You can also use an html file.

相关推荐
远歌已逝3 小时前
维护在线重做日志(二)
数据库·oracle
LKID体11 小时前
Python操作neo4j库py2neo使用(一)
python·oracle·neo4j
斗-匕12 小时前
Spring事务管理
数据库·spring·oracle
一行玩python12 小时前
SQLAlchemy,ORM的Python标杆!
开发语言·数据库·python·oracle
王ASC14 小时前
ORA-01461: 仅能绑定要插入 LONG 列的 LONG 值。ojdbc8版本23.2.0.0驱动BUG【已解决】
数据库·sql·oracle
不爱学习的啊Biao15 小时前
初识mysql数据库
数据库·mysql·oracle
SRC_BLUE_1715 小时前
SQLI LABS | Less-55 GET-Challenge-Union-14 Queries Allowed-Variation 2
oracle·c#·less
.18 小时前
接口 测试
数据库·oracle
LIT-涛21 小时前
JavaEE初学07
数据库·oracle·java-ee
奈斯ing1 天前
【Oracle篇】SQL性能优化实战案例(从15秒优化到0.08秒)(第七篇,总共七篇)
运维·数据库·sql·oracle·性能优化