How to find disk error.

How to find disk error, i tried iostat -En , /var/adm/messages,and prtdiag -v . is there anyother way to find the hardware error.

If theres nothing in /var/adm/messages and iostat -En isnt showing a problem.
What makes you think there is a disk error?

Similar Messages

  • How to find flatfile errors while uploading data

    hi all,
    i hava a question...  when i am uploading large amount of data (ex:1 lac records) in that 100 records are error records .. how to find the error records in flatfile before uploading.
    regards shree.

    Hi,
    The only way to find out errors is to open the file from abap read through each record and validate it.
    However , my approach would be to read through each record, validate it, if valid process it otherwise collect it in another auxilary internal table and then in the end log the errors for later processing.
    regards,
    Advait

  • How to find disk usage by application

    Using the Activity Monitor, I can see that something is making an excessive number of disk IO's and generally slowing the system down.
    Is there some way I can see the disk IO on a per-process bases (the same as I can see the CPU usage for each process)?
    Thanks
    Susan

    That does not seem to be it - the process that shows up by far the most messages being sent and received is 'kernel task'.
    I think I have tracked down the problem that I was seeking this information to solve (does that make sense?). I have been doing quite a bit of software development, some of it involving installing quite large packages. As these were being installed Spotlight was going crazy trying to index them all and causing the system to slow down because of all the directory lookups etc, it was doing.
    At least that is my theory and stopping Spotlight's indexing (I have never used Spotlight anyway - it never seems to find what I'm after) I have not seem the performance hit I was seeing before.
    On the other hand, I would still like to know how to monitor disk IOs on a per-process basis for the future.
    Thanks
    Susan

  • How to find out error segments in a group of Idocs

    Hi,
    1. For every 5 minutes Idocs are coming in to R3 from some third party systems, and this scenerio some of the Idocs are in failed status as well.
    My doubt is how to see the all segments at a time, since there might be some problem with the data, so I need to check the each and every segment all time.  Is there any way to findout all segments at a time for the group of the idocs of the same message type.
    2. How to find out the error in segments of the idoc.
    Many thanks in advance.
    Thanks.
    Ahmed.

    Hi Mujeeb Ahmed 
    I dont have SAP System in front. Any way check the menu bar, there you can fine SEGMENT WITH ERROR OPTION
    Regards
    Kumar

  • Trying to figure out how to find this error?

    Hi,
    I have a project that keeps throwing this error, but I can't see, to figure out how to find it:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    It's a very large project. How can I search for this?
    thanks,
    Dave

    ok, so it showed me a few things... THANKS, but none of which were exactly a problem:
    at ALeCard_CBP_0101_fla::MainTimeline/frame23()[ALeCard_CBP_0101_fla.MainTimeline::frame23:4 3]
    at flash.display::MovieClip/gotoAndPlay()
    at ALeCard_CBP_0101_fla::MainTimeline/fl_ClickToGoToScene2523()[ALeCard_CBP_0101_fla.MainTim eline::frame25:302]
    so the top one is just a part of a button
    downloadButton.buttonMode = true;
    which is fine.
    then, the other one points to a part of a function that I've used in a dozen other places and it works fine:
    MovieClip(this.root).gotoAndPlay(23);
    something I did find-and I still can't figure out why-is that download button was causing issues. I have NO idea why since it's an exact duplicate from another file.
    but this is cool to have this information-thanks!
    Dave

  • How to find exact error column name

    hi all ,
    My requirement is as follows .
    I am trying to add a record into temp_emp table inside plsql block ,after executing it i am getting ORA-01438: value larger than specified precision allowed for this column error .I want to find for which column the error is coming .
    In the below example i clearly know that deptno column precision is 2 and i am inserting bigger value that is why i am getting error .
    let us consider a scenario where i am trying to insert 40 colunm values into table and one column is causing the problem , how to find that column alone .
    SELECT * FROM V$VERSION
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0    Production
    TNS for Solaris: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    CREATE  TABLE
    temp_emp
      empno  NUMBER(4),
    ename VARCHAR2(15),
    job  VARCHAR2(10),
    deptno NUMBER(2)
    DECLARE
       v_empno    NUMBER (4);
       v_ename    VARCHAR2 (15);
       v_job      VARCHAR2 (10);
       v_deptno   NUMBER (2);
    BEGIN
       INSERT INTO temp_emp
                   (empno, ename, job, deptno
            VALUES (1234, 'ABC', 'CLERK', 1000
    EXCEPTION
       WHEN OTHERS
       THEN
          DBMS_OUTPUT.put_line (   SQLCODE
                                || DBMS_UTILITY.format_error_backtrace
                                || SQLERRM
    END;
    /finally I want column name in the error message .
    Thanks,
    P Prakash

    Oracle does not provide the column information in the error message and I don't know of any way to do so outside of developing something convoluted. For example:
    SQL> DECLARE
      2     te_row temp_emp%ROWTYPE;
      3  BEGIN
      4
      5     te_row.empno  := 1234;
      6     te_row.ename  := 'ABC';
      7     te_row.job    := 'CLERK';
      8     te_row.deptno := 1000;
      9
    10     INSERT INTO temp_emp
    11          VALUES te_row;
    12  END;
    13  /
    DECLARE
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error: number precision too large
    ORA-06512: at line 8Also, that EXCEPTION block has a bug in it (no RAISE or RAISE_APPLICATION_ERROR).
    Edited by: Centinul on May 3, 2012 8:23 AM

  • How to find Disk I/O and VM stat numbers

    Hello Experts,
    I'm new to SAP BASIS , can anyone tell me where I can find DISK I/O and VM stats for the tuning purpose?
    Thanks in advance
    Sonu

    hi sonu,
    Its depend on what's your OS where database reside ?
    ardhian
    http://sapbasis.wordpress.com

  • How to find an error at the time of inserting at particular column.

    Hi,
    I'm loading the data into a table by using procedure . At the time of inserting data i got a precision error or value too large error. Is there any way to find out at which column the error has occured.
    Thanks a lot your help in advance.
    Thanks & Regards,
    Ramana.

    Hi
    Do you know how the data to be inserted is queried in the pocedure? Is there a cursor or an 'insert..select..' statement?
    Ott Karesz
    http://www.trendo-kft.hu

  • How to find the error message populating for infotype 2001 iN pa30

    Hi ,
    I got a requirement that one of our end user a a error message is populating when he tries to enter the data in 2001 absences infotype.
    I check the documents ...it is written as a there is long back they modified the original T-code of 2001(report or userexit not sure) to allow only HR Department people , no one can enter the details apart from HR ,no-one else should be able to do that!!
    Now i need to find where the error message is getting .............i dont know what is the best approach,
    i debugged it(before savgin) but its too long to find......I put the break points for the user-exits available for the infotype(Total i found 16 Package PTIM) ......no user-exit is triggerring..i searching from morning....
    The main problem is  it is working fine for me.I am not getting error message...so unable to catch
    Please help me how to search...or need to search with 'AUTH ' field? if so in how many programs?
    or need to search using the 'MESSAGE' i just have the screen shot of the message..with the content how could i found that ??
    waiting for your valuable inputs....
    regards
    sas

    Hi Gautam,
    Thanks for reverting back, but my problem is i am not getting error message!!
    enduser is getting that!!
    Rgars
    sas

  • How to find the error when client proxy is not successfully triggered?

    Hi all,
    I want to consume a .NET service in SAP.
    But when I want to test the client proxy the following error occur:
    GENERAL_ERROR Error duing proxy processing (PART
    UNKNOWN (NULL) )
    Transaction ST11:
    TRACE SOAP RUNTIME - trace records                                                                               
    E CONTEXT 20090518061404.5255720 : CL_SOAP_CONTEXT ->SET_FAULT   
    SOAP runtime fault handling                                                                               
    E SOAP_RUNTIME 20090518061404.5256990 : CL_SOAP_RUNTIME_CLIENT   
    ->EXEC_PROCESSING Exception handling in SOAP runtime                                                                               
    E CONTEXT 20090518061404.5255620 : CL_SOAP_CONTEXT ->SET_FAULT set
    fault loop detected                                                                               
    E SOAP_RUNTIME 20090518061404.5256920 : CL_SOAP_RUNTIME_CLIENT                                   
    .NullPointerException:                                           
    Transaction SM21:
    SOAP Runtime Protocol: SOAP Fault exception occurred in program CL_SOAP_RUNTIME_ROOT==========CP in include CL_SOAP_RU NTIME_ROOT==========CM004 at position 80
    SOAP Runtime Protocol: Exception message: Severe processing error; SOAP fault handling required
    How can I find what's wrong????
    This error logging is not really helpful to me...
    Any ideas?
    regards

    Hello Mr. Bauer,
    Will you please elaborate on your solution to fix this issue?
    We are facing this issue too.
    Thanks in advance.
    Regards,
    Victor

  • How to find syntax errors in TestStand?

    Hi,
    I have about 70 sequences and I'm trying to find any syntax errors, which evaded my "error radar". How can I find these in TestStand without moving through every step (which would around 1000 and more steps!)? I'm missing something like the "syntax" check in LabVIEW, which indicates right in your face, if you brake the block diagram.
    Thanks for any help.
    Marc
    CLD
    Solved!
    Go to Solution.

    Checking expressions at edit time to make sure that they will evaluate correctly at run time is a tricky process.  For instance, what if you are dynamically creating an array at run time, and then iterating through that array.  Unless you give that array good default values (which may be difficult if it is an array of custom types), your expressions will not be correct at edit time, and could be flagged as errors.
    However, this is a request that we have heard quite a bit, and NI is investigating ways to allow customers to validate their expressions before running a sequence.
    In the meantime, one of the TestStand developers created a tool that does what Doug was describing: iterates through every property object in a file and if it is an expression, tries to evaluate it.  This tool is written as a sequence file in TestStand 4.1.  Please note that since it uses recursion to iterate through each property object, and since recursion with sequences can be rather slow, the performance of this tool may be improved by duplicating its functionality with a code module (rather than sequence steps).
    Message Edited by Josh W. on 03-30-2009 02:20 PM
    Josh W.
    Certified TestStand Architect
    Formerly blue
    Attachments:
    CheckExpressions41.seq ‏13 KB

  • SAP Error code- How to find possible errors

    Hi,
    Please advise is there any way to identify the possible errors in data or in config using error codes displayed by the sap system. Any such procedure to trace the possible mistakes. please guide me.

    dear friend,
    one of the approaches as follows ( technical , not functional): on your error screen goto System-Status, double click on Program (screen)
    and in this ABAP editor you could try to find out the place with that particular error code/number.
    then to analyse the code (why this message is called).
    to use this method you need to be able understand abap.
    just in case, all messages exist in standard table T100, so you can search there by text error or message number.
    from functional point of view you could try to find out the place in config (spro) where you can customize that particular message , say , error, or warning, or just skip. But this doesn't work always! Some of system messages are not configurable.
    depends on module and etc..
    good luck!

  • How to find the error table

    If an error occured in the program while running, in which table  this error  is stored and how to get the message no.

    Hi,
    Doubleclick the error message and you get the message id and message number, then use transaction SE91 (or look in table T100T).
    Regards,
    John.

  • How to find Disk space information

    Hi...
    I want to know how or what API's to be used to get the disk information of the system that my programme is running.
    Thanks
    Sanesh

    what os are you using: i know of a tops script that runs in *nix, i wrote a java app to access that information.
    It shows load avg, disk free, mem free, uptime, and each fs disk free.
    I can post if u need this for *nix based apps.
    (Of course, this does distract from cross-platform stuff)
    newio

  • How to find this error?

    for example:
    <?php
    $connection = oci_connect("apps", "apps","prod");
    $query = "select u.user_id id,u.user_name name
    from fnd_user u";
    $statement = oci_parse ($connection, $query);
    oci_execute ($statement);
    while ($row = oci_fetch_array ($statement, OCI_BOTH)) {
    echo $row[0]." and ".$row['ID']." is the same<br>";
    echo $row[1]." and ".$row['NAME']." is the same<br>";
    ?>
    when I run above example :
    occur below error:
    szAppName : Apache.exe szAppVer : 2.0.55.0 szModName : OraClient8.Dll
    szModVer : 0.0.0.0 offset : 00049eee
    why?

    Hi,
    This may help you...
    http://bugs.php.net/bug.php?id=28403&edit=1

Maybe you are looking for

  • Blue Screen after Security Update

    Hello, I just got my first Mac, a Macbook, and was having no problems until I installed the most recent security update (along with updates to Quicktime, Safari, iTunes, etc.). The next time I turned the computer on I got the blue screen of death. Si

  • Logic Pro Crashing After Mavericks Update

    Hey Guys, I'm not having any luck opening Logic Pro 9. Here's the report: Process:         Logic Pro [619] Path:            /Applications/Logic Pro.app/Contents/MacOS/Logic Pro Identifier:      com.apple.logic.pro Version:         9.1.8 (1700.67) Bui

  • SAP-ISU consultant details

    Hi friends, can any halp me to know SAP-ISU consultant details, what are all things i have in that SAP-ISU, whether it's having any programming part like ABAP,

  • Workflow for Work Contract Approval

    Hello everybody, I need a Workflow for 2 level of approval of work contract. Whenever a user make a work contract it requires approval upto two level.If Authority1 approves the contract it will go for the 2nd level approval to authority 2.If Authorit

  • Why is OS X 10.10.2 taking so long to download

    Have been trying to download the latest Yosemite update 10.10.2 for the past few days, alas without any luck. I run a Fibre optic wireless system running at 38MB per second download. Have tested this by downloading other files, and no issues found. W