如何将目录添加到 SQL*Plus 包含路径?
我想将目录 D:\pl-sql 添加到 SQL*Plus 的包含路径中,这样我就可以使用该目录中的文件,例如使用以下命令编辑它们:
EDIT hello.sql
我该怎么做?
I would like to add a directory D:\pl-sql to the include path of SQL*Plus so I can then work with files in that directory like, for example, edit them with this command:
EDIT hello.sql
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ORACLE_PATH 是您要查找的变量。 (在 Unix 上)和 SQLPATH(对于 Windows)
http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b12170/ch3.htm#i1052303
此链接说明了如何添加到Windows 注册表项..
http://www.stanford.edu /dept/itss/docs/oracle/10g/server.101/b12170/ch3.htm#i1133354
ORACLE_PATH is the variable you are looking for. (on Unix) and SQLPATH (for windows)
http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b12170/ch3.htm#i1052303
This link explains how you can add to the registry entry for windows..
http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b12170/ch3.htm#i1133354
我习惯在脚本文件夹中创建 sqlplusw.exe 的快捷方式。编辑快捷方式属性以删除“开始于”字段中的任何内容。我什至可以在命令行(“目标”)上添加登录信息,以便双击即可立即连接。
I'm in the habit of creating shortcuts to sqlplusw.exe in my script folders. Edit the shortcut properties to remove anything from the "Start in" field. I can even add the login info on the command line ("Target") so that I can connect instantly with a double-click.