Suppress the contents of the SQLplus command in UNIX?

烂漫一生 提交于 2019-12-08 06:43:07

问题


While connecting to db [ oracle] using sqlplus in Unix, I don't want to display the contents like:

connected to...
SQL>....

How would I remove these display entries?


回答1:


Your probably looking for the option -silent (or just -s):

> sqlplus -s username/password@database


来源:https://stackoverflow.com/questions/4655018/suppress-the-contents-of-the-sqlplus-command-in-unix

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!