question:
select phyrds,phyblkrd from v$filestatanswer1:
quote:
最初由 163er 發(fā)布
select phyrds,phyblkrd from v$filestat
我的理解是
phyrds是物理讀的次數(shù)
phyblkrd是物理讀的block數(shù)answer2:
__________________
托馬斯張MSN:
toms_zrp@hotmail.com我的BLOG:http://tomszrp.
answer3:
PHYRDS : Number of physical reads done
PHYBLKRD: Number of physical blocks readanswer4:
__________________
orcl ,my love.
MSN:feibiao820620@hotmail.com
Email:feibiao1@vip.sina.com
answer5:
為了加深理解,簡單的做了個測試
代碼:
SQL> create table toms (str varchar2(64));
表已創(chuàng)建。
SQL> insert into toms values('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa');
已創(chuàng)建 1 行。
SQL> commit;
提交完成。
SQL> select * from toms;
STR
-----
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
SQL> insert into toms select * from toms;
已創(chuàng)建 1 行。
SQL> /
已創(chuàng)建2行。
SQL> /
已創(chuàng)建4行。
SQL> /
已創(chuàng)建8行。
SQL> /
已創(chuàng)建16行。
SQL> /
已創(chuàng)建32行。
SQL> /
.......
SQL> /
已創(chuàng)建8192行。
SQL> commit;
提交完成。
SQL> select count(*) from toms;
COUNT(*)
----------
16384
SQL> shutdown immediate;
數(shù)據(jù)庫已經(jīng)關(guān)閉。
已經(jīng)卸載數(shù)據(jù)庫。
ORACLE 例程已經(jīng)關(guān)閉。
SQL> startup
ORACLE 例程已經(jīng)啟動。
Total System Global Area 89201304 bytes
Fixed Size 453272 bytes
Variable Size 67108864 bytes
Database Buffers 20971520 bytes
Redo Buffers 667648 bytes
數(shù)據(jù)庫裝載完畢。
數(shù)據(jù)庫已經(jīng)打開。
SQL> alter system set db_file_multiblock_read_count=16;
SQL> select phyrds,phyblkrd from v$filestat where file#=8;
PHYRDS PHYBLKRD
---------- ----------
4 4
SQL> select count(*) from toms;
COUNT(*)
----------
16384
SQL>
SQL> select phyrds,phyblkrd from v$filestat where file#=8;
PHYRDS PHYBLKRD
---------- ----------
17 191
SQL> select 17-4,191-4 from dual;
17-4 191-4
---------- ----------
13 187
SQL> select 187/13 from dual;
187/13
----------
14.3846153
SQL>
SQL> select phyrds,phyblkrd from v$filestat where file#=8;
PHYRDS PHYBLKRD
---------- ----------
17 191
SQL> alter system set db_file_multiblock_read_count=64;
系統(tǒng)已更改。
SQL> select count(*) from toms;
COUNT(*)
----------
16384
SQL>
SQL> select phyrds,phyblkrd from v$filestat where file#=8;
PHYRDS PHYBLKRD
---------- ----------
20 377
SQL> select phyrds,phyblkrd from v$filestat where file#=8;
PHYRDS PHYBLKRD
---------- ----------
20 377
SQL> select (377-191)/3 from dual;
(377-191)/3
-----------
62
SQL> alter system set db_file_multiblock_read_count=128;
系統(tǒng)已更改。
SQL> select count(*) from toms;
COUNT(*)
----------
16384
SQL> select phyrds,phyblkrd from v$filestat where file#=8;
PHYRDS PHYBLKRD
---------- ----------
22 561
SQL> select (561-377)/2 from dual;
(561-377)/2
-----------
92
SQL>
answer6:
__________________
托馬斯張
MSN:toms_zrp@hotmail.com我的BLOG:http://tomszrp.
answer7:
翻書:DBA Reference
answer8:
__________________
Mail:seaman.ning#gmail.com
MSN:seaman_ning#msn.com
http://NinGoo.
Oracle文檔 | AskTom | Metalink | Ixoraanswer9:
toms 4樓的回復真是不錯啊。
answer10:
__________________
我懶但想學習
過了大半個月才發(fā)現(xiàn)的bloganswer11:
quote:
最初由 NinGoo 發(fā)布
翻書:DBA Reference
我對上帝說,我要DBA Reference ,于是DBA Reference 就有了