- 论坛徽章:
- 0
|
我写了下面的sql script ,希望生成一个countall.sql(这个脚本用来查询所有用户表信息)。
结果发现生成的countall.sql中多了第一行和最后一行内容(SQL>开头的语句)。
在countall.sql中多的两行为:
SQL> select 'select count(*) from ' || table_name || ';' from user_tables;
SQL> spool off
请教:
a.为什么会多出这么2行(头、尾两行)?
b.如何去掉这头尾两行?
--sql代码--
SQL> rem ***
SQL> rem *** countmytables.sql
SQL> rem ***
SQL> set heading off
SQL> set pagesize 0
SQL> set feedback off
SQL> set echo off
SQL> set linesize 80
SQL> spool countall.sql
SQL> select 'select count(*) from ' || table_name || ';' from user_tables;
select count(*) from BONUS;
select count(*) from DEPT;
select count(*) from EMP;
select count(*) from SALGRADE;
SQL> spool off
SQL>
--生成countall.sql--
SQL> select 'select count(*) from ' || table_name || ';' from user_tables;
select count(*) from BONUS;
select count(*) from DEPT;
select count(*) from EMP;
select count(*) from SALGRADE;
SQL> spool off |
|