Home > Database > Mysql Tutorial > Oracle开发中的数据被锁定的问题

Oracle开发中的数据被锁定的问题

WBOY
Release: 2016-06-07 17:22:26
Original
969 people have browsed it

Oracle开发工具PL/SQL,是Oracle开发和使用的利器,同时Oracle的使用是面向用户的,一个用户角色可能同时被多个人同时使用着。在小

Oracle开发工具PL/SQL,是Oracle开发和使用的利器,同时Oracle的使用是面向用户的,一个用户角色可能同时被多个人同时使用着。在小组开发中是很常见的。在对数据的操作上,比如更新Update、添加Insert、删除Delete操作是按照事务的原理来的,对数据做出以上操作后必须Commit提交,不提交的话,该事务没有完成,如果其他使用者也想修改或其他操作该数据时,就会等待事务的完成才会有反馈结果。

也就是说上诉数据会被锁定状态,当程序中调用该数据的操作时就会等待,等待该数据的解锁,等待中不会有响应时长时间还会死机。

因此,在使用Oracle数据库操作数据时,应该及时commit,,完成数据的事务操作,及时释放掉关键数据。

linux

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template