如何更改oracle 9i的默认编辑器?

发布于 2024-08-23 09:33:45 字数 76 浏览 6 评论 0原文

我正在使用 Oracle 9i,当我输入 ed 时,记事本打开,我想使用 Microsoft Word 而不是记事本作为编辑器,这可能吗?

I am using Oracle 9i ,when i type ed ,notepad gets open ,i want to use Microsoft Word instead of notepad as an editor,Is it possible?

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

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

发布评论

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

评论(1

野生奥特曼 2024-08-30 09:33:45

建议使用 MS Word 作为文本编辑器,因为它添加了许多 SQL Plus 无法理解的专有格式垃圾。但是,您可以使用以下命令在 SQL Plus 中指定您喜欢的任何编辑器:

define _editor = "<path to editor>"

例如,我使用 TextPad:

define _editor = "C:\Program Files\TextPad 5\TextPad.exe"

对于 Word,我必须编写:

define _editor = "C:\Program Files\Microsoft Office\Office\Winword.exe"

您可以将其放入默认文件夹中的 login.sql 文件中,以便它自动运行每当您启动 SQL Plus 时

I would not advise using MS Word as a text editor, as it adds a lot of proprietary formatting junk that SQL Plus will not understand. However, you can specify any editor you like in SQL Plus using this command:

define _editor = "<path to editor>"

For example, I use TextPad:

define _editor = "C:\Program Files\TextPad 5\TextPad.exe"

For Word I would have to write:

define _editor = "C:\Program Files\Microsoft Office\Office\Winword.exe"

You can put this in a login.sql file on the default folder so that it runs automatically whenever you start SQL Plus

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