Migration of tablespace and database files in Oracle databases

Source: Internet
Author: User


Migration of TABLESPACE and database files in Oracle databases 1. Moving TABLESPACE files 1. Modifying tablespaces to the OFFLINE state alter tablespace TS_PARTITION_000 OFFLINE; 2. Copy the tablespace to the new location. cp/opt/oracle/11g/dbs/TS_PARTITION_000/oradata/DTCDB/tbs/TS_PARTITION_000
3. Modify the TABLESPACE data file path alter tablespace TS_PARTITION_000 rename datafile '/opt/oracle/11g/dbs/TS_PARTITION_000' TO '/oradata/DTCDB/tbs/TS_PARTITION_000 '; 4. Change the TABLESPACE to the ONLINE status www.2cto.com alter tablespace TS_PARTITION_000 ONLINE; 5. Delete the original database file rm-rf/opt/oracle/11g/dbs/TS_PARTITION_000 corresponding to the tablespace. 2. Move the database file 1. Close the database shutdown immediate; 2. Copy the database file cp/opt/oracle/11g/dbs/dbfile. dbf/oradata/DTCDB/tbs/dbfile. dbf 3. mount the DATABASE by means of startup mount 4. Modify the database file path alter database rename file '/opt/oracle/11g/dbs/dbfile. dbf 'to'/oradata/DTCDB/tbs/dbfile. dbf'; 5. OPEN the database alter database open; author AttaGain

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.