Oracle数据库数据恢复、性能优化

找回密码
注册
搜索
热搜: 活动 交友 discuz
发新帖

316

积分

0

好友

0

主题
1#
发表于 2012-7-18 10:09:56 | 查看: 5731| 回复: 2
能否解释下参数dml_locks,最好带测试例子

http://docs.oracle.com/cd/E11882_01/server.112/e25513/initparams081.htm#REFRN10051
2#
发表于 2012-7-18 11:37:55
看到一个DBA 上来就把这个参数改的很大,我瞬间迷惑了~

希望找到了正确答案:
http://asktom.oracle.com/pls/ask ... N_ID:25323841260334

you'd have to go back to 8i probably, in 9i and above, it is sort of a "soft limit" used by
monitoring tools to show when you are near this "soft limit".  They are dynamically allocated in
the SGA as needed (or as space is available to do so)

http://www.itpub.net/thread-897287-1-1.html

dml_locks 设置为非0 的值,都是无效了,按需分配,无上限

回复 只看该作者 道具 举报

3#
发表于 2012-7-23 21:36:35

回复 2# 的帖子

8i service internal 对该参数有很具体的说明:

The requirements of dictionary locking for transactions and, in particular, the
maintenance of a history of lock conversions, is provided by DML locks in
conjunction with TM enqueues. Every transaction holding a DML lock also holds
a TM enqueue lock. The basic locking functionality is provided by the enqueue,
and the DML lock adds the maintenance of the conversion history.
The fixed array of DML lock structures is sized by the DML_LOCKS parameter.
Its free list is protected by the dml lock allocation latch , and the active slots are
visible in V$LOCKED_OBJECT . As with enqueue resources and locks, the
number of slots in the DML locks fixed array is unimportant to performance, as
long as you don't run out of free slots and get an ORA-55 error. Once again,
V$RESOURCE_LIMIT can be used to adjust your setting for DML_LOCKS to
ensure that this does not happen. Each slot only takes on the order of 116 bytes,
so having a generous number of slots is not a problem.


你可以理解DML LOCK为  TM enqueue lock


SQL> show parameter dml_lock

NAME                                 TYPE                             VALUE
------------------------------------ -------------------------------- ------------------------------
dml_locks                            integer                          748


SQL> select * from v$resource_limit;

RESOURCE_NAME                  CURRENT_UTILIZATION MAX_UTILIZATION INITIAL_ALLOCATION                       LIMIT_VALUE
------------------------------ ------------------- --------------- ---------------------------------------- ----------------------------------------
processes                                       24              27        150                                      150
sessions                                        28              31        170                                      170
enqueue_locks                                   22              30       2300                                     2300
enqueue_resources                               22              45        968                                UNLIMITED
ges_procs                                        0               0          0                                        0
ges_ress                                         0               0          0                                UNLIMITED
ges_locks                                        0               0          0                                UNLIMITED
ges_cache_ress                                   0               0          0                                UNLIMITED
ges_reg_msgs                                     0               0          0                                UNLIMITED
ges_big_msgs                                     0               0          0                                UNLIMITED
ges_rsv_msgs                                     0               0          0                                        0
gcs_resources                                    0               0          0                                        0
gcs_shadows                                      0               0          0                                        0
dml_locks                                        0              50        748                                UNLIMITED
temporary_table_locks                            0               0  UNLIMITED                                UNLIMITED
transactions                                     0               4        187                                UNLIMITED
branches                                         0               0        187                                UNLIMITED
cmtcallbk                                        0               1        187                                UNLIMITED
sort_segment_locks                               0               1  UNLIMITED                                UNLIMITED
max_rollback_segments                           11              11        187                                    65535
max_shared_servers                               1               1  UNLIMITED                                UNLIMITED
parallel_max_servers                             0               2         40                                     3600

22 rows selected.



SQL> alter system set dml_locks=0 scope=spfile;

System altered.

SQL> startup force;
ORACLE instance started.

Total System Global Area 1048576000 bytes
Fixed Size                  2101544 bytes
Variable Size             738201304 bytes
Database Buffers          301989888 bytes
Redo Buffers                6283264 bytes
Database mounted.
Database opened.


SQL> select * from v$resource_limit;

RESOURCE_NAME                  CURRENT_UTILIZATION MAX_UTILIZATION INITIAL_ALLOCATION                       LIMIT_VALUE
------------------------------ ------------------- --------------- ---------------------------------------- ----------------------------------------
processes                                       24              25        150                                      150
sessions                                        26              27        170                                      170
enqueue_locks                                   22              28       2300                                     2300
enqueue_resources                               22              22        575                                UNLIMITED
ges_procs                                        0               0          0                                        0
ges_ress                                         0               0          0                                UNLIMITED
ges_locks                                        0               0          0                                UNLIMITED
ges_cache_ress                                   0               0          0                                UNLIMITED
ges_reg_msgs                                     0               0          0                                UNLIMITED
ges_big_msgs                                     0               0          0                                UNLIMITED
ges_rsv_msgs                                     0               0          0                                        0
gcs_resources                                    0               0          0                                        0
gcs_shadows                                      0               0          0                                        0
dml_locks                                        0               0          0                                UNLIMITED
temporary_table_locks                            0               0  UNLIMITED                                UNLIMITED
transactions                                     0               4        187                                UNLIMITED
branches                                         0               0        187                                UNLIMITED
cmtcallbk                                        0               1        187                                UNLIMITED
sort_segment_locks                               0               1  UNLIMITED                                UNLIMITED
max_rollback_segments                           11              11        187                                    65535
max_shared_servers                               1               1  UNLIMITED                                UNLIMITED
parallel_max_servers                             2               2         40                                     3600

22 rows selected.




当DML_LOCKS=0 意味着不能对表做 LOCK或 DDL操作


SQL> lock table tm_test in exclusive mode;
lock table tm_test in exclusive mode
*
ERROR at line 1:
ORA-00062: DML full-table lock cannot be acquired; DML_LOCKS is 0


SQL> alter table tm_test add t2 int;
alter table tm_test add t2 int
*
ERROR at line 1:
ORA-00062: DML full-table lock cannot be acquired; DML_LOCKS is 0




一般 自动控制的DML_LOCKS参数是足够的, 当然需要视乎你的系统的实际业务和表数目

回复 只看该作者 道具 举报

您需要登录后才可以回帖 登录 | 注册

QQ|手机版|Archiver|Oracle数据库数据恢复、性能优化

GMT+8, 2024-11-16 02:54 , Processed in 0.056279 second(s), 21 queries .

Powered by Discuz! X2.5

© 2001-2012 Comsenz Inc.

回顶部
TEL/電話+86 13764045638
Email service@parnassusdata.com
QQ 47079569