[Oracle problem set 5] ORA-55622: DML, alter and create unique index operations are not allowed on table

Source: Internet
Author: User
Note: [Oracle problem set] refers to the problems and solutions encountered by bloggers during database operations.
Statement execution: indicates the database operation process. Error: Indicates An error occurred while operating the database. Error cause: indicates the cause of the error. Solution: indicates the solution to the error. Related Knowledge: indicates the knowledge related to this topic. ========================================================== ======================================Execution statement: an error is reported when the tablespace name is dropped. The following error occurs:

ORA-55622: DML, alter and create unique index operations are not allowed on table "proc". "sys_fba_tcrv_76187"

Cause of error: the user wants to delete the tables with the authorized flash back features. Solution: revoke the permission granted to the corresponding tables.

1. Find the table with the error

"Proc". "sys_fba_tcrv_76187" where 76187 is the authorization number of the ID in the Flash archive.

SQL> select object_id, owner, object_name from dba_objects where object_id = '20140901'

Object_id ownerobject_name

------------------------------------------------------------

76187 proc test017

2. Find out all tables in the authorized flash back archive (the owner needs to log on and allow, for example, Proc)

SQL> select table_name from user_flashback_archive_tables;

Table_name

------------------------------

Test017

3. Reclaim the flash archive function in the table

Alter table <owner>. <tablename> No flashback archivew;

4. Execute the tablespace deletion command.

Drop tablespace tablename including contents and datafiles;

Related Knowledge: flashback Archive

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.