Oracle Database Table Space Migration

Source: Internet
Author: User
Tags oracle database
The disk of the Oracle installation directory is fully stretched, causing the Oracle database to hang, querying the Internet for a solution that is divided into two ways:

One, mobile table space files

1, modify the table space offline state

ALTER tablespace ts_partition_000 OFFLINE;

2, copy the table space corresponding file to a new location

cp/opt/oracle/11g/dbs/ts_partition_000/oradata/dtcdb/tbs/ts_partition_000

3, modify the table space 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, modify the table space for online status

ALTER tablespace ts_partition_000 ONLINE;

5, delete the table space corresponding to the original database file

rm-rf/opt/oracle/11g/dbs/ts_partition_000

Second, move the database file

1. Close the database

SHUTDOWN IMMEDIATE;

2. Copy database files

Cp/opt/oracle/11g/dbs/dbfile.dbf/oradata/dtcdb/tbs/dbfile.dbf

3, hook up the way to start the database

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;
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.