当前位置: 代码迷 >> Oracle管理 >> 请教set heading off; set term off; set echo off 这些都干嘛用的
  详细解决方案

请教set heading off; set term off; set echo off 这些都干嘛用的

热度:537   发布时间:2016-04-24 06:03:16.0
请问set heading off; set term off; set echo off 这些都干嘛用的?
请问set   heading   off;   set   term   off;   set   echo   off     这些都干嘛用的?

------解决方案--------------------
http://download-west.oracle.com/docs/cd/B10501_01/server.920/a90842/ch13.htm#1011230
------解决方案--------------------
这些都是sqlplus的基本用法,用于格式化输出

比如
set heading off --让结果行的标题不显示
spool c:\dropTable.sql
select 'drop table ' || table_name || '; ' from user_tables;
spool off

这样,只要简单的编辑c:\dropTable.sql,就可以得到一个删除当前用户的表的批处理sql
  相关解决方案