zoukankan      html  css  js  c++  java
  • 【Oracle】重命名数据文件

    1)查看当前数据文件位置

    SQL> select file_id,file_name,tablespace_name from dba_data_files;


       FILE_ID FILE_NAME                                          TABLESPACE_NAME
    ---------- -------------------------------------------------- ------------------------------
             4 /u01/app/oracle/oradata/drz/users01.dbf            USERS
             3 /u01/app/oracle/oradata/drz/undotbs01.dbf          UNDOTBS1
             2 /u01/app/oracle/oradata/drz/sysaux01.dbf           SYSAUX
             1 /u01/app/oracle/oradata/drz/system01.dbf           SYSTEM

             5 /u01/app/oracle/oradata/drz/example01.dbf          EXAMPLE


    2)一致性关闭数据库

    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> 
    SQL> 
    SQL> exit                                                                                  
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options


    3)操作系统中修改数据文件的名称

    [oracle@lgr ~]$ mv /u01/app/oracle/oradata/drz/users01.dbf /u01/app/oracle/oradata/drz/users01a.dbf


    4)启动数据库到mount状态

    [oracle@lgr ~]$ sqlplus / as sysdba


    SQL*Plus: Release 11.2.0.4.0 Production on Thu Mar 16 12:18:57 2017


    Copyright (c) 1982, 2013, Oracle.  All rights reserved.


    Connected to an idle instance.


    SQL> startup mount;
    ORACLE instance started.


    Total System Global Area  521936896 bytes
    Fixed Size                  2254824 bytes
    Variable Size             209717272 bytes
    Database Buffers          301989888 bytes
    Redo Buffers                7974912 bytes
    Database mounted.


    5)数据库中修改数据文件的名称,并打开数据库

    SQL> alter database rename file '/u01/app/oracle/oradata/drz/users01.dbf' to '/u01/app/oracle/oradata/drz/users01a.dbf';     


    Database altered.


    6)验证修改后的结果

    SQL> select file_id,file_name,tablespace_name from dba_data_files;

    FILE_ID FILE_NAME                                          TABLESPACE_NAME
    ---------- -------------------------------------------------- ------------------------------
             4 /u01/app/oracle/oradata/drz/users01a.dbf            USERS
             3 /u01/app/oracle/oradata/drz/undotbs01.dbf          UNDOTBS1
             2 /u01/app/oracle/oradata/drz/sysaux01.dbf           SYSAUX
             1 /u01/app/oracle/oradata/drz/system01.dbf           SYSTEM
             5 /u01/app/oracle/oradata/drz/example01.dbf          EXAMPLE

  • 相关阅读:
    JS中的一些函数式编程术语
    学习RxJS:Cycle.js
    学习RxJS: 导入
    爬虫的终极形态:nightmare
    RxJS/Cycle.js 与 React/Vue 相比更适用于什么样的应用场景?
    [转]Shared——RN如何实现一个ExpandableList(可展开列表)组件
    Algorithm——ZigZag Conversion
    Review——RN视图缩放框架react-native-view-transformer解析
    Between Worlds 3 太阳与地球
    Tips——RN构造函数内绑定导致页面交互卡顿
  • 原文地址:https://www.cnblogs.com/NextAction/p/7366631.html
Copyright © 2011-2022 走看看