- 浏览: 6985 次
- 性别:
- 来自: 深圳
最新评论
文章列表
ORACLE怎么实现表锁定
oracle9i使用两种锁模式:.独占模式(排他):不允许其他任何并发会话以任何方式共享锁定的资源,修改数据时需要这种锁。.共享模式:允许对同一块数据的并发读访问。在更改数据时,上升为独占模式
insert delete update 隐试锁
select * from tableName for update 显示锁lock table tableName in share mode;
打开物理模型,点击菜单“Tools->Execute Commands -> Edit/Run Script...",或者快捷键(Ctrl+Shift+X)执行下面vbscript脚本
Option Explicit
ValidationMode = True
InteractiveMode = im_Batch
Dim mdl ' the current model
' get the current active model
Set mdl = ActiveModel
If (mdl Is Nothing) Then
MsgBox "There i ...