Suppress the contents of the SQLplus command in UNIX?
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?
Your probably looking for the option -silent (or just -s):
> sqlplus -s username/password@database
精彩评论