Issue with MAXL resource_usage statement

Hi,
I am tring to use the resource usage command in MAXL and I am getting error.
MAXL> alter database SUNDDD.SUNDDD initialize load_buffer with buffer_id 1 resource_usage .5;
ERROR - 1242021 - (1) Syntax error near ['resource_usage'].
I am unable to find the description of the Error Message.
Can someone please guide me as to what the issue is. We are using ASO cube.
Thanks
S

I never used resource_usage with my ASO MAXL scripts. I looked at the documentation of Ver. 7.1.6 & System 9 but couldn't find the definition.
Now I am really interested to know what source you are using for this definition.
Nitin Malhotra
Message was edited by:
nitinmalhotra

Similar Messages

  • Performance issue with the ABAP statements

    Hello,
    Please can some help me with the below statements where I am getting performance problem.
    SELECT * FROM /BIC/ASALHDR0100 into Table CHDATE.
    SORT CHDATE by DOC_NUMBER.
    SORT SOURCE_PACKAGE by DOC_NUMBER.
    LOOP AT CHDATE INTO WA_CHDATE.
       READ TABLE SOURCE_PACKAGE INTO WA_CIDATE WITH KEY DOC_NUMBER =
       WA_CHDATE-DOC_NUMBER BINARY SEARCH.
       MOVE WA_CHDATE-CREATEDON  to WA_CIDATE-CREATEDON.
    APPEND WA_CIDATE to CIDATE.
    ENDLOOP.
    I wrote an above code for the follwing requirement.
    1. I have 2 tables from where i am getting the data
    2.I have common fields in both the table names CREATEDON date. In both the tables I hve the values.
    3. While accessing the 2 table and copying to thrid table i have to modify the field.
    I am getting performance issues with the above statements.
    Than
    Edited by: Rob Burbank on Jul 29, 2010 10:06 AM

    Hello,
    try a select like the following one instead of you code.
    SELECT field field2 ...
    INTO TABLE it_table
    FROM table1 AS T1 INNER JOIN table2 AS T2
    ON t1-doc_number = t2-doc_number

  • Issue with reading emails state.

    Dear community,
    in my company, we have BB to bring a very good 24hrs service to our customer, but the thing is that we started to have an issue with our BB and the Microsoft Office 365 and Exchange service.
    We have BlackBerry Enterprise service activated on each blackberry, so we receive every email in our BBs.
    But, when we read an email, after you go back to the mailbox, it appears as un-read again. Then, if you read it again, and go back to the mailbox, it appears as read.
    DO you know why it's happening?.
    Thanks in advance,

    Hi,
    Use TRY & CATCH statements before OPEN DATASET...
    For exact syntax check F1 help on try & catch...
    TRY.
      CATCH.
        OPEN DATASET..
      endcatch.
    endtry.
    Hope it helps!!
    Rgds,
    Pavan

  • GL account issue with Electronic Bank Statement

    Hi Gurus,
    I need your help and advice with the following issue. We are using ECC 6.0 and have implemented electronic bank statement. It is working fine but we havea new requirements.
    Presently all the incoming ACH (ACH in) are being posted to one GL account set- up for such payments +++++++++1. Going forward, we want to post customer incoming ACH payments to seperate GL account and all the other incoming ACH's should keep on posted to the old account +++++++++1. I do not have exposure to configuring EBS and not sure how should I configure this.
    I would really apreciate if you can guide me with step by step details to do this set-up.
    Thanks,
    Best Regards,
    Shalu

    Usually ACH in or outgoing, the corresponding bank will send you a code.
    so once you get into the config item for EBS
    1. you create account symbols( ACHPAY and ACHPAY2) and assign accounts (++++1 and a debit account ++++2) respectively
    2. Create posting keys, usually this is mimicked with a Z attached to the bank code for ACH payments (EX: 675 is the BAI code for ACH, create a posting key with Z675)
    3. create rules for the same posting keys like debit and credit account symbols, doc types, what kind of postings it should post( clearing entry or posting to GL)
    4. Create a transaction type and in the following step create external transaction types (usually bank BAI codes) and map them to posting rules and the processing types
    5. finally map bank accounts to transaction types

  • Issue with electronic bank statement upload

    Hi All,
              Presently I face an inssue in posting electronic bank statement upload (Tcode - ff_5).
    The scenario goes like this.
             First we do payment to vendor using 'f110' transaction.Here the document currency is different from local currency.Let us say we paid 100 EBP i.e, approximately 177 USD.
    After the payment we get statement from Bank (in this case BAI format).In the bank statement due to exchange rate difference the amount will not be exactly 177 USD but slightly different like 185 USD or may be 170 USD.
           At this point we have to upload this statement using transaction 'FF_5' to system.Here obviously the differential amount goes to the system ( 185 USD or 170 USD).
    Now the issue is we have to post this difference amount like USD 8 or USD 7 to a specific GL account ( 11800 or any other GL acc number ).
    The 'FF_5' transaction updates the tables 'FEBKO,FEBEP' by using the programs 'RFEBBU00',
    'RFEBBU10'.There is an exit also like 'FEB00001'. We can put this difference amount in one of the fields of FEBEP table by using this exit.
       But the point I don't know is how to post this difeerence amount 8 or 7 USD to a specific G/l account ? I could not locate in the above program 'RFEBBU00' where the posting happens ?
    Thanks for any help.
    Vinod.

    Hi Sharaad & Naga,
                         Thanks for the replies.One more doubt, Will I have to use these function modules inside the exit or do I need to change the sap standard program to incorporate these FM calls ?
    Thanks
    Vinod.

  • Issue with Oracle Merge statements (PL/SQL: ORA-00913: too many values)

    Hi All,
    I am using the below merge statement and I am getting too many rows issues when I am compiling.
    BEGIN
    FOR te_rec IN ( SELECT /*+ parallel(ts,4) */ te.dtv_acct_num FROM telcos_eligible te, telcos_setup ts, telcos_partners tp
    WHERE tp.telcos_name = UPPER((p_telcos_name))
    AND ts.partner_id = tp.partner_id
    AND te.ts_id = ts.ts_id ) LOOP
    MERGE INTO tcs_accounts
    USING (
    SELECT /*+ DRIVING_SITE(a) */account_id, a.subscriber_id, status, account_type FROM account@tcs_to_paris a WHERE a.subscriber_id = te_rec.dtv_acct_num
    ) paris_accounts
    ON (tcs_accounts.subscriber_id = paris_accounts.subscriber_id)
    WHEN MATCHED THEN
    UPDATE SET
    account_type = paris_accounts.account_type,
    subscriber_id = paris_acounts.subscriber_id,
    status = paris_accounts.status
    WHEN NOT MATCHED THEN
    INSERT(account_id, subscriber_id, status_account_type)
    VALUES(paris_accounts.account_id, paris_accounts.subscriber_id, paris_accounts.status, paris_accounts.account_type);
    END LOOP;
    END;
    Can you let me know what is the issue here.
    Thanks,
    MK.

    Hi,
    Maddy wrote:
    ... WHEN NOT MATCHED THEN
    INSERT(account_id, subscriber_id, status_account_type)
    VALUES(paris_accounts.account_id, paris_accounts.subscriber_id, paris_accounts.status, paris_accounts.account_type);This is one of the many times when a little formatting can really help you. Anybody can forget a column (or have an extra one, or type a _ when they mean ,) but if you write code like this
    INSERT (               account_id,                 subscriber_id,                                  status_account_type)
    VALUES (paris_accounts.account_id,  paris_accounts.subscriber_id,  paris_accounts.status,  paris_accounts.account_type);you might spot the error yourself.
    Always format your code. When you post any formatted text on thsi site, type these 6 characters:
    \(small letters only, inside curly brackets) before and after formatted text, to preserve spacing.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • TDE Issue with UPDATE/SELECT statement

    We just implemented TDE on a table and now our import script is getting errors. The import script has not changed and has been running fine for over a year. The script failed right after applying TDE on the table.
    Oracle 10g Release 2 on Solaris.
    Here are the encrypted colums:
    COLUMN_NAME ENCRYPTION_ALG SALT
    PERSON_ID AES 192 bits key NO
    PERSON_KEY AES 192 bits key NO
    USERNAME AES 192 bits key NO
    FIRST_NAME AES 192 bits key NO
    MIDDLE_NAME AES 192 bits key NO
    LAST_NAME AES 192 bits key NO
    NICKNAME AES 192 bits key NO
    EMAIL_ADDRESS AES 192 bits key NO
    AKO_EMAIL AES 192 bits key NO
    CREATION_DATE AES 192 bits key NO
    Here is the UPDATE/SELECT statement that is failing:
    UPDATE cslmo_framework.users a
           SET ( person_id
               , username
               , first_name
               , middle_name
               , last_name
               , suffix
               , user_status_seq
             = (
                 SELECT person_id
                      , username
                      , first_name
                      , middle_name
                      , last_name
                      , suffix
                      , user_status_seq
                   FROM cslmo.vw_import_employee i
                  WHERE i.person_key = a.person_key
         WHERE EXISTS
                   SELECT 1
                     FROM cslmo.vw_import_employee i
                    WHERE i.person_key = a.person_key
                      AND (    NVL(a.person_id,0)        <> NVL(i.person_id,0)
                            OR NVL(a.username,' ')       <> NVL(i.username,' ')
                            OR NVL(a.first_name,' ')     <> NVL(i.first_name,' ')
                            OR NVL(a.middle_name,' ')    <> NVL(i.middle_name,' ')
                            OR NVL(a.last_name,' ')      <> NVL(i.last_name,' ')
                            OR NVL(a.suffix,' ')         <> NVL(i.suffix,' ')
                            OR NVL(a.user_status_seq,99) <> NVL(i.user_status_seq,99)
    cslmo@awpswebj-dev> exec cslmo.pkg_acpers_import.p_users
    Error importing USERS table.START p_users UPDATE
    Error Message: ORA-01483: invalid length for DATE or NUMBER bind variableI rewrote the procedure using BULK COLLECT and a FORALL statement and that seems to work fine. Here is the new code:
    declare
       bulk_errors EXCEPTION ;
       PRAGMA EXCEPTION_INIT(bulk_errors,-24381) ;
       l_idx      NUMBER ;
       l_err_msg  VARCHAR2(2000) ;
       l_err_code NUMBER ;
       l_update   NUMBER := 0 ;
       l_count    NUMBER := 0 ;
       TYPE person_key_tt
           IS
               TABLE OF cslmo_framework.users.person_key%TYPE
                    INDEX BY BINARY_INTEGER ;
       arr_person_key   person_key_tt ;
       TYPE person_id_tt
           IS
              TABLE OF cslmo_framework.users.person_id%TYPE
                    INDEX BY BINARY_INTEGER ;
       arr_person_id   person_id_tt ;
       TYPE username_tt
          IS
              TABLE OF cslmo_framework.users.username%TYPE
                   INDEX BY BINARY_INTEGER ;
       arr_username   username_tt ;
       TYPE first_name_tt
          IS
             TABLE OF cslmo_framework.users.first_name%TYPE
                  INDEX BY BINARY_INTEGER ;
       arr_first_name   first_name_tt ;
       TYPE middle_name_tt
         IS
             TABLE OF cslmo_framework.users.middle_name%TYPE
                 INDEX BY BINARY_INTEGER ;
       arr_middle_name   middle_name_tt ;
       TYPE last_name_tt
             IS
                TABLE OF cslmo_framework.users.last_name%TYPE
                     INDEX BY BINARY_INTEGER ;
       arr_last_name   last_name_tt ;
       TYPE suffix_tt
             IS
                TABLE OF cslmo_framework.users.suffix%TYPE
                     INDEX BY BINARY_INTEGER ;
       arr_suffix   suffix_tt ;
       TYPE user_status_seq_tt
             IS
                TABLE OF cslmo_framework.users.user_status_seq%TYPE
                     INDEX BY BINARY_INTEGER ;
       arr_user_status_seq   user_status_seq_tt ;
       CURSOR users_upd IS
          SELECT  i.person_key
                 ,i.person_id
                 ,i.username
                 ,i.first_name
                 ,i.middle_name
                 ,i.last_name
                 ,i.suffix
                 ,i.user_status_seq
          FROM   cslmo.vw_import_employee i ,
                 cslmo_framework.users    u
          WHERE  i.person_key = u.person_key ;
    begin
       OPEN users_upd ;
       LOOP
            FETCH   users_upd
             BULK
          COLLECT
             INTO    arr_person_key
                   , arr_person_id
                   , arr_username
                   , arr_first_name
                   , arr_middle_name
                   , arr_last_name
                   , arr_suffix
                   , arr_user_status_seq
            LIMIT         100 ;
            FORALL idx IN 1 ..  arr_person_key.COUNT
                SAVE EXCEPTIONS
                UPDATE cslmo_framework.users u
                  SET
                       person_id                =   arr_person_id(idx)
                     , username                 =   arr_username(idx)
                     , first_name               =   arr_first_name(idx)
                     , middle_name              =   arr_middle_name(idx)
                     , last_name                =   arr_last_name(idx)
                     , suffix                   =   arr_suffix(idx)
                     , user_status_seq          =   arr_user_status_seq(idx)
                 WHERE u.person_key = arr_person_key(idx)
                 AND
                       ( NVL(u.person_id,0) != NVL(arr_person_id(idx),0)
                 OR
                         NVL(u.username,' ') != NVL(arr_username(idx),' ')
                 OR
                         NVL(u.first_name,' ') != NVL(arr_first_name(idx),' ')
                 OR
                         NVL(u.middle_name, ' ') != NVL(arr_middle_name(idx), ' ')
                 OR
                         NVL(u.last_name,' ') != NVL(arr_last_name(idx),' ')
                 OR
                         NVL(u.suffix,' ') != NVL(arr_suffix(idx),' ')
                 OR
                         NVL(u.user_status_seq,99) != NVL(arr_user_status_seq(idx),99)
          l_count := arr_person_key.COUNT ;
          l_update := l_update + l_count ;
          EXIT WHEN users_upd%NOTFOUND ;
       END LOOP ;
       CLOSE users_upd ;
       COMMIT ;
       dbms_output.put_line('updated records: ' || l_update);
       EXCEPTION
          WHEN bulk_errors THEN
               FOR i IN 1 .. sql%BULK_EXCEPTIONS.COUNT
               LOOP
                  l_err_code   :=   sql%BULK_EXCEPTIONS(i).error_code ;
                  l_err_msg    :=   sqlerrm(-l_err_code) ;
                  l_idx        :=   sql%BULK_EXCEPTIONS(i).error_index;
                  dbms_output.put_line('error code: ' || l_err_code);
                  dbms_output.put_line('error msg: ' || l_err_msg);
                  dbms_output.put_line('at index: ' || l_idx);
               END LOOP ;
               ROLLBACK;
               RAISE;
    end ;
    cslmo@awpswebj-dev> @cslmo_users_update
    updated records: 1274There are about 20 or so other procedure in the import script. I don't want to rewrite them.
    Does anyone know why the UPDATE/SELECT is failing? I checked Metalink and could not find anything about this problem.

    This is now an Oracle bug, #9182070 on Metalink.
    TDE (transparent data encryption) does not work when an update/select statement references a remote database.

  • Issue with Electroni bank statement

    Hi Gurus
    while uplaoding the EBS file i got the error message tht do not have authrorization for FB01, i was not tried to post any thing with FB01 but i understood that i this program might caled the FB01 transactin in back ground
    when i see the statemtnt in FF67 it got posted for few documents and for few it was showing that to be posted
    what is the problme i cont understand, once it says that i dont have authorization it shuld not post all the transacton,
    any one can explain the reason ond the soltuion what to do with this
    regards
    Sunitha

    Yes you are right. Please give to your user authrorization for FB01and I think that EBS will be posted.
    Cheers

  • Issue with CHAIN (FIELD) statements, apparently

    Hi,
    I have the following code for a screen:
    PROCESS BEFORE OUTPUT.
      MODULE pfstatus.
    PROCESS AFTER INPUT.
      MODULE d9000exit AT EXIT-COMMAND.
      CHAIN.
        FIELD:  sl_matnr MODULE check_sl_matnr,
                sl_kdgrp MODULE check_sl_kdgrp,
    *            sl_atwrt MODULE check_sl_atwrt,
                sl_valdt,
                sl_lifnr MODULE check_sl_lifnr,
                sl_prcno MODULE check_sl_prcno.
      ENDCHAIN.
      MODULE navigation_9000.
    PROCESS ON VALUE-REQUEST.
      FIELD  sl_prcno MODULE f4_sl_prcno.
    The user complains that the search help for sl_prcno doesn't work - which is true - but only when I don't heat ENTER after entering/choosing data in the screen for the rest of the fields (since this search help depends on the value inputed by the user for SL_MATNR, for instance). Indeed, if I provide a value for the material number field, which is stored as SL_MATNR, the variable keeps empty unless I hit ENTER before entering the search help.
    My question is: is the problem related to the way this has been coded - CHAIN/FIELD statements ? From what I read from the help, the FIELD statement is responsible for when the data inputed in the screen is passed to the global variable designed to that field - which seems to be exactly the problem (the global variable doesn't get the value unless the user hits ENTER before clicking on the search help).  Does this make sense/was this expected to work this way ? Or is there something I can do to fix this ?
    Thanks in advance,
    Avraham
    Edited by: Avraham Kahana on Oct 19, 2009 5:20 PM

    I had to implement a help system for a field which depends on the data on the other field, it doesn't have chains, and it has the same behaviour. It does not process the help unless the data in the first field has been validated by sap (and translated to upper case in the process).
    What I've noticed is that if you hit the button for the select-options fields instead of the f4 matchcode, SAP already validates prior entered data, so the help works as intended without pressing enter.

  • Performance issue with Printing AR Statements

    We are using XML Publisher 5.2. We are usign XML Publisher to print our AR statements.
    To print our statements, it took us nearly 6-8 hrs for the entire process.
    Is there any performance tuning parameters, that we should set in order to improve the performance.
    Thanks,
    - vasu -

    Thats way too long ... should have been 1/2 hr at most based on our tests. Please log a TAR and be sure to load template and the XML data (yes all of it :o) and we can take a look.
    Regards, Tim

  • USMT 4.0 - Issues with Migrating User States

    I setup a task sequence to capture user state, apply OS, and release user state but I am running into some errors...
    These are the main errors I am getting if you don't want to look at the smsts.log:
     The previous step (either capture or restore user state) has failed, so marking the current action as failed too OSDSMPClient 1/8/2014 3:06:51 PM 5948 (0x173C)
    Failed to run the action: Release User State Storage. Unknown error (Error: 00004005; Source: Unknown) TSManager 1/8/2014 3:06:51 PM 2280 (0x08E8)
     The execution of the group (Capture Files and Settings) has failed and the execution has been aborted. An action failed.Operation aborted (Error: 80004004; Source: Windows) TSManager 1/8/2014 3:06:51 PM 2280 (0x08E8)
    Failed to run the last action: Release User State Storage. Execution of task sequence failed. Unknown error (Error: 00004005; Source: Unknown) TSManager 1/8/2014 3:06:51 PM 2280 (0x08E8)
    Any help would be greatly appreciated.

    Hi,
    Also, I recommend you check the log file loadstate.log on the client.
    It records details about the User State Migration Tool (USMT) and restoring user state data.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Issues when installing Windows XP on a PXI-8108 with a Solid State HDD

    Hi,
    I have been assisting a client with installing Windows XP onto a PXI-8108 controller.  They have replaced the default HDD with a solid-state HD.
    We have attempted to run the System Recovery CD.  The recovery part works fine, ie. you select Acronis, it unzips all the files to C drive. 
    However when it gets up to the bit where Win XP Setup starts (after rebooting once the Recovery section completes), we have issues.
    It can't find files, ie. dmconfig.dll, gm.dls, etc on the Win XP CD.  When it tries to find mfc40u.dll, it came up with an error:
    "The file Setup placed on your hard drive is not a valid Win XP System image.  If you are installing from a CD, there may be a problem with the Windows XP CD."
    We have tried two different recovery CDs, and we even tried just a plain Win XP CD.  All had similar issues.
    We have tried different SATA settings in the BIOS - both IDE AND AHCI.
    It may just be that we have a faulty SSD, however it seemed to work ok when we had it connected to the PXI via USB (with the default HDD still in place).  I was able to run diskcheck, which did not bring up any errors.  Disk Management showed things were healthy.
    So what I would like to know, is if there is any issue with a PXI-8108, and SSDs?  We have successfully performed this operation a few months back using the same brand of SDD, but with a PXI-8104.
    Any suggestions would be much appreciated!
    Christopher Farmer
    Certified LabVIEW Architect
    Certified TestStand Developer
    http://wiredinsoftware.com.au

    This is more than likely a failing disk.  SSDs don't always report failures in the same way as a rotating drive.  Also, the tools that are helpful with diagnosing rotating drive failures don't always work with SSDs.
    From the thread, it sounds like you have another system with this same SSD and it is working properly.  Does that system have the same PXI Controller and Chassis?
    I have seen these types of errors if the media for the OS installation is corrupt, but it sounds like you have tried different CDs.
    I realize you have limited access to this drive, but here are my recommendations:
    1)  Put the failing SSD in a different system (desktop is preferable), and install a base version of XP.  If this fails, RMA the drive, they normally have 3-5 warranties.
    2)  Run Crystal Mark Info and check for SMART failures:
    http://crystalmark.info/software/CrystalDiskInfo/i​ndex-e.html
    3)  You can securely erase the SSD, which is not for the faint of heart.  This will restore the drive to a new condition.  If the drive has a bad cell which is causing data corruption during the OS install, securely erasing the drive will hopefully cause the firmware to map out the bad areas.  This is a good tutorial, just ignore that fact that it is targeted at Intel drives.
    http://www.iishacks.com/2009/06/30/how-to-secure-e​rase-reset-an-intel-solid-state-drive-ssd/
    I hope this helps out,
    Regards,
    Andrew Mierau
    Project Engineer - Servers & RAID Storage
    National Instruments

  • Issue with Select options in select statement - ABAP Question

    Hi
    I am facing an issue with select options. Select statement is returning sy-subrc as 4.
    I wrote the program as below:
    SELECT-OPTIONS:
    s_kunnr FOR bsad-kunnr,
    s_lifnr FOR bsak-lifnr,
    s_gjahr FOR bsad-gjahr,
    s_bukrs FOR bsad-bukrs,
    s_saknr FOR bsad-saknr,
    s_budat FOR bsak-budat.
    In start of selection I have written the select statement as
    SELECT * FROM bsak INTO TABLE lt_bsak
    WHERE bukrs IN s_bukrs AND lifnr = s_lifnr AND gjahr IN s_gjahr AND budat IN s_budat AND saknr IN s_saknr.
    In selection screen I have not entered any values and executed the program. I am not getting any result. When I debug that, sy-subrc is 4 at above select statement. But table has records.
    If am removing the "lifnr = s_lifnr " condition in select then select is returning values.
    I am not getting where I made the mistake. Please suggest.
    Thank you
    Hanu

    Hi,
    The problem here with where condition select option lifnr = s_lifnr.
    Use below select query.
    SELECT * FROM bsak INTO TABLE lt_bsak
    WHERE bukrs IN s_bukrs
        AND lifnr     IN s_lifnr
        AND gjahr   IN s_gjahr
        AND budat  IN s_budat
        AND saknr  IN s_saknr.
    s_lifnr is a select option and you are passing it as parameter lifnr = s_lifnr.
    if you want to pass this s_lifnr as single vale then pass in below mentioned way.
    lifnr = s_lifnr-low
    BR,
    Vijay

  • Has anybody had an issue with System State Backups on a Dell PowerEdge R510 Server running Server 2008 R2?

    Hi,
    We have recently had issues running system state backups on our 2008 R2 Domain Controllers.  They are running on Dell PowerEdge R510 Physical Hardware.  Whenever you initiate a system state backup,  the Domain Controller becomes unresponsive
    forcing us to physically reboot it.   Nothing in the Event logs or the Dell Open Management Hardware Software indicates issues with Phyiscal disks but we can always replicate the issue by starting the system state backup. 
    The system state backup is initialted as a batch file that runs as a scheduled task.   the commands run are as follows:
    WBADMIN START SYSTEMSTATEBACKUP -backupTarget:[drive letter] -quiet
    We have 4 Domain Controllers with identical disk configurations.  When the DCs were setup I confirmed the system state backups were working but the issue started occuring sometime in Dec 2014.  We are going to run the Dell Hardware Update Utility
    to update the RAID, BIOS, Firmware updates but Has anyone experienced a similar issue that may have been triggerd by a Microsoft Patch?
    Thanks,
    Kevin C.
    kconway@fnalgov
    

    Hi Kevin,
    This issue could be due to the Mountmgr.sys driver incorrectly maintains a global mutex. This behavior causes a deadlock situation in the Mountmgr.sys driver.
    Please install the hotfix in the article below to resolve the issue:
    A computer stops responding because of a deadlock situation in the Mountmgr.sys driver in running Windows 7 or in Windows Server 2008 R2 
    http://support.microsoft.com/kb/2614892
    Best Regards,
    Mandy
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • HT4623 My computer is not taking the new update from itunes. It states that i do not have the requirements to finish the Install and that it was Installed incorrectly. I have never had any issue with any previous update regarding iTunes. What is the issue

    My computer is not taking the new update from itunes. It states that i do not have the requirements to finish the Install and that it was Installed incorrectly. I have never had any issue with any previous update regarding iTunes. What is the issue?

    Hi there Double2D,
    You may find the troubleshooting steps in the article below helpful.
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    -Griff W. 

Maybe you are looking for

  • Fast Motion of Video Clip and Playing in opposite direction

    Has anyone figured out how to speed up the motion of a clip yet or has figured out to reverse the play of a clip on this new version. It is unclear like previous versions how to do this.

  • New PR is being generated in MRP run

    Hi,   we have zero stock ,PO for 1000 Quantity & customer order for 1000 Quantity,So in MD04 material available Quantity is Zero. But system is showing ShpgNt(MRP element) 1000 after MRP run. Some one explain this why? MDO4 View as below 01.12.2009  

  • I have an iMac. I noticed that I have both versions 8 and 9 of Adobe Reader. Can I remove version 8 ?

    I have an iMac. I noticed that I have both versions 8 and 9 of Adobe Reader. Can I remove version 8 ?

  • Change user on runtime  in forms 10g

    Dear all, I want to switch user in oracle forms 10g runtime. for example I have three user "usr1", "usr2", "usr3" and one main user "main_system" In forms i have four button i.e bt1,bt2,bt3,bt4 Currently when user access the forms user is "main_syste

  • Weblogic.XML - Dynamic JNDI

    All, In my current application we have cluster set up with JDBC Session Replication enabled. Unfortunately, i was forced to give the persistent-store-pool and persistent-store-table value directly in the weblogic.xml. Is there any way, where i can co