Oracle exp report ORA-03113 error Solution

Source: Internet
Author: User

Some errors such as "ora-03113 communication channel ended" were reported in exp to guide a user's data, and a lot of information was not solved on the Internet

After careful observation, it is found that the error is returned every time the large table is reached. Because the table is a log table that can be deleted, try truncate it,

The prompt "ORA-00054 resources are busy, asked to specify Nowait, dizzy, the original table was locked, so after unlocking him exp normal

 

How to handle ORA-00054 resources busy, requiring the specified Nowait

1. Find the locked database table and related Sid, serial # And spid through the previous sentence
Select object_name as object name, S. Sid, S. Serial #, P. spid as system process number
From v $ locked_object L, dba_objects o, V $ session S, V $ PROCESS p
Where l. object_id = O. object_id and L. session_id = S. Sid and S. paddr = P. ADDR;

2. Destroy related sessions in the database
Alter system kill session 'sid, serial # '; -- Sid and serial # are the data found in step 1.

 

 

Appendix: [Oracle] ORA-03113 Error Analysis and troubleshooting (Other FAQs)

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.