【小技巧】sqlplus去掉欢迎信息和提示信息,静默模式(silent option)

前端之家收集整理的这篇文章主要介绍了【小技巧】sqlplus去掉欢迎信息和提示信息,静默模式(silent option)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

每次登陆sqlplus,都会有提示信息,如下:

sql*Plus: Release 11.1.0.6.0 - Production on Mon Dec 26 14:21:01 2016
Copyright (c) 1982,2007,Oracle.  All rights reserved.
Connected to:
Oracle Database 11g Release 11.1.0.6.0 - Production

在shell中与sqlplus交互时,这些提示信息往往会破坏数据格式。

比如用spool导出数据的时候,不希望显示这些提示信息。

好在sqlplus提供了一个静默选项,关闭所有提示信息。

SILENT Option

-S[ILENT]

Suppresses all sql*Plus information and prompt messages,including the command prompt,the echoing of commands,and the banner normally displayed when you start sql*Plus. If you omit username or password,sql*Plus prompts for them,but the prompts are not visible! Use SILENT to invoke sql*Plus within another program so that the use of sql*Plus is invisible to the user.

SILENT is a useful mode for creating reports for the web using the UsqlPLS -MARKUP command inside a CGI script or operating system script. The sql*Plus banner and prompts are suppressed and do not appear in reports created using the SILENT option.

翻译:

静默选项 (-S)

sqlplus -S user/passwd@tns

此选项用来抑制所有sql*Plus信息和提示信息,包含命令行提示(sql>),命令回显信息(相当于echo off),和通常在你登陆时显示提示信息。如果你登陆时省略了用户名和密码,sql*Plus会有提示,但是在静默模式下,提示信息是看不见的。在其他程序里用静默模式调用 sql*Plus,这个用户是看不到sql*Plus的使用情况的。

静默模式是一个非常有用的模式,例如在CGI脚本或者shell脚本里,用sqlPLUS 的MARKUP命令选项来创建基于web的报告。 sql*Plus的欢迎信息和提示信息被移除,就不会显示在用静默选项创建的报告里了。

补充:

When sql*Plus starts,and after CONNECT commands,the site profile
(e.g. $ORACLE_HOME/sqlplus/admin/glogin.sql) and the user profile
(e.g. login.sql in the working directory) are run. The files may
contain sql*Plus commands.

sql*Plus启动的时候,在connect命令之后,系统配置文件(例如:e.g. $ORACLE_HOME/sqlplus/admin/glogin.sql)和用户配置文件(例如:工作目录下的login.sql)会自动运行。这些文件里可能会包含一些命令。

原文链接:https://www.f2er.com/oracle/211147.html

猜你在找的Oracle相关文章