Measure the average read time of a single database block for hardware.

Hi,
how to Measure the average read time of a single database block for hardware ?
Many thanks.

Hi,
A STATSPACK report has data file level I/O tunings, but they include buffered reads, so they are biased.
Try this in 9i:
http://www.dba-oracle.com/oracle_tips_cost_adj.htm
select
a.average_wait c1,
b.average_wait c2,
a.total_waits /(a.total_waits + b.total_waits)*100 c3,
b.total_waits /(a.total_waits + b.total_waits)*100 c4,
(b.average_wait / a.average_wait)*100 c5
from
v$system_event a,
v$system_event b
where
a.event = 'db file scattered read'
and
b.event = 'db file sequential read';
Or this, in 10g:
col c1 heading 'Average Waits for|Full Scan Read I/O' format 9999.999
col c2 heading 'Average Waits for|Index Read I/O' format 9999.999
col c3 heading 'Percent of| I/O Waits|for scattered|Full Scans' format 9.99
col c4 heading 'Percent of| I/O Waits|for sequential|Index Scans' format 9.99
col c5 heading 'Starting|Value|for|optimizer|index|cost|adj' format 999
select
sum(a.time_waited_micro)/sum(a.total_waits)/1000000 c1,
sum(b.time_waited_micro)/sum(b.total_waits)/1000000 c2,
sum(a.total_waits) /
sum(a.total_waits + b.total_waits)
) * 100 c3,
sum(b.total_waits) /
sum(a.total_waits + b.total_waits)
) * 100 c4,
sum(b.time_waited_micro) /
sum(b.total_waits)) /
(sum(a.time_waited_micro)/sum(a.total_waits)
) * 100 c5
from
dba_hist_system_event a,
dba_hist_system_event b
where
a.snap_id = b.snap_id
and
a.event_name = 'db file scattered read'
and
b.event_name = 'db file sequential read';

Similar Messages

  • For the first time, I downloaded a podcast in the podcast app by clicking on the cloud icon. Now, every single play button for all of my podcast episodes is grayed out. Why can't I play any of my podcasts any more?

    For the first time, I downloaded a podcast in the podcast app by clicking on the cloud icon. Now, every single play button for all of my podcast episodes is grayed out. Why can't I play any of my podcasts any more?

    Greetings Heather,
    After reading your post, it sounds like you are experiencing an error with the Podcasts app. You may want to consider restarting the device first, and then resetting if that does not work. This article provides detailed instructions for Restarting, and Reseting:
    Turn your iOS device off and on (restart) and reset
    How to restart
    Press and hold the Sleep/Wake button on the top of your device until the red slider appears. Then drag the slider to turn your device completely off.
    After the device turns off, press and hold the Sleep/Wake button again until you see the Apple logo.
    How to reset
    You should reset your device as a last resort and only if you can't restart it.
    To reset, press and hold both the Sleep/Wake and Home buttons for at least 10 seconds, until you see the Apple logo.
    Thank you for contributing to Apple Support Communities,
    BobbyD

  • How to measure the Data setup time

    I want to do a SPI timing AC characteristics.
    I use labview capture a frame of SPI data package from a oscilloscope and display in a waveform Graph.
    Lead time, Data setup time, data hold time... should be measured.
    So, what is the next  step should i do?
    Thanks

    Thank you, asastet.
    I test the SPI module of a MCU. I have download a code to init the SPI and transfer a data package continuously.
    The 4 channels of oscilloscope connected with SS, CLK, MOSI, MISO.
    In labview, I capture a frame of SPI data package from oscilloscope and display in waveform graph control.
    My project will automatically measure the data setup time and data hold time according CLK vs. MOSI.
    Thanks.

  • GETTING THE AVERAGE OF TIME

    Hi,I have the following code which returns day of week name, position and date and time of surgeries.
    SELECT
    DATENAME(WEEKDAY,OPE_START_TIME) AS DOW,
    [OPE_ORDER_IN_SESS_ASC] AS POSITION,
    OPE_START_TIME AS [TIME]
    FROM table1The data looks like thisHow can i group this data so I get the average start time by day of week and position?

    try this
    \declare @table table(c1 varchar(20),c2 int,c3 datetime2(0))
    insert into @table
    values('monday',1,'2015-04-29 02:09:42')
    ,('monday',1,'2015-04-29 02:05:42'),
    ('tuesday',1,'2015-04-29 02:59:42')
    ,('tuesday',2,'2015-04-29 02:55:42')
    ;with cte as (select avg(datepart(second,c3)+((datepart(minute,c3)+(datepart(hour,c3)*60))*60)) as c3
    ,c2,c1 from @table
    group by c1,c2)
    select right('0'+cast(c3/3600 as varchar),2)+':'+right('0'+cast((c3%3600)/60 as varchar),2)
    +':'+right('0'+cast((c3%3600)%60 as varchar),2) as [AvgTime],c2,c1 from cte
    Hope it Helps!!

  • I have a problem sending mail via smtp. I use a satellite system and the average return time for a ping is 675ms. Is this a problem with mail? If so can I change Mail to accept it. The problem also exists with Lion

    I have a problem sending mail via smtp. I use a satellite system and the average return time for a ping is 675ms. Is this a problem with mail? If so can I change Mail to accept it. The problem also exists with Lion and on both my MacPro and my wife's Imac. I also see my mailboxes randomly disconnecting and reconnecting. Any other ideas of a possible cause?

    I solved it myself, after the "note" which came back from FF/Mozilla just as I finished my message, commenting on what it was that my system had , I wnnt back to check my plug-ins etc. I downloaded the latest Java, BOTH 32bit AND 64 bit versions and latest Firefox.
    Now all is working.
    Thanks,
    B.

  • The Average Wait Time of SQL instance "CONFIGMGRSEC" on computer " SEC_SITE_SERVER " is too high

    I have a SCCM 2012 SP1 CU4 environment with SCOM monitoring installed.
    I also do have 4 secondary sites installed below my primary. The secondaries are using SQL 2012 Express version default deployed using the secondary site installation.
    My SCOM monitoring is generating tickets with the following message:
    The Average Wait Time of SQL instance "CONFIGMGRSEC" on computer "<SEC_SITE_SERVER>" is too high
    How can i solve this ? Or do I need to ignore this ?

    Never ignore messages, but tune them.
    In this specific case you might want to take a look at this:
    http://social.technet.microsoft.com/Forums/en-US/ffeefe0d-0ef7-49a3-862e-9be27989dc5d/scom2012-alert-sql-2008-db-average-wait-time-recompilationis-too-high?forum=operationsmanagergeneral
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • How to check the date and time when a material is blocked

    Hello,
       Please tell me how can i check the date and time when a material is blocked or unblocked.
    Regards,
    Priyanka

    Hi Pryianka,
    Are you speaking about blocked status of material master ('X-plant matl status' > MM03 > Basioc view 1; 'Plant-sp. matl status' > MM03 > MRP 1) or your problem is to find out the date when your material was booked into blocked state (stock category).
    If your problem is about mmr you can use the above mentioned MM04 (or MM03 > menu > Environment > Display changes).
    If your problem is to find out when your goods were posted to blocked stock you have to use MB51 + relevant movement types (e.g. 103, 344) + batch + etc. ()
    BR
    Csaba

  • About the Average Connection Times

    Hi, guys
    Has anyone tested the connection time about the OCCI?
    we can compute the average time in the following way:
    -----------------------------------------------------------------------------timeStart
    env->createConnection(userID, userPwd, conStr)
    -----------------------------------------------------------------------------timeEnd
    On my test, the time took about 0.115s to connect to the Oracle Database 10g.
    what about urs?
    Thank you!

    Thanks andreister,
    well, i did my test on the same machine, and i just created a database connection. As to the average time, i put the function in the sys/time.h to get the current time of the system just before and after the createConnection interface, respectively getting the timeStart and timeEnd.
    So the average time i got should be the time the interface createConnection tooks.

  • How much is the average standy time of your iphone4s? Mine is 11 hours ONLY!

    How much is the average stand by time of your Iphone 4s? Mine is 11 hours ONLY. I think this is not normal.

    Please search this forum before posting.  Your issue has been addressed in hundreds of posts already.  Either use the search box at the upper right hand corner, or look in the "More Like This" box immediately to your right.

  • Measure the communicat​ing time between LabView send out commands and response of instrument

    I send a command to a function generator(SRS DS345)using "GPIB Write" via GPIB,to change the frequency of output.And I would like to to measure the time between
    initially send out commands and actual response of instrument(frequency change).I have designed a program which contains three sequences,the 2nd one contains "GPIB Write",and the 1st and the 3rd contain "Tick count",then subtract the latter from first one.I think this is not the time that I want...
    What should I do ?
    Thanks!!

    If want a more precise and NIST-traceable method of timing a portion of your LabVIEW code. The below VI uses two counters on an E-Series or NI-TIO based device to complete this task.
    Download the attached VI and replace the for loop (EVENT TO TIME) with your VI or code.
    This example uses the maximum timebase of your device as the source for "simple event counting". Due to counter roll-over, two counters are used in order to be able to time events of short or very long duration. See VI Documentation for more information.
    Attachments:
    Time_With_Counters_(LV61).vi ‏199 KB

  • Why did the latest update (31.1.2) delete database files for primary email account in profile?

    After restarting TB to apply the 31.1.2 update, all of the database files for my primary email account were apparently deleted. Restarting TB again got it to start syncing with the IMAP server again, but it has to download around 100,000 messages again because of this. Was this a design decision or is there a problem with the update itself? And why did it only affect my primary email account and leave the other 4 (much smaller ones) unscathed?

    1. Norton Internet Security 21.5.0.19
    2. Application Basics
    Name: Thunderbird
    Version: 31.1.2
    User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2
    Profile Folder: Show Folder
    (Local drive)
    Application Build ID: 20140923203151
    Enabled Plugins: about:plugins
    Build Configuration: about:buildconfig
    Memory Use: about:memory
    Mail and News Accounts
    account1:
    INCOMING: account1, , (imap) imap.googlemail.com:993, SSL, passwordCleartext
    OUTGOING: smtp.googlemail.com:465, SSL, passwordCleartext, true
    account2:
    INCOMING: account2, , (none) Local Folders, plain, passwordCleartext
    account3:
    INCOMING: account3, , (imap) imap.googlemail.com:993, SSL, passwordCleartext
    OUTGOING: smtp.googlemail.com:465, SSL, passwordCleartext, true
    account4:
    INCOMING: account4, , (imap) imap.mail.yahoo.com:993, SSL, passwordCleartext
    OUTGOING: smtp.mail.yahoo.com:465, SSL, passwordCleartext, true
    account5:
    INCOMING: account5, , (imap) imap-mail.outlook.com:993, SSL, passwordCleartext
    OUTGOING: smtp-mail.outlook.com:587, alwaysSTARTTLS, passwordCleartext, true
    account6:
    INCOMING: account6, , (imap) mail.centurylink.net:143, alwaysSTARTTLS, passwordCleartext
    OUTGOING: smtp.centurylink.net:587, alwaysSTARTTLS, passwordCleartext, true
    Crash Reports
    http://crash-stats.mozilla.com/report/index/bp-ef9e8cc4-d975-4a65-8417-652332140926 (9/25/2014)
    Extensions
    Important Modified Preferences
    Name: Value
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.disk.smart_size_cached_value: 358400
    extensions.lastAppVersion: 31.1.2
    font.internaluseonly.changed: false
    font.name.monospace.el: Consolas
    font.name.monospace.tr: Consolas
    font.name.monospace.x-baltic: Consolas
    font.name.monospace.x-central-euro: Consolas
    font.name.monospace.x-cyrillic: Consolas
    font.name.monospace.x-unicode: Consolas
    font.name.monospace.x-western: Consolas
    font.name.sans-serif.el: Calibri
    font.name.sans-serif.tr: Calibri
    font.name.sans-serif.x-baltic: Calibri
    font.name.sans-serif.x-central-euro: Calibri
    font.name.sans-serif.x-cyrillic: Calibri
    font.name.sans-serif.x-unicode: Calibri
    font.name.sans-serif.x-western: Calibri
    font.name.serif.el: Cambria
    font.name.serif.tr: Cambria
    font.name.serif.x-baltic: Cambria
    font.name.serif.x-central-euro: Cambria
    font.name.serif.x-cyrillic: Cambria
    font.name.serif.x-unicode: Cambria
    font.name.serif.x-western: Cambria
    font.size.fixed.el: 14
    font.size.fixed.tr: 14
    font.size.fixed.x-baltic: 14
    font.size.fixed.x-central-euro: 14
    font.size.fixed.x-cyrillic: 14
    font.size.fixed.x-unicode: 14
    font.size.fixed.x-western: 14
    font.size.variable.el: 17
    font.size.variable.tr: 17
    font.size.variable.x-baltic: 17
    font.size.variable.x-central-euro: 17
    font.size.variable.x-cyrillic: 17
    font.size.variable.x-unicode: 17
    font.size.variable.x-western: 17
    gfx.direct3d.last_used_feature_level_idx: 0
    mail.openMessageBehavior.version: 1
    mail.winsearch.firstRunDone: true
    mailnews.database.global.datastore.id: 0bb49554-fa41-4ecf-af58-17c0753468e
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1411474192
    places.history.expiration.transient_current_max_pages: 104858
    plugin.importedState: true
    print.printer_Brother_HL-2270DW_series.print_bgcolor: false
    print.printer_Brother_HL-2270DW_series.print_bgimages: false
    print.printer_Brother_HL-2270DW_series.print_colorspace:
    print.printer_Brother_HL-2270DW_series.print_command:
    print.printer_Brother_HL-2270DW_series.print_downloadfonts: false
    print.printer_Brother_HL-2270DW_series.print_duplex: 0
    print.printer_Brother_HL-2270DW_series.print_edge_bottom: 0
    print.printer_Brother_HL-2270DW_series.print_edge_left: 0
    print.printer_Brother_HL-2270DW_series.print_edge_right: 0
    print.printer_Brother_HL-2270DW_series.print_edge_top: 0
    print.printer_Brother_HL-2270DW_series.print_evenpages: true
    print.printer_Brother_HL-2270DW_series.print_footercenter:
    print.printer_Brother_HL-2270DW_series.print_footerleft: &PT
    print.printer_Brother_HL-2270DW_series.print_footerright: &D
    print.printer_Brother_HL-2270DW_series.print_headercenter:
    print.printer_Brother_HL-2270DW_series.print_headerleft:
    print.printer_Brother_HL-2270DW_series.print_headerright:
    print.printer_Brother_HL-2270DW_series.print_in_color: true
    print.printer_Brother_HL-2270DW_series.print_margin_bottom: 0.5
    print.printer_Brother_HL-2270DW_series.print_margin_left: 0.5
    print.printer_Brother_HL-2270DW_series.print_margin_right: 0.5
    print.printer_Brother_HL-2270DW_series.print_margin_top: 0.5
    print.printer_Brother_HL-2270DW_series.print_oddpages: true
    print.printer_Brother_HL-2270DW_series.print_orientation: 0
    print.printer_Brother_HL-2270DW_series.print_page_delay: 50
    print.printer_Brother_HL-2270DW_series.print_paper_data: 1
    print.printer_Brother_HL-2270DW_series.print_paper_height: 11.00
    print.printer_Brother_HL-2270DW_series.print_paper_name:
    print.printer_Brother_HL-2270DW_series.print_paper_size_type: 0
    print.printer_Brother_HL-2270DW_series.print_paper_size_unit: 0
    print.printer_Brother_HL-2270DW_series.print_paper_width: 8.50
    print.printer_Brother_HL-2270DW_series.print_plex_name:
    print.printer_Brother_HL-2270DW_series.print_resolution: 0
    print.printer_Brother_HL-2270DW_series.print_resolution_name:
    print.printer_Brother_HL-2270DW_series.print_reversed: false
    print.printer_Brother_HL-2270DW_series.print_scaling: 1.00
    print.printer_Brother_HL-2270DW_series.print_shrink_to_fit: true
    print.printer_Brother_HL-2270DW_series.print_to_file: false
    print.printer_Brother_HL-2270DW_series.print_unwriteable_margin_bottom: 0
    print.printer_Brother_HL-2270DW_series.print_unwriteable_margin_left: 0
    print.printer_Brother_HL-2270DW_series.print_unwriteable_margin_right: 0
    print.printer_Brother_HL-2270DW_series.print_unwriteable_margin_top: 0
    Graphics
    Adapter Description: NVIDIA GeForce GTX 560
    Vendor ID: 0x10de
    Device ID: 0x1201
    Adapter RAM: 1024
    Adapter Drivers: nvd3dumx,nvwgf2umx,nvwgf2umx nvd3dum,nvwgf2um,nvwgf2um
    Driver Version: 9.18.13.4052
    Driver Date: 7-2-2014
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.2.9200.16492)
    ClearType Parameters: ClearType parameters not found
    WebGL Renderer: false
    GPU Accelerated Windows: 2/2 Direct3D 10
    AzureCanvasBackend: direct2d
    AzureSkiaAccelerated: 0
    AzureFallbackCanvasBackend: cairo
    AzureContentBackend: direct2d
    JavaScript
    Incremental GC: 1
    Accessibility
    Activated: 0
    Prevent Accessibility: 0
    Library Versions
    Expected minimum version
    Version in use
    NSPR
    4.10.6
    4.10.6
    NSS
    3.16.2.1 Basic ECC
    3.16.2.1 Basic ECC
    NSS Util
    3.16.2.1
    3.16.2.1
    NSS SSL
    3.16.2.1 Basic ECC
    3.16.2.1 Basic ECC
    NSS S/MIME
    3.16.2.1 Basic ECC
    3.16.2.1 Basic ECC
    Account5 is the one affected which is still attempting to sync. It also appears that my sync choices were altered without permission or notification. I always keep the Deleted folder and the POP subfolder from Hotmail accounts disabled since it is merely duplicating content in other folders. When re-checking the sync settings because it was taking so long, I found that the POP subfoler was selected for sync again.
    The crash report is from a later TB crash, the first one ever on this system.
    3. Windows 7 Ultimate Signature Edition, Cox Communications (shouldn't matter whatsoever), the affected account is Hotmail/Outlook.com, unaffected accounts: 2 GMail, 1 Yahoo, 1 CenturyLink

  • Whats the average charging time for the ipad air?

    just charged a new ipad air for the first time and it took 11 hours, is that normal???

    You can increase the speed of the charge if you turn off all Blue Tooth and Wi-fy and leave it in Air plane mode. It really made a huge difference in my charging time, even if I was reading a book on it. If you don't need Blue Tooth leave it off.

  • When I try to select text from pdf-documents the pdf reader cannot select a single line.

    When I try to select the text from a pdf file instead of selecting a line, the paragraph gets selected. The document does not have any document restrictions, and the text is not in an object form. Any reason why I am not able to select the text.

    Hi,
    Which 'Documents' folder are you referring to?
    A screenshot of the issue would be more helpful for me to understand the issue.
    Regards,
    Florence

  • HT203433 I had a big gift card on itunes, and I downloaded a song but when I got my reciept it said I downloaded the song 3 times, and it kept doing that for EACH download I did, I went from a 20$ giftcard to zero in a bout just a few downloads, I have no

    I logged into my Ipod touch 5 gen just to download sometime I already downloaded. My brother did some purchases on the Ipod, ( using my account) I kept getting emails on my phone saying an item was downloaded 3 times, so I kept getting multiple charges for each item. I do not know how that happend, because the credit ran out super super quick, and we didn't even download that much, why did it say I got multiple downloads.

    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • Average Response Times for a Reports Server

    On Application Server Control and Grid Control are sections listing the Average Response Time in milliseconds.
    Can anyone tell me what response it is measuring exactly?
    Thanks
    Andy

    See the Online Help for the page for a description of the metric. In Help, you can search for "metric" to see definitions of the other metrics.

Maybe you are looking for

  • Where are the epson drivers for Mavericks for the artisan 835

    Where are the epson drivers for Mavericks for the artisan 835

  • I am not able to see "Edit Mode on" when i log into workspace...

    I am not able to see "Edit Mode on" when i log into workspace...through Weblogic user...Oracle BPM 11g

  • How to call a C program in java?

    I would like to call a C program (which does not return anything back to the Java program) from a Java class? Or is there any simple example just to do such a task online? Thanks.

  • Form - Insert only if not a duplicate

    Hi, In Oracle Portal I have a form that submit data to a table. I only want the information to be inserted if the table doesn't already contain that email address that the user has types into the form. In the additional PL/SQL code I added the follow

  • DVC PRO HD Question

    I just shot a music video with a varicam and edited it in FCP 5. How do I make a dvd for the client while retaining the quality of the footage. I know I'm not gonna have an HD dvd, but how would I keep it looking the best it can look. Exporting in wh