【ASM学习】关于 ASM 的隐含参数

简介: select  a.ksppinm  "Parameter",  a.ksppdesc "Description", b.ksppstvl "Session Value",c.
select 
a.ksppinm  "Parameter", 
a.ksppdesc "Description",
b.ksppstvl "Session Value",
c.ksppstvl "Instance Value"
from
x$ksppi a,
x$ksppcv b,
x$ksppsv c
where
a.indx = b.indx
and a.indx = c.indx
and a.ksppinm like '%asm%' escape '\'
order by 1
/

Parameter                                  Description                    Session Va Instance V
------------------------------------- ------------------------------ ---------- ----------
_asm_acd_chunks                       initial ACD chunks created     1          1
_asm_allow_only_raw_disks             Discovery only raw devices     TRUE       TRUE
_asm_allow_resilver_corruption        Enable disk resilvering for    FALSE      FALSE
                                                                   external redundancy

_asm_ausize                           allocation unit size           1048576    1048576
_asm_blksize                          metadata block size            4096       4096
_asm_disk_repair_time                 seconds to wait before         14400      14400
                                                            dropping a failing disk

_asm_droptimeout                      timeout before offlined disks  60         60
                                                          get dropped (in 3s ticks)

_asm_emulmax                          max number of concurrent disks 10000      10000
                                                        to emulate I/O errors

_asm_emultimeout                      timeout before emulation       0          0
                                                           begins (in 3s ticks)

_asm_kfdpevent                        KFDP event                     0          0
_asm_libraries                         library search order for       ufs        ufs
                                                      discovery

_asm_maxio                            Maximum size of individual I/O 1048576    1048576
                                                    request

_asm_stripesize                       ASM file stripe size           131072     131072
_asm_stripewidth                      ASM file stripe width          8          8
_asm_wait_time                        Max/imum time to wait before   18         18
                                                      asmb exits

_asmlib_test                          Osmlib test event              0          0
_asmsid                                 ASM instance id                asm        asm
asm_diskgroups                        disk groups to mount           MY_DG1, MY MY_DG1, MY
                                                          automatically                  _DG2       _DG2

asm_diskstring                        disk set locations for
                                                       discovery

asm_power_limit                       number of processes for disk   1          1
                                                       rebalancing


20 rows selected.

目录
相关文章
|
Linux
Linux内核源码(asm/atomic.h)学习
版权声明:您好,转载请留下本人博客的地址,谢谢 https://blog.csdn.net/hongbochen1223/article/details/49072767 由于现在正...
1808 0
|
Linux
Linux内核源码(asm/bitops/atomic.h)学习
版权声明:您好,转载请留下本人博客的地址,谢谢 https://blog.csdn.net/hongbochen1223/article/details/49076763 在之前的一...
973 0
|
Oracle 关系型数据库 数据库
|
存储 Oracle 关系型数据库
【ASM学习】ASM文档
在深入介绍ASM的复杂内容之前,首先需要感谢Oracle公司的Nitin Vengurlekar,他负责编写了本章中关于ASM的优秀补充内容。    在Oracle Database 10g Release 2中,使用自动存储管理(Automatic Storage Management,ASM)极大地简化了数据库的存储管理和配置。
1269 0
【ASM学习】ASM参数说明
asm_diskgroups :此值是 ASM 在启动时或使用 ALTER DISKGROUP ALL MOUNT 命令时装载的磁盘组名称的列表。 asm_diskstring : 一个逗号分隔的路径列表, ASM 用来限制当磁盘组中添加新磁盘时要搜索的一组磁盘。
1098 0
|
SQL Oracle 前端开发
【ASM学习】在windows 环境下创建ASM实例
一【如何在window环境下创建ASM实例】第一步 使用asmtool 创建 asm Microsoft Windows [版本 5.2.3790](C) 版权所有 1985-2003 Microsoft Corp.
1107 0