Update SQL with Pivot on 11g

Smart brains, need help to make SQL -.

This is the simple requirement-

Table X
COLUMN A. COLUMN B
====================
NEW YORK CITY
ETIENNE OF THE CITY
CITY HKG
CITY OF PSC
CITY MOM
FRA CITY

Table Y
COL ATT1 | COL ATT2 | COL ATT3 | COL ATT4 | COL ATT4 | COL ATT5 | COL ATT6 | COL ATT7 | COL ATT8 | COL ATT9 | COL ATT10
=======================================================================================

There are N lines in table X, and values are not known
There are always > table Y N columns and are fixed named

I'm looking for a clever way (database 11g) to formulate an SQL UPDATE to update the table Y with column B of table X - see the output below.
I tried the traditional pivots in pL - SQL, but is not a satisfactory until it.interesting thing here is the number of
lines in the table as x varies.

Table Y

COL ATT1 | COL ATT2 | COL ATT3 | COL ATT4 | COL ATT4 | COL ATT5 | COL ATT6 | COL ATT7 | COL ATT8 | COL ATT9 | COL ATT10
======================================================================================
NYC HNY HGK GSP MOM FRA

Thank you
Bobin

Hi, Blanco,

Blanchy... wrote:
... There are N lines in table X, and values are not known

You can use the ROW_NUMBER analytic function to assign known values for use in the query.

There are always > N columns in the table Y and are fixed named

I'm looking for a clever way (database 11g) to formulate an SQL UPDATE to update the table Y with column B of table X - see the output below.
I tried the traditional pivots in pL - SQL, but is not a satisfactory until it.interesting thing here is the number of
lines in the table as x varies.

What have you tried?
What was unsatisfactory on these methods?
How can we avoid the things you don't like about them if you give some tips on what they were?

Here is an example using the Oracle 11 PIVOT function:

WITH     got_r_num     AS
(
     SELECT     column_b
     ,     ROW_NUMBER () OVER (ORDER BY  column_b)     AS r_num
     FROM     table_x
--     WHERE     ...
)
SELECT     *
FROM     got_r_num
PIVOT     (     MIN (column_b)
     FOR     r_num
     IN     (     1     AS att1
          ,     2     AS att2
          ,     3     AS att3
--          ,     ...
          )
     )
;

It should be easy to write an INSERT statement by using it.

Tags: Database

Similar Questions

  • Report of update SQL query with line selector. Update process.

    I have a report of update SQL query with the selectors in line.
    How to identify line selector in a process update on the page.

    I want to update some columns with a value of an area of selection on the page.

    With the help of the base:

    UPDATE table_name
    SET Column1 = value
    WHERE some_column = some_value

    I would need to do:

    UPDATE table_name
    SET column1 =: P1_select
    WHERE [line selector] =?

    Now sure how to identify [line selector] and/or validate it is checked.
    Thank you
    Bob

    Identify the name of the checkbox of the source of the page element, it should be of the fxx format (f01, f02... f50).
    Suppose that we f01.

    for i in 1 .. apex_application.g_f01.count
    loop
      UPDATE CONTRACTS
      SET SIP_LOAD_FLAG = :P16_STATUS
      where  =  apex_application.g_f01(i); --i'th checked record' primary key
    end loop;
    
  • Update the elements of pl/sql with variable name?

    I want to be able to update some elements of pl/sql page.

    for example can you do with apex as you can do it with vb

    --------------------------------------------------------------

    for I = 1... 10

    :var_I:= I; <-this is my problem how do I update: var_1 with 1... : var_2 with 2... etc...

    end loop;

    ---------------------------------------------------------------

    How can I do this?

    Published by: user13102891 on 05/10/2010 18:15

    Something along these lines should do

    for i in 1..10 loop
      apex_util.set_session_state ('var_' || i ,i);
    end loop;
    

    useful references

    http://download.Oracle.com/docs/CD/B19306_01/AppDev.102/b14261/controlstructures.htm#sthref945
    http://download.Oracle.com/docs/CD/E14373_01/apirefs.32/e13369/apex_util.htm#CHDBGEEC

    CITY

  • Bulletins of update error: ' error: failure of the verification of signatures for: message XML Update SQL.

    Hi all

    I get this error when when looking for Windows newsletters (Patching-> Windows-> news-> news-> control upgrade). Looking at the Task Manager, I see "error: failure of the verification of signatures for: message XML Update SQL.

    I use the latest version vCM 5.8.2. I found another post here on this subject, which mentioned that the KB 2050220 fixed the problem, but it does not work for me .

    You have any other ideas I could try? Where would the real logs that could help me understand what the problem?

    Thank you.

    Well, what it fixed.  Looked in the debugging information, and indeed it was related to the KB 2050220:

    Level: error

    Time: 17/04/2016 10:53:43:460

    ClassName: clsPatchVerification

    FuncName: VerifyPatch

    MSG: (0) downloaded the file: C:\Program Files (x86)\VMware\VCM\Sum\Collector\SUM2_postxml.sql.cab has not a signature of trust manager of Configuration of VMware. Certificate IssuedTo: The issuer of the certificate VMware, Inc.: SHA2 DigiCert assured ID Code signing CA

    SourceDesc: UI

    RequestId: default

    JobId:

    JobMachineName:

    The problem with the added SQL KB is it is old... is no longer reflecting the reality, as the certificate of the cabin has now SHA2 DigiCert assured ID Code Signing CA, and not DigiCert assured ID Code Signing CA - 1 as written in the query SQL attached to the KB.

    That's why we:

    Original VMware KB:

    SET QUOTED_IDENTIFIER ON

    SET ANSI_NULLS

    IF NOT EXISTS

    (

    SELECT *.

    OF dbo.ecm_sysdat_certificate_configuration_settings_ui

    WHERE configuration_name = "DigiCert assured ID Code Signing CA - 1"

    )

    BEGIN

    INSERT INTO dbo.ecm_sysdat_certificate_configuration_settings_ui

    (

    configuration_name,

    configuration_description,

    is_subject,

    is_issuer,

    is_configuration_allowed,

    last_modified_by_id,

    last_modified_datetime

    )

    VALUES

    (

    "DigiCert assured ID Code Signing CA - 1",

    NULL,

    0,

    1,

    1,

    NULL,

    NULL VALUE

    )

    END

    GO

    FIX:

    SET QUOTED_IDENTIFIER ON

    SET ANSI_NULLS

    IF NOT EXISTS

    (

    SELECT *.

    OF dbo.ecm_sysdat_certificate_configuration_settings_ui

    WHERE configuration_name = "SHA2 DigiCert assured ID Code Signing CA"

    )

    BEGIN

    INSERT INTO dbo.ecm_sysdat_certificate_configuration_settings_ui

    (

    configuration_name,

    configuration_description,

    is_subject,

    is_issuer,

    is_configuration_allowed,

    last_modified_by_id,

    last_modified_datetime

    )

    VALUES

    (

    "DigiCert assured SHA2 Code ID signing CA",

    NULL,

    0,

    1,

    1,

    NULL,

    NULL VALUE

    )

    END

    GO

  • Cannot display the results to the database during "Update": SQL statement

    Hello

    I get this error trying to update a VO via the UI or BCBrowser.

    Cannot display the results to the database during "Update": SQL statement

    This is a default single front & right THAT VO creates on the object of the entity (Database Table)

    On the same table and with the same credentials of DB, I could update the record.

    Any guess on what went wrong?

    Thanks in advance for any help.

    p.s Jdev 11.1.1.6

    Journal:

    oracle.jbo.DMLException: Houston-26041: could not publish data from database in "Update": SQL statement "START the CAR UPDATED CarEO SET SEL_ITEM =: 1 WHERE TXN_NO =: 2 AND LOGID =: AND SEQNO = 3: 4 POLL DELIVERY_MODE, CERTIFICATION_REQ, SOFT_COPY_IND, SELITEM IN: 5,: 6,: 7,: 8; END; ».

    at oracle.jbo.server.OracleSQLBuilderImpl.doEntityDML(OracleSQLBuilderImpl.java:583)

    at oracle.jbo.server.EntityImpl.doDML(EntityImpl.java:8575)

    at oracle.jbo.server.EntityImpl.postChanges(EntityImpl.java:6816)

    at oracle.jbo.server.DBTransactionImpl.doPostTransactionListeners(DBTransactionImpl.java:3290)

    at oracle.jbo.server.DBTransactionImpl.postChanges(DBTransactionImpl.java:3093)

    at oracle.jbo.server.DBTransactionImpl.commitInternal(DBTransactionImpl.java:2097)

    at oracle.jbo.server.DBTransactionImpl.commit(DBTransactionImpl.java:2378)

    at oracle.adf.model.bc4j.DCJboDataControl.commitTransaction(DCJboDataControl.java:1615)

    at oracle.adf.model.binding.DCDataControl.callCommitTransaction(DCDataControl.java:1417)

    at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1437)

    at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2150)

    at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:740)

    at oracle.jbo.uicli.jui.JUActionBinding.actionPerformed(JUActionBinding.java:193)

    at oracle.jbo.uicli.controls.JUNavigationBar.doAction(JUNavigationBar.java:412)

    at oracle.jbo.jbotester.NavigationBar.doAction(NavigationBar.java:111)

    to oracle.jbo.uicli.controls.JUNavigationBar$ NavButton.actionPerformed (JUNavigationBar.java:118)

    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)

    in javax.swing.AbstractButton$ Handler.actionPerformed (AbstractButton.java:2318)

    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)

    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)

    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)

    at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272)

    at java.awt.Component.processMouseEvent(Component.java:6289)

    at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)

    at java.awt.Component.processEvent(Component.java:6054)

    at java.awt.Container.processEvent(Container.java:2041)

    at java.awt.Component.dispatchEventImpl(Component.java:4652)

    at java.awt.Container.dispatchEventImpl(Container.java:2099)

    at java.awt.Component.dispatchEvent(Component.java:4482)

    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)

    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)

    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)

    at java.awt.Container.dispatchEventImpl(Container.java:2085)

    at java.awt.Window.dispatchEventImpl(Window.java:2478)

    at java.awt.Component.dispatchEvent(Component.java:4482)

    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)

    to java.awt.EventQueue.access$ 000 (EventQueue.java:85)

    in java.awt.EventQueue$ 1.run(EventQueue.java:603)

    in java.awt.EventQueue$ 1.run(EventQueue.java:601)

    at java.security.AccessController.doPrivileged (Native Method)

    in java.security.AccessControlContext$ 1.doIntersectionPrivilege(AccessControlContext.java:87)

    in java.security.AccessControlContext$ 1.doIntersectionPrivilege(AccessControlContext.java:98)

    in java.awt.EventQueue$ 2.run(EventQueue.java:617)

    in java.awt.EventQueue$ 2.run(EventQueue.java:615)

    at java.security.AccessController.doPrivileged (Native Method)

    in java.security.AccessControlContext$ 1.doIntersectionPrivilege(AccessControlContext.java:87)

    at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)

    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)

    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)

    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)

    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)

    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)

    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)

    Caused by: java.sql.SQLException: invalid column type

    at oracle.jdbc.driver.OracleCallableStatement.registerOutParameterInternal(OracleCallableStatement.java:150)

    at oracle.jdbc.driver.OracleCallableStatement.registerOutParameter(OracleCallableStatement.java:399)

    at oracle.jdbc.driver.OracleCallableStatement.registerOutParameter(OracleCallableStatement.java:581)

    at oracle.jdbc.driver.OracleCallableStatementWrapper.registerOutParameter(OracleCallableStatementWrapper.java:1765)

    at oracle.jbo.server.OracleSQLBuilderImpl.bindUpdateStatement(OracleSQLBuilderImpl.java:2243)

    at oracle.jbo.server.EntityImpl.bindDMLStatement(EntityImpl.java:10524)

    at oracle.jbo.server.OracleSQLBuilderImpl.doEntityDML(OracleSQLBuilderImpl.java:412)

    ... 52 more

    The problem is solved now.

    new columns added to the database table, after the creation of the entity object. Those changes were not picked up in the entity object.

    I found this difference after object entity with the DB Table comparison.

    And when I added these new columns to EO & VO, I don't get this error more.

    Thanks to all who tried to help

  • The code formatting Pl/Sql with carriage returns

    According to the Guide (User Guide for the PL/SQL and reference page 2-2)
    It must be valid to use carriage returns for formatting:
    "To view the structure, you can separate the lines using carriage returns and withdrawal lines help
    spaces or tabs. This formatting makes the first IF statement more readable. »

    But I get an error when I try it.

    It seems as if there is no problem using line break, but I only have access to Oracle running under Windows.
    I'm looking for confirmation (by experience or inside knowledge),
    that is the case for all platforms (or at least Windows, Solaris and Linux)


    Test scenario
    select banner from v$version;
    BANNER
    ------------------------------------------------------------
    Oracle Database 10g Release 10.2.0.4.0 - 64bit Production
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for 64-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    
    5 rows selected.
    
    
    declare
      nl   varchar2(2) := chr(10);
      stmt varchar2(1000);
    begin
      stmt := 'begin' || nl
           || '  dbms_output.put_line(''Hello'');' || nl
           || 'end;';
      execute immediate stmt;
    end;
    /
    Hello
    
    PL/SQL procedure successfully completed.
    
    
    declare
      nl   varchar2(2) := chr(13) || chr(10);
      stmt varchar2(1000);
    begin
      stmt := 'begin' || nl
           || '  dbms_output.put_line(''Hello'');' || nl
           || 'end;';
      execute immediate stmt;
    end;
    /
    declare
    *
    ERROR at line 1:
    ORA-06550: line 1, column 6:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    begin case declare exit for goto if loop mod null pragma
    raise return select update while with <en identifikator>
    <en identifikator, der er afgrµnset vha. dobbelte anf°rselstegn>
    <en tilknytningsvariabel> << close current delete fetch lock
    insert open rollback savepoint set sql execute commit forall
    merge pipe
    The symbol "" was ignored.
    ORA-06550: line 2, column 33:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    begin case declare end exception exit for goto if loop mod
    null pragma raise return select update while with
    <en identifikator>
    <en identifikator, der
    ORA-06512: at line 8
    
    
    Same error when using CR only
    
    Same error on 9i
    BANNER
    ------------------------------------------------------
    Oracle9i Release 9.2.0.6.0 - Production
    PL/SQL Release 9.2.0.6.0 - Production
    CORE    9.2.0.6.0       Production
    TNS for 32-bit Windows: Version 9.2.0.6.0 - Production
    NLSRTL Version 9.2.0.6.0 - Production
    
    5 rows selected.

    When you have tested 9.2.0.8 (Unix), it runs without problem when you used only a PMQ?

    Yes, no problem:

    SQL> select * from v$version where rownum = 1
    
    BANNER
    ----------------------------------------------------------------
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    1 row selected.
    SQL> declare
     nl varchar2(1) := chr(10);
    begin
      execute immediate  'begin ' || nl  || '  dbms_output.put_line(''Hello'');' || nl || 'end;';
    end;
    /
    Hello
    PL/SQL procedure successfully completed.
    
    but
    
    SQL> declare
     nl varchar2(1) := chr(13);
    begin
      execute immediate 'begin ' || nl  || '  dbms_output.put_line(''Hello'');' || nl || 'end;';
    end;
    /
    Error at line 13
    ORA-06550: line 1, column 7:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare exit for goto if loop mod null pragma
       raise return select update while with 
         <<
       close current delete fetch lock insert open rollback
       savepoint set sql execute commit forall merge
        pipe
    The symbol "" was ignored.
    ORA-06550: line 1, column 40:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    
       begin case declare end exception exit for goto if loop mod
       null pragma raise return select update while with
        
    
  • iTunes update fails with 'a signature not valid '.

    iTunes update fails with 'a signature not valid '. What can cause this error

    I suspect a corrupted download. If you have trouble downloading the correct Installer iTunes try; Uncheck the box "Keep me updated", clear the cache of your browser, change the settings of the blocker, a right-click or ctrl - click on the download button, using a different browser, or by using the direct links here.

    See troubleshoot problems with iTunes for Windows updates if you have additional problems at the facility.

    TT2

  • Update fails with error code 652 "WindowsUpdate_00000652" "WindowsUpdate_dt000" Is there a solution?

    Update for Microsoft XML Core Services 4.0 Service Pack 2 for x 64 systems (KB973688). UPDATE FAILS WITH ERROR 652, ENCOUNTERED AN UNKNOWN ERROR.

    Download size: 5.4 MB

    Update type: Important

    Jim,
    Take a look at this article and see if applies: Mike KB971187 - engineer Microsoft Support responses
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Windows Update fails with Error 0x80072F76 on Windows 2003 server number

    I try to run windows update on my windows 2003 server. The update fails with number 0x80072F76 Errow. The Windows Firewall/Internet service Connection Sharing (ICS) is stopped and the security settings on IE is set by default. IE version is 8. The Windows Update screen is also not displayed correctly.

    You talk about servers, you use WSUS?

    Forum specific support by WSUS:
    http://social.technet.Microsoft.com/forums/en-us/winserverwsus/threads

  • Could not open the page to update windows with the error 80072efe

    Could not open the page to update windows with the error 80072efe

    0x80072EFE - ERROR_INTERNET_CONNECTION_ABORTED - the connection with the server has been terminated.

    How to reset the Windows Update components?
    http://support.Microsoft.com/kb/971058

    TaurArian [MVP] 2005-2010 - Update Services

  • Windows Update fails with error [error number: 0x800A0007]-which is not listed

    Windows update fails with error [error number: 0x800A0007]-which is not listed, so unable to update the system

    The other post:

    Thank you for your reply - but the problem persists - this is mopre complete info.
    The system starts well and runs - BUT I cannot now be updated because when I access "Windows Update" it always returns this error message.
    Also, none of the messages in your "appliesto" step 2 recommended link will be applied effectively.
    As far as I know - we have a standard system and I just ran again ONCE a full system virus etc check - all clean.
    Also your "Mr Fixit" was performed several times, but nothing changes.
    Because it enters the update process, and then always closes with this specific message (which as I said is NOT in your list of error messages), which SHOULD tell your software writers where is the problem.
    This is what is happening in the process of updating before it fails:
    Keep your computer up-to-date
    Check to see if you need updates for Windows, your programs, your hardware or your devices.

    Get updates of high priority (recommended)  

    Select among the priority and optional updates for Windows and other programs

    ... and it does not matter if I say "express" or "custom" - headed then:

    Checking for updates for your computer...

    but fails after a few seconds with the same message as follows:
    [Error number: 0x800A0007]
    The website has encountered a problem and cannot display the page you are trying to view. The options provided below may help you solve the problem.

    -However, it is the State of the system for more complete information for you:
     
    Name of the operating system Microsoft Windows XP Home Edition
    Version 5.1.2600 Service Pack 3 Build 2600
    Manufacturer of operating system Microsoft Corporation
    MISCHU06BLUE system name
    System manufacturer Compaq Presario 061
    ED865AA - ABA SR1610NX NA540 system model
    System Type X 86-based PC
    Processor x 86 family 15 model 47 Stepping 2 AuthenticAMD ~ 1790 Mhz
    Version/Date BIOS Phoenix Technologies, LTD 3.33, 17/08/2005
    SMBIOS Version 2.4
    Windows C:\WINDOWS directory
    System directory C:\WINDOWS\system32
    Boot Device \Device\HarddiskVolume2
    The local United States
    Hardware Abstraction Layer Version = "5.1.2600.5512 (xpsp.080413 - 2111).
    MISCHU06BLUE\Compaq_Owner user name
    Time zone Pacific Daylight Time
    Total physical memory 1 024,00 MB
    Available physical memory 468,50 MB
    Total virtual memory 2.00 GB
    Available virtual memory 1.96 GB
    Page file space 1.51 GB
    Paging file C:\pagefile.sys

    Please get us some help to solve this problem.
    What else can I provide?

    I didn't ask if it was a new issue or a new problem, I asked if she was the same computer?

    [This applies to your recent 'me, too' answer to another thread.]

  • Several updates fail with 0x8007001F

    Windows XP, 2699988 and 2632503 updates fail with 0x8007001F error code. He had 11 updates fail, manually installed microsoft.com/download 10, but could not be the last of them. Follow-up of the diagnoses of FixIt to manually reset Windows update, the re-registration of the DLL and clear the distribution of software with several stop folder net start commands, no solution.  Added an optional update and it did not. Tried several profiles and reboots.

    The user has installed Real Player about two weeks ago. Symentec Endpoint Protection started Pavilion virus after that. Do you have a manual removal of Real Player. Scanned and cleaned with MalwareBytes and seven. No other problems not reported except this problem of Windows Update.

    I paid $49 for support chat. Anoop representative quicky identified a rootkit virus. Fixed with Kapersky anti-rootkit utility TDSSKiller and complete a reset of settings IE. One of the symptoms that identified, he was Manager of disc appears not all discs. Closed question.

  • Windows updates fails with the 0X8007F064 error code

    Title: Windors update fails with Ox8007F064 failure code.

    This is a cumulative update for ActiveX Killbits for Windows XP.  I have tried Microsofts avenues and attach it to the M..  I ran Spyware, Malware and I continue to get the message that I have to update Windows, but it won't and gives me the Ox8007F064 fault code.  I can't find information about this code or help at this stage.

    Hello

    -What is the FIXIT have you tried to solve this problem?
    -Respect the limit with the specific update? If so, what is the update's KB number?
    -Did you do changes on the computer before this problem?
     
    Method 1: Run the Microsoft FIXIT from the link and if the problem persists.
    How to reset the Windows Update components?
    Warning: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    How to back up and restore the registry in Windows XP?
    http://support.Microsoft.com/kb/322756/
     
    Method 2: I also suggest you to follow the steps from the link and check if it helps.
    You cannot install some programs or updates
    http://support.Microsoft.com/kb/822798
    Warning: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:
    How to back up and restore the registry in Windows XP?
    http://support.Microsoft.com/kb/322756/
    Note: You can ignore the 7 method to perform the upgrade in-place.

    Method 3: If the problem persists, I also suggest that you install the updates in clean boot mode and check.

    Step 1: I suggest to maintain the computer in clean boot mode and check if the problem persists.
    A clean boot to check if startup item or services to third-party application is causing this issue.
    You can read the following article to configure the computer to boot:
    How to configure Windows XP to start in a "clean boot state"?
    http://support.Microsoft.com/kb/310353
    Note: After you have used the boot is a way to solve your problem, you can follow these steps to configure Windows XP to start normally.
    1. Click Startand then click run.
    2. Type msconfig and click OK.

    The System Configuration utility dialog box appears.
  • Click the general tab, click Normal Startup - load all device drivers and services, and then click OK.
  • When you are prompted, click restart to restart the computer.
  • Step 2: Try to install the updates manually and check.
    http://www.Microsoft.com/en-us/download/Windows.aspx?q=Windows&WT.mc_id=MSCOM_EN_US_DLC_ICONNAV_121LSUS007799

    For reference:

    Solve common installation issues in Windows Update, Microsoft Update and Windows Server Update Services

    http://support.Microsoft.com/kb/906602

    To update history:
    (a) click Start.
    (b) click on all programs, then select Windows Update.
    (c) select view update history.
     
    Hope this information helps.
  • KB2646524 update fails with 0 x 80070008 - tried 4 times - all the other updates ok

    KB2646524 Windows XP update fails with error code 0 x 80070008--he tried 4 times more one power cycle - all the other updates are successful.

    Hello

    I suggest you to follow the steps in these articles and check if they help.

    You may encounter temporary connection related errors when you use Windows Update or Microsoft Update to install updates

    You cannot install some programs or updates

  • Update Windows with LUA (error 0x8024200E)

    original title: update windows with LUA

    Running windows update on XP SP3 seems to require the account with administrator rights (Yes, I have no updates to download and install by themselves the value).

    My preference is a LUA approach and can use "run as" or makemeadmin and this allows me to download, but not install (error 0x8024200E).

    I would have thought there would be thousands of people already done this and an equivalent number of posts on how to do it.  Maybe, I'm not using the right words when searching for the answer... (so apologies if she is sitting within my reach - blind, darkroom, no black cat?)

    Any suggestions?

    Hi cough,

    See the link below and check if it helps.

    Applying the principle of least privileges in Windows XP user accounts

    http://TechNet.Microsoft.com/en-us/library/bb456992.aspx

Maybe you are looking for

  • OneKey recovery problem

    Hello.. Lenovo ideapad z580 with win 7 64 bit, I have... "I tried to recover from onekey recovery keys I use the recovey mode system but at this time there, I have error:"the program can not find the service partition. "This feature currently unavail

  • (Vista) computer does not start properly (Please HELP)

    My guarded vista stop without known reason. He started up the main login screen and I could connect. After that so long it would just turn off. I did a system restore, system repair at startup and F8 pressed and is entered in safe mode. Now, I have a

  • Rotation - display screen turned

    my child 4 years has a counterclockwise rotation of the wise screen view, how can I activate the screen so the view is right

  • How to optimize the performance of this query SQL

    HelloI need to find the age for each day, but I need for all previous dates in a single query. So I used the following query:Select trunc (sysdate) - level + 1 DATEtrunc (sysdate) - level + 1 - created_date AGEelementsconnect by trunc (sysdate) - lev

  • Hi is possible to send documents from different addresses / names without setting up another account?

    I use esign to signatures demand for a variety of different things & hold for this will be reflected in the name of the sender and / or email address.For example, HR docs would go to hr@example instead of charlotte@example