- 最后登录
- 2013-10-16
- 在线时间
- 58 小时
- 威望
- 94
- 金钱
- 731
- 注册时间
- 2012-4-11
- 阅读权限
- 50
- 帖子
- 71
- 精华
- 1
- 积分
- 94
- UID
- 341
|
1#
发表于 2012-7-26 15:18:22
|
查看: 3886 |
回复: 1
diskgroup DATA1 有1块磁盘,使用了2591M 也就是2591 AUs
ASMCMD> lsdg
State Type Rebal Sector Block AU Total_MB Free_MB Req_mir_free_MB Usable_file_MB Offline_disks Voting_files Name
MOUNTED EXTERN N 512 4096 1048576 10236 7645 0 7645 0 N DATA1/
通过查看x$kffxp
select count(disk_kffxp) extents from x$kffxp where group_kffxp=1;
EXTENTS
----------
2589
发现比ASMCMD里面查看到的少了2 AUs.
查看了下AU 0-2
SQL> select NUMBER_KFFXP,DISK_KFFXP from x$kffxp where GROUP_KFFXP=1 and AU_KFFXP=0;
no rows selected
SQL> select NUMBER_KFFXP,DISK_KFFXP from x$kffxp where GROUP_KFFXP=1 and AU_KFFXP=1;
no rows selected
SQL> select NUMBER_KFFXP,DISK_KFFXP from x$kffxp where GROUP_KFFXP=1 and AU_KFFXP=2;
NUMBER_KFFXP DISK_KFFXP
------------ ----------
3 3
AU 0和1 好像不用来存放ASM file.
AU 0的0 block和AU 1的倒数第2个 block用来存放磁盘头信息,那其他block用来存放什么呢? |
|