zoukankan      html  css  js  c++  java
  • SCOPE 中 SPFILE、MEMORY、BOTH 的小小区别

    ALTER SYSTEM 中 SCOPE=SPFILE/MEMORY/BOTH 的区别:

    SCOPE = SPFILE
    The change is applied in the
    server parameter file only. The effect is as follows:
    ■ For dynamic parameters, the change is effective at the next startup and is persistent.
    ■ For static parameters, the behavior. is the same as for dynamic parameters. This is the only SCOPE specification allowed for static parameters.
    (此更改写入初始化参数文件,更改将在下次启动时生效。动态参数与静态参数都一样可以。也是静态参数唯一可以使用的方式。)

    SCOPE = MEMORY
    The change is applied in memory only. The effect is as follows:
    ■ For dynamic parameters, the effect is immediate, but it is not persistent because the server parameter file is not updated.
    ■ For static parameters, this specification is not allowed.
    (只在内存上修改,立即生效,但重启后将不再生效,因为并没有写入到初始化参数文件。只适用于动态参数,静态参数则不允许。)

    SCOPE = BOTH
    The change is applied in both the server parameter file and memory. The effect is as follows:
    ■ For dynamic parameters, the effect is immediate and persistent.
    ■ For static parameters, this specification is not allowed.
    (既写入到初始化参数文件,也在内存上修改,立即生效。同样也只适用于动态参数,静态参数则不允许。)

  • 相关阅读:
    《3S新闻周刊》No.8:导航迈入井喷时代
    ESRI的Blog正式开始更新
    Google Earth中国部分数据重大更新
    说说EverNote
    选择ESRI的理由
    使用XAML和SharpMap渲染一幅地图
    《Excel与VBA程序设计》最新消息,预计9月上市
    基于Flash的全球卫星照片在线服务
    javascript运算符重载的实现
    uml各类图
  • 原文地址:https://www.cnblogs.com/weixun/p/3111937.html
Copyright © 2011-2022 走看看