Using getPixelLocationInImagePlate, how calculate the z axis?

getPixelLocationInImagePlate
this method return the x, y in 3d, but the z axis not found...
how discovery the z axis?
(sorry for the bad english)

Hello,
I don't have LV 7 installed so I can't post the VI sorry.. here's the short answer to your question, you have to use property and method nodes from the ActiveX palette (see screen shot), item 0 is scale X, item 1 is scale Y and item 2 is scale Z.
More generally there are loads of threads dedicated to 3D graph issues, just do a forum search .
Hope this helps
When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

Similar Messages

  • When using FMLE how does the DVR auto record functionality work?

    Hi,
    Im using FMLE to send a live stream to my FMS. I check marked DVR Auto Record on it. But I am uncertain if its recording, for how long its recording, and whether I can control this functionality though my FLASH application. Do I edit an xml file in FMS directory to manage where the file is recorded to and for how long its recorded? Can actionscript from a FLASH app in the webroot dir access this file and play it back then return to the live stream? Has anyone found a tutorial on these matters.
    I appreciate the help, thank you.

    Check this articles - they should guide you:
    http://www.adobe.com/devnet/flashmediaserver/articles/live_dvr_pt1.html
    http://www.adobe.com/devnet/flashmediaserver/articles/live_dvr_pt2.html
    http://www.adobe.com/devnet/flashmediaserver/articles/live_dynstream_dvr.html

  • How calculate the percentage of area...

    Hi,
    I have 4 tables:
    Tab AREA_TI
    LS_ID          FL     AREA
    EMS00046     P01     2.995,09
    EMS00046     P02     0,78
    EMS00046     PTE     1.435,48
    EMS00046     S01     1.684,80
    EMS00046     S02     1.694,12
    EMS00050     P01     1.111,60
    EMS00050     P02     1.054,16
    EMS00050     P03     1.117,05
    EMS00050     P04     1.087,24
    EMS00050     P05     1.117,85
    EMS00050     P06     646,99
    EMS00050     P07     249,48
    EMS00050     PTE     593,35
    EMS00050     S01     91,15
    EMS00011     P02     446,90
    EMS00021     PTE     0,71SUM AREA_TI is:
    LS_ID          SUM(AREA)
    EMS00011     446,90
    EMS00021     0,71
    EMS00046     7.810
    EMS00050     7.068Tab AREA_T0
    LS_ID          FL     AREA
    EMS00046     PTE     15,48
    EMS00050     PTE     15,33
    00001156     P01     3.379,82
    00001156     P02     3.731,25
    00001156     P03     2.686,88
    00001156     PTE     2.279,49
    00001156     S01     7.341,05SUM AREA_T0 is:
    LS_ID          SUM(AREA)
    00001156     19.418
    EMS00046     15,48
    EMS00050     15,33Tab AREA_FI
    LS_ID          FL     AREA
    04600411     P01     785,64
    04600411     P02     829,72
    04600411     P03     832,36
    04600411     PCO     11,88
    04600411     PTE     473,91
    04600411     S01     1.740,42SUM AREA_FI is:
    LS_ID          SUM(AREA)
    04600411     4.673Tab AREA_EM
    LS_ID          FL     AREA
    00307374     P01     4.269,59
    00307374     P02     8.362,79
    00307374     P03     770,96
    00307374     PTE     7.292,11
    00307374     S01     1.425,90
    00602037     P01     3.364,47
    00602037     PTE     9.764,71
    00602037     S01     75,17SUM AREA_EM is:
    LS_ID          SUM(AREA)
    00307374     22.121
    00602037     13.204I'd like to get these results:
    LS_ID      AREA_TI AREA_T0 AREA_FI AREA_EM  AREA_TOT  PERC_T0   PERC_FI  PERC_TI   PERC_EM
    EMS00011  446,90    0     0          0     446,90                          1                       
    EMS00021   0,71     0     0          0     0,71                                1
    EMS00046  7810    15,48   0          0     7825,75  0,00197            0,99803
    EMS00050  7068    15,33   0          0     7083,33  0,00216            0,99784
    00001156   0      19418   0          0     19418        1                                   
    04600411   0        0     4673       0        4673                  1
    00307374   0        0     0       22121    22121                                    1
    00602037   0        0     0       13204    13204                                    1PERC_T0=AREA_T0/AREA_TOT
    PERC_FI=AREA_FI/AREA_TOT
    PERC_TI=AREA_TI/AREA_TOT
    PERC_EM=AREA_EM/AREA_TOT
    I tried this:
    CREATE OR REPLACE VIEW PERC_AREA ( LS_ID,
    AREA_T0, AREA_FI, AREA_EM, AREA_TI,
    AREA_TOT, PERC_T0, PERC_FI, PERC_TI,
    PERC_EM ) AS
    SELECT A.LS_ID,
    SUM(nvl(A.AREA,0)),
    SUM(nvl(B.AREA,0)),
    SUM(nvl(C.AREA,0)),
    SUM(nvl(D.AREA,0)),
    SUM(NVL(A.AREA,0)+NVL(B.AREA,0)+NVL(C.AREA,0)+NVL(D.AREA,0)),
    SUM(A.AREA)/SUM(NVL(A.AREA,0)+NVL(B.AREA,0)+NVL(C.AREA,0)+NVL(D.AREA,0)),
    SUM(B.AREA)/SUM(NVL(A.AREA,0)+NVL(B.AREA,0)+NVL(C.AREA,0)+NVL(D.AREA,0)),
    SUM(C.AREA)/SUM(NVL(A.AREA,0)+NVL(B.AREA,0)+NVL(C.AREA,0)+NVL(D.AREA,0)),
    SUM(D.AREA)/SUM(NVL(A.AREA,0)+NVL(B.AREA,0)+NVL(C.AREA,0)+NVL(D.AREA,0))
    FROM AREA_T0 A, AREA_FI B,AREA_TI C, AREA_EM D
    WHERE A.LS_ID=B.LS_ID(+)
    AND a.LS_ID=C.LS_ID(+)
    AND a.LS_ID=D.LS_ID(+)
    GROUP BY A.LS_ID
    How can I create a oracle view to get percentage of area FOR ALL LS_ID present in the 4 tables??
    Thanks!!!

    Hi Barbara
    your query seem not correct
    I tried this:
    CREATE OR REPLACE VIEW X ( LS_ID,
    AREA ) AS select ls_id, sum(area_locali) area
    from area_ti
    group by ls_id
    union all
    select ls_id, sum(area) area
    from area_t0
    group by ls_id
    union all
    select ls_id, sum(area) area
    from area_fi
    group by ls_id
    union all
    select ls_id, sum(area) area
    from area_em
    group by ls_id
    create or replace view PERC_AREA
    AS
    select x.ls_id,
    area_ti.sum area_ti,
    area_t0.sum area_t0,
    area_fi.sum area_fi,
    area_em.sum area_em,
    area_tot.sum area_tot,
    area_t0.sum/area_tot.sum perc_t0,
    area_fi.sum/area_tot.sum perc_fi,
    area_ti.sum/area_tot.sum perc_ti,
    area_em.sum/area_tot.sum perc_em,
    round(area_tot.sum*100/area_gen.sum,2) perc_lsid
    from (select distinct ls_id
    from x) x,
    (select ls_id, sum(area) sum
    from area_ti
    group by ls_id) area_ti,
    (select ls_id, sum(area) sum
    from area_t0
    group by ls_id) area_t0,
    (select ls_id, sum(area) sum
    from area_fi
    group by ls_id) area_fi,
    (select ls_id, sum(area) sum
    from area_em
    group by ls_id) area_em,
    (select ls_id, sum(area) sum
    from x
    group by ls_id) area_tot,
    (select sum(area) sum
    from x) area_gen
    where x.ls_id = area_ti.ls_id(+)
    and x.ls_id = area_t0.ls_id(+)
    and x.ls_id = area_fi.ls_id(+)
    and x.ls_id = area_em.ls_id(+)
    and x.ls_id = area_tot.ls_id(+)
    What do you think about solution??

  • How can I use a timestring saved from LV as a csv spreadshee​t file as the x axis of a LV chart?

    I'm saving the timestring portion of a timestamp as HH:MMS  along with each set of data fields to a cvs spreadsheet file, i.e. each row of the file starts with the timestring followed by data in each remaining column. The first row contains data field headings. I can read this file back into LV with no problem and can remove the header row but cannot find a way to use that timestring as the x axis of a chart graph. I have no problem graphing the data in that format within Excel itself. Can anyone help?
    Thanks,
    DennisR

    Check the timestamp indicator, it is trying to write your time-stamp to your time-zone, so you will need to change the time-stamp to universal time. For the time-stamp indicator it is easy enough you just need to edit the indicator to display universal time, however for a purely data sense it is a bit odd, I have never found a straight forward way to do it so I use the conversion between Time in Seconds and Date/Time to do it for me.
    Attachments:
    Time Extract.png ‏21 KB

  • How to calculate the Time difference between 2 dates

    HI All,
    I am using HR_hk_diff_btw_2_dates to calculate the employee service dates.
    For that i  am inputing his hire date and Term dates and Output format as '05' i am getting output perfectly....
    But problem is  whe i am inputting the employee hire date is Dec 1 2007 and Term date is
    March 31 2009 It is coming as 1 year 3 months  31 days instead of 1 year 4 months directly .......How could we make it make last date also working day and get the O/p as 1 year 4 months ?Please Advice..
    Regard
    sas

    1. FM for difference betwwen two times:SCOV_TIME_DIFF
    Import parameters               Value
    IM_DATE1                        2008-01-01
    IM_DATE2                        2008-01-01
    IM_TIME1                        10:00:00
    IM_TIME2                        11:30:00
    Export parameters               Value
    EX_DAYS                         0
    EX_TIME                         01:30:00
    2. SD_CALC_DURATION_FROM_DATETIME : Finds the difference between two date/time and report the difference in hours
    L_MC_TIME_DIFFERENCE : Finds the time difference between two date/time

  • How can I update the x-axis to match a time reading in a waveform chart?

    I am recording data in real time and displaying it in a waveform chart. However, I have yet figured out how scale the x-axis to match the actual time scale of my data. I've played with the accompanying property node but that has not produced the desired result. My guess is that there is a combination of xscale.range.maximum and xscale.multiplier values that need to get updataed in a certain way, but how is still unknown to me. If you could assist I'd appreciate it.

    Nobody has recomended using a Waveform Chart!
    A waveform chart will plot the points based on the "t0" of the waveform.
    The waveform chart will maintain the buffer so all you have to do is apply the new data.
    The "t0"'s of updates from more than one plot do not have to match-up.
    See the attached LV7.0 example and jpg.
    Ben
    Note:
    "t0" values for an individual plot must be increasing values.
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction
    Attachments:
    Wform_Times.vi ‏58 KB
    Wform_Times.JPG ‏102 KB

  • To calculate the Askrate at query level

    Hi alL,
    Requirements is  to calculate the ASKRATE(In query level)  based on :
    Mou Target(Month wise) - Total(daywise:CasthouseMkt targetMOU Target/remaining days of the month.
    Please anybody tell me how to resolve this?
    Thanks,
    Suresh.

    Hi,
    I'm using the Elvis platform to create a sine signal using an Elvis platform and i want to send this signal to the sensors that i have previously mentioned. The sensors independent of any board has a receiving and transmitting sensor each. I want to send the signal to through the transmitting sensor and receive it through the receiving sensor. I wanted to test the sensors to see if it could working first, before using it to detect obstacles and calculating the distance of the obstacle from the sensors. I tried using just the sensors by itself, but it didn't work, so i'm inquiring if you know more about ultrasonic sensors to know if it would working if i added a simple non-inverting amplifier to it.
    The components i am planning on using is the Elvis platform which i am currently using to create the sine signal using the Arbitrary Waveform Generator, and send the signal to the transmitting sensor, receive it with the receiving sensor and view the waveform on LabVIEW. Then i want to use the sensors to detect obstacles and use labview to calculate the distance of the obstacle from the sensor.
    I do not have the HC-SR04 board at hand, but i do have the GH 311. I want to know if it would do with what i have in mine, which i have just stated previously.
    I appreciate your fast response and help with my questions. Look forward to your reply.
    Thank you.

  • How to calculate the volume of data used (PI licensing limit).

    Hi,
    One of our customers has several interfases running on SAP PI. They have a license that allows them the use of PI for a quantity of Gb in message data per month (I think that's the usual way).
    They would like to know how near/far they are of their limint of data, so they would like to know how does SAP evaluate that.
    Does  anybody know wich tool(s) are used by SAP to calculate the volume of data spent in one month?. We would like to launch those tools and get this info (so we can evaluate if we can add new interfases or change the periodicity of existing ones within the limits of the current license).
    Thanks in advance for your help.
    Best Regards
    Rafa

    Hi Mark,
    I have a quick question. The links that you provided gives an idea of the way in which the volume is calculated. This is helpful.
    My question is regarding Auditing and Compliance:
    Client has bought SAP PI licence for certain GB of data per month.
    Can this report be generated automatically classified by SAP and Non SAP Systems (PI licence volume constraints are normally for data exchange for non SAP Systems)?
    Also can this data be measured at Adaptor level? How does one monitor data at Adaptor level.
    Thanks And Regards,
    Maloy

  • How to get Basic salary amount in the Housing formula to calculate the housing value as I used the DBI (NICDP_EMPLOYEE_BASIC_SALARY_AMOUNT_ASG_ENTRY_VALUE) but when run the Quick pay for the housing element alone result come 0, How to get Basic salary amo

    How to get Basic salary amount in the Housing formula to calculate the housing value as I used the DBI (NICDP_EMPLOYEE_BASIC_SALARY_AMOUNT_ASG_ENTRY_VALUE) but when run the Quick pay for the housing element alone result come 0, How to get Basic salary amount in the Housing formula to calculate the housing value as I used the DBI (NICDP_EMPLOYEE_BASIC_SALARY_AMOUNT_ASG_ENTRY_VALUE) but when run the Quick pay for the housing element alone result come 0

    Hi,
    Is your formula attached to basic salary element or some other element? You need to make sure that basic salary element has some value and is processed before this formula is called. Are you able to see value for basic salary element after payroll run?
    Regards,
    Pawan

  • How to use formula variable to calculate the days for a document.

    Hi expert.
    I have a question, I need to calculate how many days it cost for a document, therefore , it should be like this,
    cost days = clearing date - creation date..
    how can I implement this calculated key figure by formula variable..
    Here cost days should be a key figure, but the clearing date and creation date are the characteristics in the document.
    it seems that formula variable by replacement path can not be used, do I have to use the customer exit for this variable ??
    any other good ways to calculate the cost days (beside during the data loading or by virtual key figure).
    I just want to implement this in the query designer..
    Please give a detailed steps if you could,  thanks a lot.

    Hi,
    These steps below are for the query designer in BI 7.0:
    1. First create a Formula in the Columns.
    2. Edit the formula, in the "Available Operands" see for the "Formula Variable".
    3. Right Click on the "Formula Variable" folder and then create a new variable.
    4. Edi the Formula Variable in the edit screen provide the Description and Technical name; select the processing by as Replacement path.
    5. In the reference characteristic select your characteristic "Creation Date".
    6. Save the variable.
    7. Select the variable into the formula and name the formula as Creation Date.
    Repeat the Same steps for the "Clearing Date".
    Then create another formula for the Cost days in which you mention as Clearing date (Formula) - Creation Date (Formula).
    Hope your issue is solved...
    Regards,
    Ravi Kanth

  • [svn:fx-trunk] 10545: Make DataGrid smarter about when and how to calculate the modulefactory for its renderers when using embedded fonts

    Revision: 10545
    Author:   [email protected]
    Date:     2009-09-23 13:33:21 -0700 (Wed, 23 Sep 2009)
    Log Message:
    Make DataGrid smarter about when and how to calculate the modulefactory for its renderers when using embedded fonts
    QE Notes: 2 Mustella tests fail:
    components/DataGrid/DataGrid_HaloSkin/Properties/datagrid_properties_columns_halo datagrid_properties_columns_increase0to1_halo
    components/DataGrid/DataGrid_SparkSkin/Properties/datagrid_properties_columns datagrid_properties_columns_increase0to1
    These fixes get us to measure the embedded fonts correctly when going from 0 columns to a set of columns so rowHeight will be different (and better) in those scenarios
    Doc Notes: None
    Bugs: SDK-15241
    Reviewer: Darrell
    API Change: No
    Is noteworthy for integration: No
    tests: checkintests mustella/browser/DataGrid
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-15241
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/DataGrid.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridBase .as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridColu mn.as

    Hi Matthias,
    Sorry, if this reply seems like a products plug (which it is), but this is really how we solve this software engineering challenge at JKI...
    At JKI, we create VI Packages (which are basically installers for LabVIEW instrument drivers and toolkits) of our reusable code (using the package building capabilities of VIPM Professional).  We keep a VI Package Configuration file (that includes a copy of the actual packages) in each of our project folders (and check it into source code control just as we do for all our project files).  We also use VIPM Enterprise to distribute new VI Packages over the network.
    Also, as others have mentioned, we use the JKI TortoiseSVN Tool to make it easy to use TortoiseSVN directly from LabVIEW.
    Please feel free to contact JKI if you have any specific questions about these products.
    Thanks,
    -Jim 

  • In Report I have a 2D axis system. How do I properly calculate the grid line interval for exactly 10 dots per tick

    Having trouble getting the dots to line up correctly with the ticks of a 2D axis.  I would like to have exactly 10 dots per tick.  The programming is no problem.  I set the D2AxisGridInterv variable after opening the 2D axis object.  I can't seem to figure out how to calculate the number that results in exactly 10 dots per tick.  I also have tried manually iterating to get 10 dots and have not been succesful.  What is this number based from?  It says as a percentage of the diagonal of the worksheet.  I can get pretty close to 10 dots per tick, but it is always off just a bit.  Is there really a way to get scientific based dots on a 2D axis so that the data can be analyzed from a printed plot?
    Thanks-Ryan

    Hi Ryan,
    I'm not entirely sure what you mean by "dots", but I'm going to guess you meant grid lines set to dot display.  In that case you can align the grid lines to the axis sub-ticks, then set the sub-ticks to invisible.  The sub-ticks can be set to N of them per axis tick.  Attached you will find an example of 10 dotted vertical grid lines per X axis tick.
    Let me know if you meant something else,
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments
    Attachments:
    Ryan37.zip ‏30 KB

  • How is it possible to draw a graph using without any label along the x-axis

    Hi,
    I created a bar-graph using the tabular data below:
    public List getTabularData() {
    List list = new ArrayList();
    String[] rowLabels = {"Allocation","Forecast", "Bookings", "Loaded"};
    for (int r = 0 ;r<rowLabels.length ;r++ ) {
    if ( r == 0) {
    list.add(new Object[]{"Alloc/Forecast",rowLabels[r],new Double(_allocation)});
    if ( r == 1) {
    list.add(new Object[]{"Alloc/Forecast",rowLabels[r],new Double(_forecast)});
    if ( r == 2) {
    list.add(new Object[]{"Booking/Loaded",rowLabels[r],new Double(_bkg)});
    if ( r == 3) {
    list.add(new Object[]{"Booking/Loaded",rowLabels[r],new Double(_loaded)});
    return list;
    This is creating a two groups "Alloc/Forecast" and "Booking/Loaded". Group labels are shown in the x-axis.
    But I don't want to show the labels. Instead, only the graph with two groups without any labels in x-axis. How is it possible ?

    User,
    I haven't tested this at all - you may want to have a look at the [url http://download.oracle.com/docs/cd/E12839_01/apirefs.1111/e12418/tagdoc/dvt_o1TickLabel.html]dvt:o1TickLabel component to see if it can suppress the labels.
    John

  • Does anyone know how to calculate the impedance using waveforms

    does anyone know how to calculate the impedance using waveforms?

    studentproject wrote:
    the waveforms represent the voltage and current values across a capacitive load. I am trying to find out if there is a way to do automatic calculations using the inputs from the waveforms
    Hopefully a single sinusoid tone.  Otherwise things get really interesting.  Also know that impedance is based on the frequency.  I'll have to dig into this again.  I have not had to calculate an impedance in well over 10 years.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to calculate the in use percentage of cache ?

    Hi, All,
    I have two questions here:
    1. Can we calculate the proper cache size based on the average key/data pair size and the number of key/data pairs? Is there any formula or something? ( I doubt it :), so next is the second question )
    2. If we set a fixed cache size, and ensure that it has almost 100% hit rate for all the entries accesses. Does this mean that the cache is enough? And if yes, can we calculate how much percentage of the cache is actually in use?
    Thanks in advance.

    Hi,
    user647934 wrote:
    1. Can we calculate the proper cache size based on the average key/data pair size and the number of key/data pairs? Is there any formula or something? ( I doubt it :), so next is the second question ) You can estimate that, just that you should also consider: the page size and how many records will fit on a page.
    Depending on your type of access method, you can check here for formulas that are estimating the total database size (you can find them here: http://www.oracle.com/technology/documentation/berkeley-db/db/ref/am_misc/diskspace.html ), and just translate that to the cache size. Be aware that any cache size less than 500MB is automatically increased by 25% to account for buffer pool overhead.
    user647934 wrote:
    2. If we set a fixed cache size, and ensure that it has almost 100% hit rate for all the entries accesses. Does this mean that the cache is enough? And if yes, can we calculate how much percentage of the cache is actually in use?I think that you can find everything you need by calling "db_stat -m" or DB_ENV->memp_stat for detailed cache statistics.
    db_stat: http://www.oracle.com/technology/documentation/berkeley-db/db/utility/db_stat.html
    DB_ENV->memp_stat: http://www.oracle.com/technology/documentation/berkeley-db/db/api_c/memp_stat.html
    The fields returned by this are:
    size_t st_gbytes;
    * Gigabytes of cache (total cache size is st_gbytes + st_bytes).
    size_t st_bytes;
    * Bytes of cache (total cache size is st_gbytes + st_bytes).
    u_int32_t st_ncache;
    * Number of caches.
    u_int32_t st_max_ncache;
    * Maximum number of caches, as configured with the DB_ENV->set_cache_max method.
    roff_t st_regsize;
    * Individual cache size, in bytes.
    size_t st_mmapsize;
    * Maximum memory-mapped file size.
    int st_maxopenfd;
    * Maximum open file descriptors.
    int st_maxwrite;
    * Maximum sequential buffer writes.
    db_timeout_t st_maxwrite_sleep;
    * Microseconds to pause after writing maximum sequential buffers.
    u_int32_t st_map;
    * Requested pages mapped into the process' address space (there is no available information about whether or not this request caused disk I/O, although examining the application page fault rate may be helpful).
    u_int32_t st_cache_hit;
    * Requested pages found in the cache.
    u_int32_t st_cache_miss;
    * Requested pages not found in the cache.
    u_int32_t st_page_create;
    * Pages created in the cache.
    u_int32_t st_page_in;
    * Pages read into the cache.
    u_int32_t st_page_out;
    * Pages written from the cache to the backing file.
    u_int32_t st_ro_evict;
    * Clean pages forced from the cache.
    u_int32_t st_rw_evict;
    * Dirty pages forced from the cache.
    u_int32_t st_page_trickle;
    * Dirty pages written using the DB_ENV->memp_trickle method.
    u_int32_t st_pages;
    * Pages in the cache.
    u_int32_t st_page_clean;
    * Clean pages currently in the cache.
    u_int32_t st_page_dirty;
    * Dirty pages currently in the cache.
    u_int32_t st_hash_buckets;
    * Number of hash buckets in buffer hash table.
    u_int32_t st_hash_searches;
    * Total number of buffer hash table lookups.
    u_int32_t st_hash_longest;
    * Longest chain ever encountered in buffer hash table lookups.
    u_int32_t st_hash_examined;
    * Total number of hash elements traversed during hash table lookups.
    u_int32_t st_hash_nowait;
    * Number of times that a thread of control was able to obtain a hash bucket lock without waiting.
    u_int32_t st_hash_wait;
    * Number of times that a thread of control was forced to wait before obtaining a hash bucket lock.
    u_int32_t st_hash_max_nowait;
    * The number of times a thread of control was able to obtain the hash bucket lock without waiting on the bucket which had the maximum number of times that a thread of control needed to wait.
    u_int32_t st_hash_max_wait;
    * Maximum number of times any hash bucket lock was waited for by a thread of control.
    u_int32_t st_region_wait;
    * Number of times that a thread of control was forced to wait before obtaining a cache region mutex.
    u_int32_t st_region_nowait;
    * Number of times that a thread of control was able to obtain a cache region mutex without waiting.
    u_int32_t st_mvcc_frozen;
    * Number of buffers frozen.
    u_int32_t st_mvcc_thawed;
    * Number of buffers thawed.
    u_int32_t st_mvcc_freed;
    * Number of frozen buffers freed.
    u_int32_t st_alloc;
    * Number of page allocations.
    u_int32_t st_alloc_buckets;
    * Number of hash buckets checked during allocation.
    u_int32_t st_alloc_max_buckets;
    * Maximum number of hash buckets checked during an allocation.
    u_int32_t st_alloc_pages;
    * Number of pages checked during allocation.
    u_int32_t st_alloc_max_pages;
    * Maximum number of pages checked during an allocation.
    u_int32_t st_io_wait;
    * Number of operations blocked waiting for I/O to complete.
    Please let me know if this helps.
    Thanks,
    Bogdan

Maybe you are looking for

  • I need to add a mileage calculation box to an existing form created by someone other than me. Please help, I am new to javascripting.

    I have the book 'Creating Dynamic Forms with Adobe LiveCycle Designer, but none of the javascript or formcalc script is working. Can someone tell me step-by-step how to go about adding this to the existing dynamic form? I added a small table on the e

  • IPhone 4 (iOS 5.0.1) Won't Sync Movies

    My iPhone 4 (iOS 5.0.1) stopped syncing videos a few days ago, and removed all the videos I did have on it. Everything else is syncing fine. I double checked that my iOS 5.0.1 & iTunes software (10.5.1) are both up to date. The same goes for my MacBo

  • How do I setup "port forwarding" on a Time Capsule on Mountain Lion?

    I am trying to set up a Foscam FI8910W so that I can access it remotely.  I have some tutorials about how to do it, but most seem to involve using an old OS and I'm getting hung up at the step that involves setting up port forwarding.  I have never d

  • M92p with 3 monitors

    Hi, I just recently got a M92p SFF Tower with onboard graphics and it was my impression that the chipset allows 3 monitors?  The desktop I got comes with an i5-3570 with Intel HD graphics 2500, which according to the intel website (http://www.intel.c

  • Archive only masked records error

    Hi SDNers, I want to Archive repository only with 100 records. I have tried Masking those records and on Archiving used the option to select only that Mask. But it is resulting in Archive fail and the report says: 4952  2009/10/13 15:53:20.744 Report