在 UNIX 中使用 sqlplus 运行 SQL?

发布于 2024-10-11 12:36:23 字数 108 浏览 7 评论 0原文

使用 sqlplus 运行 SQL 时,我不想在屏幕上显示任何内容。我正在使用 SPOOL 将内容保存到文件中。即使我重定向它显示连接到 SQL,SQL> 1 2 .... 如何防止打印这些条目?

While running the SQL using sqlplus, I dodn't want to dispaly anything on the screen. I am using SPOOL to save the contents to a file. even if I redirect it dispalys connected to SQL, SQL> 1 2 ....
How can I prevent these entries from getting printed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

未蓝澄海的烟 2024-10-18 12:36:23

尝试选项 -silent (或只是 -s):

> sqlplus -s username/password@database

Try the option -silent (or just -s):

> sqlplus -s username/password@database
离笑几人歌 2024-10-18 12:36:23

如果其他一切都失败了,你可以尝试

sqlplus username/password@database @myscript.sql >/dev/null 2>&1

if everything else fails, you could try

sqlplus username/password@database @myscript.sql >/dev/null 2>&1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文