zoukankan      html  css  js  c++  java
  • 对control file的学习笔记

    SQL> startup nomount;
    startup nomount;
    ORACLEインスタンスが起動しました。

    Total System Global Area 521936896 bytes
    Fixed Size 2229944 bytes
    Variable Size 360712520 bytes
    Database Buffers 150994944 bytes
    Redo Buffers 7999488 bytes
    SQL> select * from v$controlfile;
    select * from v$controlfile;

    レコードが選択されませんでした。

    SQL> show parameter control_files;

    NAME TYPE
    ------------------------------------ ----------------------
    VALUE
    ------------------------------
    control_files string
    /u01/app/oracle/oradata/mydb/c
    ontrol01.ctl, /u01/app/oracle/
    fast_recovery_area/mydb/contro
    l02.ctl
    SQL>

    SQL> alter database mount;
    alter database mount;

    データベースが変更されました。

    SQL> select * from v$controlfile;
    select * from v$controlfile;

    STATUS
    -------
    NAME
    --------------------------------------------------------------------------------
    IS_ BLOCK_SIZE FILE_SIZE_BLKS
    --- ---------- --------------

    /u01/app/oracle/oradata/mydb/control01.ctl
    NO 16384 594


    /u01/app/oracle/fast_recovery_area/mydb/control02.ctl
    NO 16384 594

    STATUS
    -------
    NAME
    --------------------------------------------------------------------------------
    IS_ BLOCK_SIZE FILE_SIZE_BLKS
    --- ---------- --------------


    SQL>

  • 相关阅读:
    VS2013 自动添加头部注释 -C#开发
    在调用Response.End()时,会执行Thread.CurrentThread.Abort()操作
    React
    WebApi基础
    wcf
    memcached系列
    Ioc容器Autofac系列
    使用TortoiseSVN创建版本库
    使用libcurl 发送post请求
    值得推荐的C/C++框架和库
  • 原文地址:https://www.cnblogs.com/gaojian/p/3527055.html
Copyright © 2011-2022 走看看