如何在 Oracle 10g 中永久设置 linesize、pagesize 和其他环境参数?
如何在oracle 10g中永久设置linesize,pagesize?
how to set linesize, pagesize permanently in oracle 10g?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是用于 SQL*Plus 的吗?如果是这样,这些说明将起作用:
在\sqlplus\admin 目录
(例如 C:\Oracle\Ora10g\sqlplus\ admin\glogin.sql)
每次登录 SQL*Plus 时都会执行此文件。您可以在此处添加设置,例如“设置 linesize 1000”。以下是我的文件的内容:
glogin.sql:
设置线宽1000
Is this for SQL*Plus? If so, these instructions will work:
Create a file (or edit it if it's already there) called glogin.sql in the <ORACLE_HOME>\sqlplus\admin directory
(ex. C:\Oracle\Ora10g\sqlplus\admin\glogin.sql)
This file will get executed every time you log into SQL*Plus. You can add settings here, such as "set linesize 1000". Here are the contents of my file:
glogin.sql:
set linesize 1000
从表/视图中选择(您的需求)
。在此之前:SELECT (YOUR NEEDS) FROM THE TABLE/VIEW
. BEFORE THAT WILL BE THE: