Record of ORA-01691 error reported by Data Pump replication library, ora-01691

Source: Internet
Author: User

Record of ORA-01691 error reported by Data Pump replication library, ora-01691

Today, I want to report a database error 01691. I learned the following online: The table space is insufficient.

Based on your own error message

View the tablespace list SELECT t. tablespace_name, round (SUM (bytes/(1024*1024), 0) ts_sizeFROM dba_tablespaces t, dba_data_files dWHERE t. tablespace_name = d. tablespace_nameGROUP BY t. tablespace_name;

View the name and size of a tablespace physical file

SELECT tablespace_name,

File_id,

File_name,

Round (bytes/(1024*1024), 0) total_space

FROM dba_data_files

Order by tablespace_name;

Locate the tablespace name that reported the error

Locate the tablespace and physical address

Alter tablespace TAB_CC add datafile '/cctab/cc/newtabcc06.dbf' size5000M;

Add a tablespace to set the space size for it.

You can continue to use data to pump new users to record their daily logs.

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.