比如说修改 user01.dbf 文件 的路径
1.先登录sqlplus:
C:Documents and Settingschezh>sqlplus system/password as sysdba
2.修改表空间为Offline:
SQL> alter tablespace users offline;
3.拷贝表空间文件
拷贝 C:oracleproduct10.2.0oradataorclUSERS01.DBF 到 D:oracledataorclUSERS01.DBF
4.修改oracle表空间指向地址
alter database rename file ‘原路径USERS01.DBF' to '文件新路径USERS01.DBF';
SQL> alter database rename file 'C:oracleproduct10.2.0oradataorclUSERS01.DBF' to 'D:oracledataorclUSERS01.DBF'
5. 手动删除表空间物理文件
5.修改表空间为Online
C:Documents and Settingschezh>sqlplus system/password as sysdba
2.修改表空间为Offline:
SQL> alter tablespace users offline;
3.拷贝表空间文件
拷贝 C:oracleproduct10.2.0oradataorclUSERS01.DBF 到 D:oracledataorclUSERS01.DBF
4.修改oracle表空间指向地址
alter database rename file ‘原路径USERS01.DBF' to '文件新路径USERS01.DBF';
SQL> alter database rename file 'C:oracleproduct10.2.0oradataorclUSERS01.DBF' to 'D:oracledataorclUSERS01.DBF'
5. 手动删除表空间物理文件
删除c:下的USERS01.DBF文件,并且以后数据全部会放在D:oracledata
5.修改表空间为Online
SQL> alter tablespace users online;