How to interpret the throughput

Hi,
I am using wls7.0sp1. under Monitor -- Performance in the console, there are 3
graphs, how to read these graphs? IS there any docs? I noticed that the green
number for Throughput changes a lot from 20 to 400. alos there is a yellow number
too. Thanks

Hi,
maybe it's very obvious, but I can't find any explaination. Also, I have my heap
set 1024m, in the Memory graph, the green number is 0 and 1073479680, when i turned
verbose gc on, the number in the parasenthsis is 1048320k, why the numbers are
different? If I set the MemoryGCThreshold to 15, when should I expect to see the
full GC happen? Thanks
"Jen" <[email protected]> wrote:
>
Hi,
I am using wls7.0sp1. under Monitor -- Performance in the console, there
are 3
graphs, how to read these graphs? IS there any docs? I noticed that the
green
number for Throughput changes a lot from 20 to 400. alos there is a yellow
number
too. Thanks

Similar Messages

  • How to interpret the Xprof report ?

    Hi everybody,
    I'm trying to use the -Xprof option on the embeddedJRE 1.5 and I would like to understand the report :
    Flat profile of 4.76 secs (269 total ticks): main
      Interpreted + native   Method                       
    34.6%     4  +    89    com.tests.jvm.loading.heavy.LoadAllClasses.<init>
    11.2%     0  +    30    java.util.zip.ZipFile.getEntry
      8.9%    24  +     0    java.lang.ClassLoader.defineClass1
    81.8%    65  +   155    Total interpreted (including elided)This part indicate the time passed to interpret the code => 81.8% of 4,76s = 3.89s
         Compiled + native   Method                       
      1.5%     0  +     4    sun.misc.Resource.getBytes
      0.7%     0  +     2    java.util.zip.InflaterInputStream.<init>
      3.7%     3  +     7    Total compiledThis part indicate the time passed to compile the code => 3.7% of 4,76s = 0,17s
             Stub + native   Method                       
      3.7%     0  +    10    java.util.zip.Inflater.inflateBytes
      2.2%     6  +     0    java.lang.ClassLoader.defineClass1
    10.0%     8  +    19    Total stubI don't understand this part
      Thread-local ticks:
      2.2%     6             Class loader
      2.2%     6             CompilationI don't understand this part
    Global summary of 4.77 seconds:
    100.0%   283             Received ticks
      4.6%    13             Received GC ticks
      2.1%     6             Compilation
      2.1%     6             Class loaderThis part indicate the time passed to compile the code => 2.1% of 4,77s = 0,10s
    This part indicate the time passed to load the code => 2.1% of 4,77s = 0,10s
    I'm right ? What's "ticks" ?
    Thanks for your help

    I found the explication in the book "Java Platform Performance" of Steve Wilson, Jeff Kesselman page 215 / section B.4.6
    Look at GoogleBooks
    ByE

  • How to interpret the Coefficient Report from the FXP Digital Filter Design

    Hi,  I tried to design a low pass IIR filter in cascaded form II. I then pass the filter into the filter structure conversion VI and then pass the filter into the FXP conversion and get the Coefficient Report.
    However, I got problem understanding the report. The index of the coefficient does not correspond to the description of the Filter structures in the Labview help:
    In the labview help where they describe the filter structures, the coefficients have two indices, one for the stage, and the other for intra stage.
    In contrast, the report only gives out coefficients with one indicices.
    My question is: how to map the coefficients to the structure.
    Attached is the digital filter structures appeared in the Labview help.
    The following is the report:
                Reference Value               Quantized Value              Note
    Forward Coefficients:
    b[0]       +1.0105197822678145E-6       +1.0104849934577942E-6      
    b[1]       +2.0210395645356291E-6       +2.0210864022374153E-6      
    b[2]       +1.0105197822678145E-6       +1.0104849934577942E-6      
    b[3]       +1.0105197822678145E-6       +1.0104849934577942E-6      
    b[4]       +2.0210395645356291E-6       +2.0210864022374153E-6      
    b[5]       +1.0105197822678145E-6       +1.0104849934577942E-6      
    number of Overflows:    0
    number of Underflows:   0
    number of Zeros:        0
    Reverse Coefficients:
    a[0]       -1.9962855130669792E+0       -1.9962768554687500E+0      
    a[1]       +9.9628955294911659E-1       +9.9627685546875000E-1      
    a[2]       -1.9984573661467793E+0       -1.9984741210937500E+0      
    a[3]       +9.9846141042409486E-1       +9.9847412109375000E-1      
    number of Overflows:    0
    number of Underflows:   0
    number of Zeros:        0
    gain       +1.0000000000000000E+0       +1.0000000000000000E+0       Floating-point
    * Gain processing is on the host
    Attachments:
    IIRcascaded.GIF ‏7 KB

    Hi David,
    The following Developer Zone article discusses important concepts involved in utilizing the digital filter design toolsets. It specifically address the form in which the design coefficients are expressed.
    I hope this helps.
    Cheers,
    Emilie Kopp | National Instruments

  • How to interpret the current day of the month

    I am a rookie in java and am trying to play with the Calendar class.
    The DATE static field of this class says it returns "Field number for get and set indicating the day of the month."
    So, Calendar.DATE has to return the current day of the month.
    Today is 7th of january. So, it should return 7. But, I am getting a value of 5.
    I am very much confused. I fell that my interpretation os wrong.
    Please help.............
    Thanks in advance.

    You must NOT confuse the value of the constant Calendar.DATE (5) and how you can use that constant to retrieve the current day of the month.
            Calendar cal = Calendar.getInstance(); // Gets the current date
            int dayOfMonth = cal.get(Calendar.DATE); // Gets he current day of the month from the current date
                                                     // (Using the Calendar.DATE constant as method parameter).
            System.out.println("Calendar.DATE = " + Calendar.DATE); // Prints the constant
            System.out.println("dayOfMonth = " + dayOfMonth); // Prints the current day of month

  • How to interpret the class tag in tld file( in jdeveloper)

    Hi,
    I am getting the following error in one of my sample jsp program :
    Error(23): Unable to instantiate tag: my:findBook (class: jsp2.examples.simpletag.FindBookSimpleTag) Make sure that the tag class is available and that the tag library containing the class is not excluded from this application.
    Error(23): Unable to find class for bean: null defined by tag with class: jsp2.examples.simpletag.FindBookSimpleTag
    when it runs the following line :
    <%@ taglib prefix="my" uri="/WEB-INF/jsp2/jsp2-example-taglib.tld" %>
    actually jsp2-example-taglib.tld contains the following code :
    <tag>
         <description>Populates the page context with a BookBean</description>
    <name>findBook</name>
         <tag-class>jsp2.examples.simpletag.FindBookSimpleTag</tag-class>
         <body-content>empty</body-content>
         <attribute>
         <name>var</name>
         <required>true</required>
         <rtexprvalue>true</rtexprvalue>
         </attribute>
    </tag>
    I do not understand the meaning of jsp2.examples.simpletag.FindBookSimpleTag.
    can anyone explain this to me ?
    Thanks in Advance !!!
    BR
    Anurag

    Hi,
    Thanks !!
    How did you find that it is j2ee 1.4 ?
    can you comment why I am not able to see the data in the form . The following is thecomplete jsp file code :
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"
    errorPage="/general_error_page.jsp"%>
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib prefix="my" uri="/WEB-INF/jsp2/jsp2-example-taglib.tld" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
    <title>JSP 2.0 Examples</title>
    </head>
    <body>
    <h1>JSP 2.0 Examples - Book SimpleTag Handler</h1>
    <hr>
    <p>Illustrates a semi-realistic use of SimpleTag and the Expression
    Language. First, a &lt;my:findBook&gt; tag is invoked to populate
    the page context with a BookBean. Then, the books fields are printed
    in all caps.</p>
    <br>
    <b><u>Result:</u></b><br>
    <my:findBook var="book"/>
    <table border="1">
    <thead>
         <td><b>Field</b></td>
         <td><b>Value</b></td>
         <td><b>Capitalized</b></td>
         </thead>
         <tr>
         <td>Title</td>
         <td>${book.title}</td>
         <td>${my:caps(book.title)}</td>
         </tr>
    </table>
    </body>
    </html>
    BR
    Anurag

  • How to interpret the spreport.sql(statpack) output.

    Hi,
    there is the result.
    Top 5 Timed Events
    ~~~~~~~~~~~~~~~~~~ % Total
    Event Waits Time (s) Ela Time
    CPU time 3,407 -17.89
    log buffer space 1,237 445 -2.34
    log file sync 63,132 370 -1.94
    log file parallel write 46,293 182 -.96
    SQL*Net more data to client 2,430 72 -.38
    Any suggestion.
    Thanks.

    Hi,
    Negative value mens the database was shut and restart between snapshots.
    Try http://www.oraperf.com/ to help you in statspack interpretation.
    Nicolas.
    Message was edited by:
    N. Gasparotto

  • How to interpret the verbose:gc output?

    I am trying to understand the garbage collection process. I am currently running the verbose :gc option useing java 1.2 on solaris 2.7. Could anyone explain what the following means?
    GC[0] in 10 ms: (128Mb, 95% free) -> (128Mb, 96% free)
    Also, what is GC[0] and GC[1] ?
    Thanks in advance..

    The GC[0] shows that a garbage collection event occurred. It took a total of 10 ms. The amount of heap used is shown before -> after. So before the GC, 128 Mb of heap was being used. After GC, 128Mb minus some small amount is being used. The % available in the heap increased from 95% to 96%. GC[1] should show the same statistics for another GC event.
    Hope this helps!

  • How to interpret the RMON Alerts

    Hello
    Following alerts are being received via e-mail
    EventId, Id Time Description
    4.47 2011/11/15-08:46:01 1.3.6.1.4.1.9.9.289.1.2.1.1.38.17362944=0 <= 0:65500, 4 WARNING(4)Falling
    From the above i can understand that this is related to "fcIfTxWtAvgBBCreditTransitionToZero > 1.3.6.1.4.1.9.9.289.1.2.1.1.38"
    However i would want to know to which port/interface is the above alert referring to.
    fcIfTxWtAvgBBCreditTransitionToZero OBJECT-TYPE
      SYNTAX          Counter64
      MAX-ACCESS      read-only
      STATUS          current
        DESCRIPTION    "The number of times average buffer-to-buffer credits at an FC-port has transitioned to zero"
       ::= { fcIfErrorEntry 38 }
    Attached are the RMON alerts
    Please advise

    The way to interperate which perticular interface it is,
    4.47 2011/11/15-08:46:01 1.3.6.1.4.1.9.9.289.1.2.1.1.38.17362944=0 <= 0:65500, 4 WARNING(4)
    in this thread , take the last octect   "17362944"
    convert it to hex number
    which is 108f000
    and run the command on the switch
    switch# show port internal info interface-id 0x108f000  (i,e with prefix 0x)
    that would tell you what is the physical interface it belongs to.

  • I followed previous keylogger detection instructions from an older post - how do I interpret the results that appeared in Terminal?

    I have a Macbook pro that I suspect my exhusband installed keylogger software on.  I followed the keylogger detection instructions posted on an older post, but I do not know how to interpret the Terminal results.  What should I be looking for in the strings that result?

    You don't have an off-the-shelf commercial keylogger installed. I can't rule out a well-hidden rootkit. That would only be possible If the attacker is a computer expert, or if he had help from an expert. If you suspect that, you'll either have to consult an expert yourself or (less expensively) erase your hard drive, reinstall OS X and all your other software from known-good copies, and restore only your documents and settings from a backup.
    I should add that there are hardware keyloggers on the market that don't install any software at all. The cheap ones can't be accessed remotely, but with enough money you can buy pretty much anything. A highly motivated attacker could plant listening devices in your home, your car, or your office.

  • How to extract the smtp response code

    Hi,
    I am trying to get the server response by SMTPTransport.getLastServerResponse(),
    and getting the response as "250 2.0.0 OK 1201842889 c39sm4983397anc.25", in case of success.
    This response would differ in case of failure.
    Could please guide me as how to extract the response code from the result.
    Thanks!!

    It's time to read the SMTP spec.
    Also, read the javadocs for the com.sun.mail.smtp
    package to see how to get an Exception even for
    success that includes the detailed response codes.
    The smtpsend.java demo program will show you how
    to interpret the exception.

  • How to make the warp stabilizer analyze interlaced (upper + lower field) instead of progressive?

    I am having a little problem since I am new to Premiere pro.
    Until now I always used the warp stabilizer in After Effects for single shots in need of that. But this time, I was handed a project that requires a whole lot of stabilization. My plan is to drop the whole timeline (FCP 7/ProRes422 HQ Interlaced) via XML into Premiere Pro and apply the effect there to multiple clips.
    PROBLEM: When I do this, the warp stabilizer always (no matter how I interpret the footage or set the sequence) analyzes the footage progressively. At least that is what the effect preferences tab says during analysis.
    In After Effects I always see which field is beeing analyzed (it is indicated by a L and an U behind the frame count). Not so in Premiere Pro. Here it always seems to analyze full frames.
    I made a test and compared the results from After Effects and Premiere Pro: The file generated in Premiere Pro is much softer then the one out of After Effects even though I export both with the same output settings.
    Any help would be greatly appreciated !
    Regards, franse

    I just verified and the Description for Products (and possibly other objects too) are stored in table COMM_PRSHTEXT.
    The relevant Data element is COMT_PRSHTEXTX which has the domain PRSHTEXT40.
    If you look at this domain you have a parameter "lowercase" which is available as a flag option.
    <u><b>The explanation about this Flag is the following:</b></u>
    Lowercase letters allowed/not allowed
    If this flag is set, upper case and lower case are distinguished when you enter values with screen masks.
    Otherwise all the letters entered will be converted to upper case when you enter values with a screen mask.
    This mechansim is in effect for all the fields referring to this domain.
    <b>Solution would be</b> to verify if for this data-element the same Domain is used.
    If yes, you can flag this option in the domain.
    this should solve your problem.
    kind regards
    davy pelssers
    please reward if helpful.

  • How to interpret External Table's log file ?

    Hello All,
    Env: Oracle 10.2.0.4 on Solaris 10.
    I have a csv file and need to use the extenal table to load the data.
    The data is from Microsoft Active Dir and the fields are quite big.
    Since there is no table to upload, i created a table with 283 cols with varchar2(4000), 'coz i do not
    not how big each records are. The file has 8039 records and and could load only 7600.
    Googled and checked documentation and found no details on how to interpret the log file for missing records or what caused.
    LOG\343\203\225\343\202\241\343\202\244\343\203\253\343\201\21408/10/09 16:55:56\343\201\247\343\202\252\343\203\274\343\203\227\343\203\26
    3\343\201\225\343\202\214\343\201\276\343\201\227\343\201\237
    \350\241\250A1\343\201\256\343\203\225\343\202\243\343\203\274\343\203\253\343\203\211\345\256\232\347\276\251
      \343\203\254\343\202\263\343\203\274\343\203\211\343\203\273\343\203\225\343\202\251\343\203\274\343\203\236\343\203\203\343\203\210DELIM
    ITED BY NEWLINE
      \343\203\225\343\202\241\343\202\244\343\203\253\345\206\205\343\201\256\343\203\207\343\203\274\343\202\277\343\201\257\343\203\227\343\
    203\251\343\203\203\343\203\210\343\203\225\343\202\251\343\203\274\343\203\240\343\201\250\345\220\214\343\201\230endianness\343\201\247\3
    43\201\231
      \343\201\231\343\201\271\343\201\246\343\201\256\343\203\225\343\202\243\343\203\274\343\203\253\343\203\211\343\201\214NULL\343\201\247\
    343\201\202\343\202\213\350\241\214\343\201\214\345\217\227\345\205\245\343\202\214\343\202\211\343\202\214\343\201\276\343\201\227\343\201
    \237
      \343\203\207\343\203\274\343\202\277\343\203\273\343\202\275\343\203\274\343\202\271\343\201\256\343\203\225\343\202\243\343\203\274\343\
    203\253\343\203\211:
        DN                              CHAR (4000)
          ","\343\201\247\347\265\202\344\272\206\343\201\227\343\201\276\343\201\231
          """\343\201\250"""\343\201\247\345\233\262\343\201\276\343\202\214\343\201\246\343\201\204\343\201\276\343\201\231
          SQL Loader\343\201\250\345\220\214\346\247\230\343\201\253\347\251\272\347\231\275\343\202\222\345\210\207\343\202\212\346\215\250\34
    3\201\246\343\201\276\343\201\231
        OBJECTCLASS                     CHAR (4000)
          ","\343\201\247\347\265\202\344\272\206\343\201\227\343\201\276\343\201\231
          """\343\201\250"""\343\201\247\345\233\262\343\201\276\343\202\214\343\201\246\343\201\204\343\201\276\343\201\231
          SQL Loader\343\201\250\345\220\214\346\247\230\343\201\253\347\251\272\347\231\275\343\202\222\345\210\207\343\202\212\346\215\250\34
    3\201\246\343\201\276\343\201\231
        DISTINGUISHEDNAME               CHAR (4000)
          ","\343\201\247\347\265\202\344\272\206\343\201\227\343\201\276\343\201\231
          """\343\201\250"""\343\201\247\345\233\262\343\201\276\343\202\214\343\201\246\343\201\204\343\201\276\343\201\231
          SQL Loader\343\201\250\345\220\214\346\247\230\343\201\253\347\251\272\347\231\275\343\202\222\345\210\207\343\202\212\346\215\250\34
    3\201\246\343\201\276\343\201\231
    KUP-04026: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211\343\201\214\343\203\207\343\203\274\343\202\277\345\236\213\343\201
    \253\345\257\276\343\201\227\343\201\246\351\225\267\343\201\231\343\201\216\343\201\276\343\201\231\343\200\202
    KUP-04101: \343\203\254\343\202\263\343\203\274\343\203\2111686\343\201\214\343\203\225\343\202\241\343\202\244\343\203\253/u01/app/oracle/
    product/10.2.0/db_1/work/csvdeResult.csv\343\201\247\346\213\222\345\220\246\343\201\225\343\202\214\343\201\276\343\201\227\343\201\237
    KUP-04021: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211MEMBEROF\343\201\256\343\203\225\343\202\243\343\203\274\343\203\253
    \343\203\211\343\203\273\343\203\225\343\202\251\343\203\274\343\203\236\343\203\203\343\203\210\343\203\273\343\202\250\343\203\251\343\20
    3\274
    KUP-04026: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211\343\201\214\343\203\207\343\203\274\343\202\277\345\236\213\343\201
    \253\345\257\276\343\201\227\343\201\246\351\225\267\343\201\231\343\201\216\343\201\276\343\201\231\343\200\202
    KUP-04101: \343\203\254\343\202\263\343\203\274\343\203\2111708\343\201\214\343\203\225\343\202\241\343\202\244\343\203\253/u01/app/oracle/
    product/10.2.0/db_1/work/csvdeResult.csv\343\201\247\346\213\222\345\220\246\343\201\225\343\202\214\343\201\276\343\201\227\343\201\237
    KUP-04021: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211USERCERTIFICATE\343\201\256\343\203\225\343\202\243\343\203\274\343\
    203\253\343\203\211\343\203\273\343\203\225\343\202\251\343\203\274\343\203\236\343\203\203\343\203\210\343\203\273\343\202\250\343\203\251
    \343\203\274
    KUP-04026: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211\343\201\214\343\203\207\343\203\274\343\202\277\345\236\213\343\201
    \253\345\257\276\343\201\227\343\201\246\351\225\267\343\201\231\343\201\216\343\201\276\343\201\231\343\200\202
    KUP-04101: \343\203\254\343\202\263\343\203\274\343\203\2111709\343\201\214\343\203\225\343\202\241\343\202\244\343\203\253/u01/app/oracle/
    product/10.2.0/db_1/work/csvdeResult.csv\343\201\247\346\213\222\345\220\246\343\201\225\343\202\214\343\201\276\343\201\227\343\201\237
    KUP-04021: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211USERCERTIFICATE\343\201\256\343\203\225\343\202\243\343\203\274\343\
    203\253\343\203\211\343\203\273\343\203\225\343\202\251\343\203\274\343\203\236\343\203\203\343\203\210\343\203\273\343\202\250\343\203\251
    \343\203\274
    KUP-04026: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211\343\201\214\343\203\207\343\203\274\343\202\277\345\236\213\343\201
    \253\345\257\276\343\201\227\343\201\246\351\225\267\343\201\231\343\201\216\343\201\276\343\201\231\343\200\202
    KUP-04101: \343\203\254\343\202\263\343\203\274\343\203\2111710\343\201\214\343\203\225\343\202\241\343\202\244\343\203\253/u01/app/oracle/
    product/10.2.0/db_1/work/csvdeResult.csv\343\201\247\346\213\222\345\220\246\343\201\225\343\202\214\343\201\276\343\201\227\343\201\237
    KUP-04021: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211USERCERTIFICATE\343\201\256\343\203\225\343\202\243\343\203\274\343\
    203\253\343\203\211\343\203\273\343\203\225\343\202\251\343\203\274\343\203\236\343\203\203\343\203\210\343\203\273\343\202\250\343\203\251
    \343\203\274
    KUP-04026: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211\343\201\214\343\203\207\343\203\274\343\202\277\345\236\213\343\201
    \253\345\257\276\343\201\227\343\201\246\351\225\267\343\201\231\343\201\216\343\201\276\343\201\231\343\200\202
    KUP-04101: \343\203\254\343\202\263\343\203\274\343\203\2111715\343\201\214\343\203\225\343\202\241\343\202\244\343\203\253/u01/app/oracle/
    product/10.2.0/db_1/work/csvdeResult.csv\343\201\247\346\213\222\345\220\246\343\201\225\343\202\214\343\201\276\343\201\227\343\201\237
    KUP-04021: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211MEMBEROF\343\201\256\343\203\225\343\202\243\343\203\274\343\203\253
    \343\203\211\343\203\273\343\203\225\343\202\251\343\203\274\343\203\236\343\203\203\343\203\210\343\203\273\343\202\250\343\203\251\343\20
    3\274
    KUP-04026: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211\343\201\214\343\203\207\343\203\274\343\202\277\345\236\213\343\201
    \253\345\257\276\343\201\227\343\201\246\351\225\267\343\201\231\343\201\216\343\201\276\343\201\231\343\200\202
    KUP-04101: \343\203\254\343\202\263\343\203\274\343\203\2111717\343\201\214\343\203\225\343\202\241\343\202\244\343\203\253/u01/app/oracle/
    product/10.2.0/db_1/work/csvdeResult.csv\343\201\247\346\213\222\345\220\246\343\201\225\343\202\214\343\201\276\343\201\227\343\201\237
    KUP-04021: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211USERCERTIFICATE\343\201\256\343\203\225\343\202\243\343\203\274\343\
    203\253\343\203\211\343\203\273\343\203\225\343\202\251\343\203\274\343\203\236\343\203\203\343\203\210\343\203\273\343\202\250\343\203\251
    \343\203\274
    :Above is an extract of the log file.
    Could someone shed some light on how to interpret it ?
    or any links would be sufficient.
    TIA,
    JJ

    Hello,
    I have already tried with CLOB and could see only 2600 records where as when the cols where varchar2(4000) i could get 7680 rows.
    @Franky:
    Is KUP equal to ORA- errors ?
    Is there any lookup tool ?
    I could not see any formatted error description in the log file.
    This is the beginning of the KUP errors in the log file. REPSFROM is a col. How do i know for which row it has failed ?
      KUP-04021: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211REPSFROM\343\201\256\343\203\225\343\202\243\343\203\274\343\203\253
    \343\203\211\343\203\273\343\203\225\343\202\251\343\203\274\343\203\236\343\203\203\343\203\210\343\203\273\343\202\250\343\203\251\343\20
    3\274
    KUP-04026: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211\343\201\214\343\203\207\343\203\274\343\202\277\345\236\213\343\201
    \253\345\257\276\343\201\227\343\201\246\351\225\267\343\201\231\343\201\216\343\201\276\343\201\231\343\200\202
    KUP-04101: \343\203\254\343\202\263\343\203\274\343\203\2112\343\201\214\343\203\225\343\202\241\343\202\244\343\203\253/u01/app/oracle/pro
    duct/10.2.0/db_1/work/csvdeResult.csv\343\201\247\346\213\222\345\220\246\343\201\225\343\202\214\343\201\276\343\201\227\343\201\237
    KUP-04021: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211MEMBEROF\343\201\256\343\203\225\343\202\243\343\203\274\343\203\253
    \343\203\211\343\203\273\343\203\225\343\202\251\343\203\274\343\203\236\343\203\203\343\203\210\343\203\273\343\202\250\343\203\251\343\20
    3\274
    KUP-04026: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211\343\201\214\343\203\207\343\203\274\343\202\277\345\236\213\343\201
    \253\345\257\276\343\201\227\343\201\246\351\225\267\343\201\231\343\201\216\343\201\276\343\201\231\343\200\202
    KUP-04101: \343\203\254\343\202\263\343\203\274\343\203\211508\343\201\214\343\203\225\343\202\241\343\202\244\343\203\253/u01/app/oracle/p
    roduct/10.2.0/db_1/work/csvdeResult.csv\343\201\247\346\213\222\345\220\246\343\201\225\343\202\214\343\201\276\343\201\227\343\201\237
    KUP-04021: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211MEMBEROF\343\201\256\343\203\225\343\202\243\343\203\274\343\203\253
    \343\203\211\343\203\273\343\203\225\343\202\251\343\203\274\343\203\236\343\203\203\343\203\210\343\203\273\343\202\250\343\203\251\343\20
    3\274
    KUP-04026: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211\343\201\214\343\203\207\343\203\274\343\202\277\345\236\213\343\201
    \253\345\257\276\343\201\227\343\201\246\351\225\267\343\201\231\343\201\216\343\201\276\343\201\231\343\200\202
    KUP-04101: \343\203\254\343\202\263\343\203\274\343\203\211509\343\201\214\343\203\225\343\202\241\343\202\244\343\203\253/u01/app/oracle/p
    roduct/10.2.0/db_1/work/csvdeResult.csv\343\201\247\346\213\222\345\220\246\343\201\225\343\202\214\343\201\276\343\201\227\343\201\237
    KUP-04021: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211MEMBEROF\343\201\256\343\203\225\343\202\243\343\203\274\343\203\253
    \343\203\211\343\203\273\343\203\225\343\202\251\343\203\274\343\203\236\343\203\203\343\203\210\343\203\273\343\202\250\343\203\251\343\20
    3\274
    KUP-04026: \343\203\225\343\202\243\343\203\274\343\203\253\343\203\211\343\201\214\343\203\207\343\203\274\343\202\277\345\236\213\343\201
    \253\345\257\276\343\201\227\343\201\246\351\225\267\343\201\231\343\201\216\343\201\276\343\201\231\343\200\202
    [pre]
    TIA,
    J J                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • ThinkVantage Tech and Window 7 - how to interpret

    Could someone explain me how to understang following :
    On lenonvo web site, some drive explicitely mention Window 7 and 64-bit (for example NVIDIA Display Driver (NVIDIA Quadro NVS 140M / Quadro FX 570M) driver for Windows 7 (64-bit) - ThinkPad R61, R61i, T61, T61p) in other case it mentions Windows 7 but no mention if x86 or x64 (for example ThinkVantage System Update 4.0 - System Update 4.0 only supports Microsoft Windows 7)
    How to interpret the latter : does it means it runs on 32bits more even in Windows 7 64-bits, or it it only designed for 32bits OS ?
    Many thanks

    Could someone explain me how to understang following :
    On lenonvo web site, some drive explicitely mention Window 7 and 64-bit (for example NVIDIA Display Driver (NVIDIA Quadro NVS 140M / Quadro FX 570M) driver for Windows 7 (64-bit) - ThinkPad R61, R61i, T61, T61p) in other case it mentions Windows 7 but no mention if x86 or x64 (for example ThinkVantage System Update 4.0 - System Update 4.0 only supports Microsoft Windows 7)
    How to interpret the latter : does it means it runs on 32bits more even in Windows 7 64-bits, or it it only designed for 32bits OS ?
    Many thanks

  • How to determine the IPS throughput using Cisco ASA 5500 IPS Solution?

    Hello there!
    I´ve been desinging a solution to protect de Server Farm and I intend to use the ASA 5500 series with AIP-SSM module. There´s any tool to determine the real throughput that I need? I mean, how to determine the performance (Firewall + IPS  throughput), what main points I should consinder?

    If the server farm is running production levels of traffic today you can get statistics off a variety of networking devices passing the existing traffic. Switches, routers and firewalls all count every byte of traffic they pass. There are plenty of tools that can gather this traffic into tables via SNMP too, such as MRTG.
    Do not average your traffic over too great a time peroid, you will miss busy hour peaks. At most, use 5 min averages.
    - Bob

  • How can I test the throughput speed of the router?

    How do I test the data speed of my Airport Extreme base? I want to test the functioning my airport extreme base. I experience frequent slowdowns and stoppages that don't occur when i access the cable modem directly.

    To test data throughput of your AirPort (or any router) you would need to test both the WAN-to-LAN and LAN-to-WAN interfaces. A typical way to do this would be to use a utility like ixChariot.
    For example, SmallNetBuilder has already done this with several different versions of the 802.11n AirPort Extreme Base Station (AEBSn). You may want to check them out to get an idea of what the AEBSn is capable of.
    Another approach that is commonly used but not as accurate is to use "end-to-end" throughput testing utilities that are readable available from the Internet, like Speedtest.net.
    Regardless of which technique you use, it is important to test throughput at each of your network segments to help pinpoint where the bottlenecks are. For example, if you do HD video streaming on your local network, you would want to test the throughput between the HD video source and the playback device.

Maybe you are looking for