Data Tables cannot be inserted or updated in Oracle databases.

Source: Internet
Author: User

In the Oracle database, the data table cannot execute the update statement because the data table is locked by another user. The solution is as follows:

First, execute the following SQL statement:

Select * from v $ session t1, v $ locked_object t2 where t1.sid = t2.SESSION _ ID;

Or

Select sess. sid, sess. serial #, lo. oracle_username, lo. OS _user_name, ao. object_name, lo. locked_mode from v $ locked_object lo, dba_objects ao, v $ session sess where ao. object_id = lo. object_id and lo. session_id = sess. sid;

Then, find different users in the query results, and execute the following statement to kill unnecessary users.

Alter system kill session 'sid, seria # ', where sid and seria # are redundant users

Finally, execute the SQL statement first. If no query result exists, the solution is completed.

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.