open状态调整空间数据文件位置和名称
Posted xingxingdiandian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了open状态调整空间数据文件位置和名称相关的知识,希望对你有一定的参考价值。
SQL> create tablespace he datafile‘/home/oracle/he.dbf‘ size 10m autoextend on;
SQL> alter tablespace he offline normal;
SQL> !
[[email protected] ~]$ mv he.dbf /u01/app/oracle/oradata/VDEDU/he.dbf
[[email protected] ~]$ sqlplus / as sysdba
SQL> alter tablespace he rename datafile ‘/home/oracle/he.dbf‘to‘/u01/app/oracle/oradata/VDEDU/he.dbf‘;
SQL> alter tablespace he online;
SQL> alter tablespace he rename to her;
以上是关于open状态调整空间数据文件位置和名称的主要内容,如果未能解决你的问题,请参考以下文章
数据库open状态下,如何修改数据文件路径(可用于改名改路径)