在生产环境中经常会遇到磁盘分区不够用的情况,这时需要移动数据文件至新的磁盘分区。
- 首先确定数据文件的状态及路径
查询表空间类型及状态
select tablespace_name,status,contents from dba_tablespaces;
查询表空间的路径
select file_id,file_name,tablespace_name from dba_data_files;
- 将该表空间修改为OFFLINE
alter tablespace CESHI offline;
select tablespace_name,status,contents from dba_tablespaces ;
- 更改表空间的路径(达梦实际上是剪切走了数据文件)
alter tablespace "CESHI" rename datafile '/dbdata/DAMENG/CESHI1.dbf' to '/dbdata/CESHI1.dbf';
- 修改表空间的状态为 ONLINE 状态
alter tablespace CESHI online;
注:修改表空间的dbf文件名可以直接在manager中右键表空间选修改进行重命名
O_O
评论已关闭