从 sqlplus 会话返回数据时,我通常使用以下 set 命令来抑制除数据之外的所有内容。
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options
SQL> select sysdate from dual;
SYSDATE
---------
13-JUL-12
SQL> set pagesize 0 feedback off ver off heading off echo off;
SQL> select sysdate from dual;
13-JUL-12
但是,当尝试从序列中获取数据时,似乎正在自动添加一个选项卡。是否需要设置另一个 sqlplus 参数?
SQL> select test_seq.nextval from dual;
2
SQL>