zoukankan      html  css  js  c++  java
  • 以pfile或者spfile启动时show parameter pfile的不同结果

    普通启动:
    SQL> show parameter pfile
    
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    spfile                               string      /u01/app/oracle/product/11.2.0
                                                     /dbhome_1/dbs/spfilesingle1.or a
    
    以pfile启动
    SQL> startup nomount pfile=/home/oracle/pfile.ora
    ORACLE instance started.
    
    Total System Global Area  413372416 bytes
    Fixed Size                  2253784 bytes
    Variable Size             314575912 bytes
    Database Buffers           92274688 bytes
    Redo Buffers                4268032 bytes
    
    SQL> alter database mount;
    
    Database altered.
    
    SQL> alter database open;
    
    Database altered.
    
    SQL>    show parameter pfile;
    
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    spfile                               string
    SQL>
    
    that's the difference. 
    

  • 相关阅读:
    MS-DOS命令
    寻找一条通过迷宫的路径
    linux文件基本操作和常用命令
    网络基础
    计算机基础---操作系统
    GIT 使用
    计算机基础
    秒角士网站
    咖啡项目
    winfrom面向对象1
  • 原文地址:https://www.cnblogs.com/zsychanpin/p/7085002.html
Copyright © 2011-2022 走看看