データ出力を抑止する

(5.6)
drop table tab1;
create table tab1(col1 int);
insert into tab1 values(1);
select * from tab1;

pager cat /dev/null
nopager

(12cR2)

drop table tab1 purge;
create table tab1(col1 int);
insert into tab1 values(1);
commit;
select * from tab1;

set feed only;
set feed on;

 

(9.4)
drop table tab1;
create table tab1(col1 int);
insert into tab1 values(1);
select * from tab1;

\o /dev/null
\o

 

調べた限り機能はない模様