Failed to create index with imdp

I am trying to import an image with the following command:

Impdp user/pass DIRECTORY = SCHEMAS DUMPFILE = fump.dmp = originally_schema REMAP_SCHEMA = originally_schema:new_schema TABLE_EXISTS_ACTION = DATA_PUMP_DIR replace old = REMAP_TABLESPACE: new

I don't know how the dump has been exported.

Source DB version: 11.2.0.4

Destination DB version: 11.2.0.1

Everything works fine until it comes to the creation of index:

Processing object type SCHEMA_EXPORT/TABLE/INDEX/DOMAIN_INDEX/INDEX

ORA-39083: Type what INDEX failed to create object error:

ORA-06550: line 2, column 1:

PLS-00306: wrong number or types of arguments in the call to "CREATE_INDEX.

ORA-06550: line 2, column 1:

PL/SQL: Statement ignored

Because sql is:

BEGIN

ctxsys.driimp.create_index('I_SRC_NAME','SOURCES',User,'ID','2','NAME','1','1020','32','8130','33',, NULL, NULL, 0,'Y','ON COMMIT','12582912',, NULL, null);

ctxsys.driimp.set_object('DATASTORE','DIRECT_DATASTORE',0);

ctxsys.driimp.set_object ('TYPE ',' CHAR_)

Hope you can help me.

& then you cannot use V11.2.0.4 expdp use impdp since V11.2.0.1

expdp should include VERSION = 11.2.0.1

Tags: Database

Similar Questions

  • Create indexes with NOLOGGING option

    Hello

    Can you please provide solution on the following scenario?

    If I create indexes with NOLOGGING Tablespace that is created with the LOGGING option, option can you please let me know what are the effects on the database?

    If I create indexes using NOLOGGING on Tables that are created with the LOGGING option, can you please let me know that it is to increase performance during the creation / rebuild indexes?

    Thank you

    Published by: user12088323 on December 28, 2010 12:45

    Published by: user12088323 on December 28, 2010 12:47

    user12088323 wrote:
    The database is in log mode archive. I would like to create indexes with NOLOGGING option on the tables to increase performance. The tables are created with the LOGGING option. Can you please let me know it's to create a bad effect on the database? If so, please explain.

    Thank you

    Published by: user12088323 on December 28, 2010 16:37

    NOLOGGING will cease to produce data AGAIN... for which you want to execute the instructions.
    Nothing wrong... it is created by ORACLE ;-)

    read this and cross with your process. You can do it with nologging option.

    http://www.Oracle.com/technetwork/database/RDB/0804-NOLOGGING-option-130004.PDF

    hope you understood

  • Performance problem of creating index with LOB/CLOB content

    Hello

    I have a problem with indexing performance with a table containing columns of text
    also a clob and a lob column.

    Indexing with 20,000 lines takes about 1 hour on 11.2.0.4 with the last batch of patches 12 on
    win x 64.

    on a 11.2.0.1, the process is done in a few minutes.

    So what can I do to find out where is the problem?

    I use filter auto and basic lexer.
    Operating system is W 2008 R2 SP and latest patches. OS lang is English.
    DB is installed with AL32UTF8 and German and English language packs.

    also watched and ctx_user_index_errors and pending and there is no error or waiting in lines.
    After the index is created, everything works fine. during the creation of index no other user is connected to the database.

    so why 11.2.0.1 is so much faster than 11.2.0.4?
    some advice for me?

    Thank you!

    Hello

    so I solved all my problems.

    So I made two changes:

    1. I declared the variable theNotiz2 for recording the output for the raw text of the column NOTIZ (is a clob), add the output to the Out-Clob parameter

    2. I used the same variable for the--> this blob field caused an error with line with lob is not locked... so I said a second variable for this and that solved the problem.

    normally, I think it should work with 1 variable... but is an acceptable workaround.

    Performance now is OK because the procedure, I can set on which the documents I want to do a search or not.

    Second thing, but has nothing to do with Oracle: my frontend application makes a ZIP for each insert in a column lob and if the ctxhx does not index the content, the MDC, and before calling the conversion of plain text, so I have to make a decompression of the blob...

    so for now, all problems solved. Thank you for your support.

  • Cannot create Index with an If statement

    Hello:

    I would run the code to create an index on a given table, but only if the index does not exist. Here's what I have so far...

    DECLARE
    c_Count NUMBER;
    BEGIN
    SELECT COUNT (*) FROM c_Count
    OF DBA_INDEXES
    WHERE TABLE_NAME = 'SOME_TABLE_NAME '.
    AND INDEX_NAME = "SOME_INDEX_NAME."
    AND OWNER = 'SOME_OWNER. '
    AND TABLE_OWNER = "SOME_OWNER";
    IF c_Count = 0 THEN

    CREATE INDEXES SOME_OWNER. SOME_INDEX ON SOME_OWNER. UNE_TABLE (SOME_KEY);
    END IF;
    END;

    The SELECT INTO statement works well alone.
    Boredom comes with the IF statement. I get the following error message:

    PLS-00103: encountered the symbol "CREATE" when waiting for one of the following values: begin case declare exit for goto if loop...

    This is the typical error saying that the syntax is incorrect, and that the parser was expecting something else after the IF-THEN statement. Any ideas on what may be a problem? Thanks in advance.

    Jerry

    Hello

    You must use EXECUTE IMMEDIATE to the DDL in PL/SQL.

    DECLARE
       c_Count NUMBER;
    BEGIN
       SELECT COUNT(*)
         INTO c_Count
         FROM DBA_INDEXES
        WHERE TABLE_NAME = 'SOME_TABLE_NAME'
          AND INDEX_NAME = 'SOME_INDEX_NAME'
          AND OWNER = 'SOME_OWNER'
          AND TABLE_OWNER = 'SOME_OWNER';
       IF c_Count = 0 THEN
          EXECUTE IMMEDIATE 'CREATE INDEX SOME_OWNER.SOME_INDEX ON SOME_OWNER.SOME_TABLE(SOME_KEY)';
       END IF;
    END;
    

    Kind regards

  • Created index with DESC with USER_IND_COLUMNS. COLUMN = ' SYS_NC00023$ '.

    On Oracle 11.2, I observed below
    create index ind_jperson_1 on d_jperson(convict_ref);
    create index ind_jperson_2 on d_jperson(driver_ref DESC);
    
    select index_name,table_name,column_name,column_position,descend
      from USER_IND_COLUMNS where  table_name='D_JPERSON'
    
    INDEX_NAME     TABLE_NAME     COLUMN_NAME     COLUMN_POSITION     DESCEND
    IND_JPERSON_2     D_JPERSON     SYS_NC00023$     1     DESC
    IND_JPERSON_1     D_JPERSON     CONVICT_REF     1     ASC
    How to find the true picture of this index column?

    Hello

    DBA_IND_EXPRESSIONS can help you find the real column name.

    And it is an expected behavior in Oracle. Have you noticed anything else pre 11.

    Concerning
    Anurag

  • Failed to create reception with AR_RECEIPT_API_PUB. CREATE_CASH

    Hello

    I am creating an acknowledgment by using AR_RECEIPT_API_PUB. CREATE_CASH. Here's the script.

    DECLARE

    whole l_cr_id;

    whole l_msg_count;

    l_msg_data varchar2 (200);

    l_return_status varchar2 (20);

    BEGIN

    AR_RECEIPT_API_PUB. CREATE_CASH

    (p_api_version = > 1.0,

    p_init_msg_list = > apps.fnd_api.g_true,

    p_receipt_number = > 'Mig-Test. "

    p_amount = > 10000,

    p_receipt_method_id = > 1000,

    p_customer_name = > «Natalia Aguiar»,

    p_customer_number = > 1020,

    p_currency_code = > "GBP"

    p_receipt_date = > SYSDATE,.

    p_gl_date = > SYSDATE,.

    p_maturity_date = > SYSDATE,.

    p_comments = > "comments of Test."

    p_org_id = > 143

    p_cr_id = > l_cr_id,

    x_return_status = > l_return_status,

    x_msg_count = > l_msg_count,

    x_msg_data = > l_msg_data

    );

    COMMIT;

    EXCEPTION

    WHILE OTHERS

    THEN

    Dbms_output.put_line (' other Exception' |) SQLERRM);

    END;

    /

    This script runs successfully, but can't think of any receipt that is created in the AR_CASH_RECEIPTS_ALL table with the name 'Mig-Test' for the reception.

    Should I initialize before you run this script?

    Thank you

    Aditya

    Hello

    two things that might help:

    1. Add the following code below your call to AR_RECEIPT_API_PUB. CREATE_CASH

    dbms_output.put_line (' return the status of the api call: ' | l_return_status);

    IF (FND_MSG_PUB. Count_Msg > 0) THEN

    BECAUSE me in 1... l_msg_count LOOP

    FND_MSG_PUB. Get (p_msg_index-online i,

    p_encoded-online 'F',

    p_data-online l_msg_data,

    p_msg_index_OUT-online l_msg_index_out);

    dbms_output.put_line ('l_msg_data:' | out_message);

    END LOOP;

    END IF;

    The loop will be check the contents of the variable l_msg_data and give more details on why the api call might have failed.

    Don't forget to add the variable l_msg_index_out of type number to your declare section.

    2. your script is missing in calls to procedures mo_global to set the org and application context.

    You need to add following lines before calling the api:

    mo_global. SET_POLICY_CONTEXT (THE OF ', 143); -your org id

    ('AR') mo_global.init;

    Concerning

  • CREATE INDEX with ON DUPLICATE

    Hello

    I use Oracle10g Express (v10.2.0). What is given the equivalent query in Oracle for SQL Server query below?

    CREATE UNIQUE INDEX uix_NumberUnique ON UserInfo(UserID, Number)
    WITH (IGNORE_DUP_KEY = ON)

    I appreciate your inputs.

    Thank you
    Jonathan

    Here is an example

    SQL> create table t (no integer primary key);
    
    Table created.
    
    SQL> exec dbms_errlog.create_error_log('T','T_ERR')
    
    PL/SQL procedure successfully completed.
    
    SQL> insert into t
    select no
      from (
              select 1 no from dual union all
              select 2 no from dual union all
              select 1 no from dual
           )
    log errors into t_err('Insert Error') reject limit unlimited;         2    3    4    5    6    7    8  
    
    2 rows created.
    
    SQL> select * from t
      2  /
    
            NO
    ----------
             1
             2
    
    SQL>  exec dev_util.print_table('select * from t_err')
    ----------------------------------------------------------------------------------------------------
    Field Name                      Field Value
    ----------------------------------------------------------------------------------------------------
    ORA_ERR_NUMBER$               : 1
    ORA_ERR_MESG$                 : ORA-00001: unique constraint (ARBORU.SYS_C00407493) violated
    ORA_ERR_ROWID$                :
    ORA_ERR_OPTYP$                : I
    ORA_ERR_TAG$                  : Insert Error
    NO                            : 1
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    
  • Failed to create the printer device context... Only the fact so far with a program

    My profile says "student", but this is a business... I use the program with the question in my daily tasks of work & desperately need a fix!

    I have a LaserJet Pro200 MFP m276nw color

    Windows 7 64 bit

    I get this message when I try to print from a program called life that is hosted online through Casimir:

    Error message: failed to create printer device context

    I contacted life & their support said it was a problem with HP... the computer was the right type, so it should work with their system.

    I have a HP Deskjet 1300 on this computer before moving to this new one.  Not sure if an old file is in conflict, but I don't know how to solve this problem, if that's the problem.  The 1300 print without any problems.

    I just uninstalled all HP applications on my computer & start from scratch... He gave me the same error again.

    I wanted to add, I checked the firewall... not to block. I also reduced... the name of the printer has not set the it.

    Also, when I uninstalled & reinstalled this morning, someone from the Office on a network computer had sent a work on this new printer by mistake & when I reinstalled, it printed the work! So I know that it can print the program... it's not fair.

    Jobs are actually feeling at the start of the computer first, until there's something on my computer blocking the internet application to connect to the printer?

    After hours yesterday trying to 'fix' my firewall settings & create rules network without success, I decided that because the printer is connected to a WIFI router that the question can be part of this type of installation.  I finally got to the store today & bought a wireless network & plugged the printer & then in our router and VOILA it is printed.  The printer itself has its own internet security installed, so when the internet application that we tried to print, the printer it seen like a virus, by saying, and blocked the print job...

    Thank you... (for nothing)... Thought I'd post this for anyone else that may encounter this problem.

  • IAM-2050243: process Orchestration with the id 498509, failed with the IAM-3051103 error message: failed to create operation on the entity user at the point of action

    Hello

    While creating a use to the IOM, I get the error below. I have to configure?

    oracle.iam.ui.platform.exception.OIMRuntimeException: IAM-2050243: process of Orchestration with the id 498509, failed with the IAM-3051103 error message: failed to create operation on the entity user at the point of action

    Error log file:

    ]]

    [2015 07-28 T 12: 53:51.674 - 07:00] [oimext_server1] [NOTIFICATION] [] [oracle.iam.identity.usermgmt.impl.handlers.base] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [username: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] compensate the method called in a process of running User Manager CREATE with process Id 498 509 and Event Id 3 306 663

    [2015 07-28 T 12: 53:51.703 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20043] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = basic 207 SRCH = scope = base filter = objectclass = * requestedAttributes = [] sizelimit = 0 timelimit = 0 typesOnly = false

    [2015 07-28 T 12: 53:51.703 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20044] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = 207 RESULT err = 0 tag = 0 nentries = 1 etime = 0 = 0 mem = 2, 058, 395 728 dbtime / 4294967296

    [2015 07-28 T 12: 53:51.703 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20043] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = basic 208 SRCH = scope = base filter = objectclass = * = sizelimit timelimit [] = 0 requestedAttributes = 0 typesOnly = false

    [2015 07-28 T 12: 53:51.703 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20044] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = 208 RESULT err = 0 tag = 0 nentries = 1 etime = 0 = 0 mem = 2, 058, 395 728 dbtime / 4294967296

    [2015 07-28 T 12: 53:51.703 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20043] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = base 209 SRCH = xxxxxxxxxx, dc = net scope = filter sub = orclguid = 56ca2d28625f47819064b8241ab44539 requestedAttributes = [orclguid] = 0 = 0 = false typesOnly timelimit sizelimit

    [2015 07-28 T 12: 53:51.705 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20044] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = 209 RESULT err = 0 tag = 0 = 1 = 2 = 0 = 2 mem dbtime etime nentries, 058, 395 728 / 4294967296

    [2015 07-28 T 12: 53:51.705 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20040] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [username: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = 210 DEL dn = cn = afdada, cn = users, xxxxxxxxxx, dc is net

    [2015 07-28 T 12: 53:51.709 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20039] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = 210 RESULT tag = 0 = 0 = 4 etime nentries err = 0

    [2015 07-28 T 12: 53:51.723 - 07:00] [oimext_server1] [NOTIFICATION] [] [oracle.iam.identity.usermgmt.impl.handlers.custom] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [username: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] compensate the method called in a process of running User Manager CREATE with process Id 498 509 and Event Id 3 658 306

    [2015 07-28 T 12: 53:51.763 - 07:00] [oimext_server1] [NOTIFICATION] [] [oracle.iam.platform.kernel.impl] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] completed the orchestration with the result of the action - oracle.iam.platform.kernel.EventFailedException: IAM-3051103: failure of the create operation on the entity user at the point of action. :

    [2015 07-28 T 12: 53:51.775 - 07:00] [oimext_server1] [ERROR] [] [oracle.iam.request.impl] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [username: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] Orchestration process with id 498509, failed with the IAM-3051103 error message: failed to create operation on the entity user at the point of action. :.

    [2015 07-28 T 12: 53:51.784 - 07:00] [oimext_server1] [WARNING] [] [oracle.adf.controller.faces.lifecycle.Utils] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: oracle.iam.console.identity.self-service.ear #V2.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] ADF: adding the following JSF error message: IAM-2050243: Orchestration process with id 498509, failed with the IAM-3051103 error message: failed to create operation on the entity user at the stage of the action... [[

    oracle.iam.ui.platform.exception.OIMRuntimeException: IAM-2050243: process of Orchestration with the id 498509, failed with the IAM-3051103 error message: failed to create operation on the entity user at the stage of the action...

    at oracle.iam.ui.platform.exception.OIMErrorHandler.reportServiceException(OIMErrorHandler.java:171)

    at oracle.iam.ui.platform.exception.OIMErrorHandler.reportException(OIMErrorHandler.java:65)

    at oracle.adf.model.binding.DCDataControl.reportException(DCDataControl.java:411)

    at oracle.adf.model.binding.DCBindingContainer.reportException(DCBindingContainer.java:424)

    at oracle.adf.model.binding.DCBindingContainer.reportException(DCBindingContainer.java:479)

    at oracle.adf.model.binding.DCControlBinding.reportException(DCControlBinding.java:201)

    at oracle.jbo.uicli.binding.JUCtrlActionBinding.reportException(JUCtrlActionBinding.java:2036)

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

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

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

    at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.executeEvent(PageLifecycleImpl.java:407)

    at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding._execute(FacesCtrlActionBinding.java:252)

    at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding.execute(FacesCtrlActionBinding.java:210)

    at oracle.iam.ui.platform.utils.FacesUtils.executeOperationBinding(FacesUtils.java:169)

    at oracle.iam.ui.platform.utils.FacesUtils.executeOperationBindingFromActionListener(FacesUtils.java:116)

    at oracle.iam.ui.catalog.view.backing.CartReqBean.submit(CartReqBean.java:980)

    at oracle.iam.ui.catalog.view.backing.CartReqBean.submitActionListener(CartReqBean.java:919)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at com.sun.el.parser.AstValue.invoke(AstValue.java:187)

    at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:297)

    at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1490)

    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)

    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:181)

    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:104)

    to oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$ 1.run(ContextSwitchingComponent.java:93)

    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:371)

    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:97)

    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:98)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1086)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:434)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:207)

    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:227)

    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)

    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)

    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.help.web.rich.OHWFilter.doFilter (unknown Source)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.adf.view.page.editor.webapp.WebCenterComposerFilter.doFilter(WebCenterComposerFilter.java:117)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:128)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:446)

    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:446)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)

    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.iam.ui.platform.servletfilter.IdentityContextFilter.doFilter(IdentityContextFilter.java:50)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.iam.platform.servletfilter.PwdMgmtNavigationFilter.doFilter(PwdMgmtNavigationFilter.java:164)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.bpel.services.workflow.client.worklist.util.WorkflowFilter.doFilter(WorkflowFilter.java:175)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.bpel.services.workflow.client.worklist.util.DisableUrlSessionFilter.doFilter(DisableUrlSessionFilter.java:70)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:119)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.security.wls.filter.SSOSessionSynchronizationFilter.doFilter(SSOSessionSynchronizationFilter.java:418)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.security.am.agent.wls.filters.OAMServletAuthenticationFilter.doFilter(OAMServletAuthenticationFilter.java:265)

    at oracle.security.am.agent.wls.filters.OAMValidationSystemFilter.doFilter(OAMValidationSystemFilter.java:133)

    at oracle.security.wls.oamagent.OAMAgentWrapperFilter.doFilter(OAMAgentWrapperFilter.java:120)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3730)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3696)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1485)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Thank you

    As IOM tablespace maxed out, we were receving a lot of mistakes. It was one of them.

    Thank you Anne for your contributions.

  • Failed to create a 3D text (or 3D nothing else) all options in the 3D Panel are grayed out. With the help of CC 2015.1.2 on Mac Pro

    Failed to create a 3D text (or 3D nothing else) all options in the 3D Panel are grayed out. With the help of CC 2015.1.2 on Mac Pro (end 2013)

    Thanks for the update.

    Go to the Photoshop preferences > 3D > check whether it shows VRAM than 3072 MB

    Look for the system updates and see if there are updates waiting for your graphics card drivers.

    And make sure that the document you are opening is in RGB and CMYK mode not.

  • vCenter Service was able to start with the error failed to create the front of SINGLE sign-on: vmodl.fault.SystemError

    Hello

    Can someone guide me how to solve this error? vCenter service is not getting started, I looked in the newspapers vpxd and found the following error.

    vCenter Service was able to start with the error failed to create the front of SINGLE sign-on: vmodl.fault.SystemError

    Thank you

    John

    Hi John,.

    This is due to host on the vCenter server entries. Please try the procedure below

    Connect to the vCenter server, edit the/drivers/etc/hosts file in Notepad

    C:\Windows\System32\drivers\etc\hosts

    # 127.0.0.1 localhost

    Note: If a line does not exist in the hosts file, add it at the end of the text.

    #) to remove the comment from the line of IPv4.

    1. 127.0.0.1 localhost
      ·  Save and close the file.
    • localhost127.0.0.1.

      • GoTo services.msc and start VMware Virtual Center Services.

    Thank you

    Venance

  • «FAILED: failed to create a snapshot of the source volumes VSS.» Error code: 2147754758 (0 x 80042306). "Down to 1% with autonomous converted 5.5

    Hi all

    I'm trying to convert a physical Windows 2008 R2 (SP1) virtual, using Vmware vCenter Converter Standalone version 5.5 build 1362012, it fails at 1% (after around 40mins) with the following message

    Failed: Failed to create a snapshot VSS of the source volumes. Error code:

    2147754758 (0 x 80042306).


    Windows systems has some LUN (4 x each various size GB) San, being the GUID (GPT) Partition Table.  I went through the wizard as a general rule, by selecting "edited on the machine", a player selected vmware "vmware workstation" or another vmware virtual machine destination 6.0.x and the location of the target being a LUN with 500 GB of space.

    Now for the data to be copied I selected 3 LUN (on a database resides) and put the 'Size' option (but I tried to keep the size of the various passes) to save space.


    Looking through the logs, I see the following errors

    Server-convert-VMware - 1.log

    2014 01-16 T 19: 42:37.371 - 07:00 [info 08696 'Default'] [serviceWin32, 416] Server vmware-converter service started

    2014 01-16 T 19: 42:51.006 - 07:00 [08696 info "Libs"] username [ADS] Get failed: 1332

    2014 01-16 T 19: 42:51.006 - 07:00 [08696 info "Libs"] [ADS] subtle failed: 1312

    2014 01-16 T 19: 42:51.115 - 07:00 [info 08696 'Default'] [user, 874] successfully authenticated the user administrator of the local computer (by using pipe)

    2014 01-16 T 19: 43:38.898 - 07:00 [10116 info "Libs"] username [ADS] Get failed: 1332

    2014 01-16 T 19: 43:38.898 - 07:00 [10116 info "Libs"] [ADS] subtle failed: 1312

    2014 01-16 T 19: 43:39.023 - 07:00 [info 10116 'Default'] [user, 874] successfully authenticated the user administrator of the local computer (by using pipe)

    2014 01-16 T 19: 43:39.647 - 07:00 [info 07628 "ThreadPool"] Thread has enlisted

    2014 01-16 T 19: 44:26.152 - 07:00 [08696 error 'Ufa.HTTPService'] cannot read the request; flow: io_obj p:0x0141b84c, h:-1, < tube "\\.\pipe\vmware-converter-server-soap" >, < pipe "\\.\pipe\vmware-converter-server-soap" > >, error: class Vmacore::TimeoutException (operation timed out)

    2014 01-16 T 19: 47:32.

    Worker-converter-VMware - 1.log

    2014 01-16 T 19: 47:34.323 - 07:00 [warning 07248 "Default"] disk number 1 has been ignored due to errors when reading partition table

    2014 01-16 T 19: 47:34.323 - 07:00 [warning 07248 "Default"] disk number 1 has been ignored due to errors during playback of dynamic disks header or LDM database is corrupt

    2014 01-16 T 19: 47:34.323 - 07:00 [warning 07248 'Default'] [MoveActiveDiskIfNeeded] GetFirstBootDisk failed, error mntapi: 176

    2014 01-16 T 19: 47:34.323 - 07:00 [warning 07248 'Default'] score: Invalid magic number sector.

    2014 01-16 T 19: 47:34.323 - 07:00 [warning 07248 'Default'] score: Invalid magic number sector.

    2014 01-16 T 19: 47:34.323 - 07:00 [warning 07248 'Default'] [PopulateCapabilities] based on the Volume of cloning has been disabled due to: no volume is recognized >

    ..

    2014 01-16 T 19: 47:34.323 - 07:00 [warning 07248 "Default"] Partition: ERROR: MBR sector must be present and valid initialize to GPT disk.

    2014 01-16 T 19: 47:34.354 - 07:00 [info 07248 'Default'] signature of disk found 80a2884a-05e9-4c1b-81-3d-35-1b-a3-6c-4b-bc, drive to 225981112, sectors 512 sector size size

    2014 01-16 T 19: 47:34.354 - 07:00 [info 07248 "Default"] Partition found type Efi system / single 4078aaff-430e-4825-bf-07-67-c6-ab-a1-87-3f

    ...

    2014 01-16 T 19: 47:37.365 - 07:00 [info 07596 "ThreadPool"] wire removed from the list

    2014 01-16 T 19: 47:37.412 - 07:00 [10164 info "ThreadPool"] Thread has enlisted

    2014 01-16 T 19: 47:37.459 - 07:00 [info 07696 "Default"] MNTAPI: mounted volume \\.\vstor2-mntapi20-shared-444D494F3A49443AFFAA78400E432548BF0767C6ABA1873F03000000\ FS: <>

    2014 01-16 T 19: 47:37.584 - 07:00 [info 07696 "Default"] error 0 when calling GetVolumeInformation for \\.\vstor2-mntapi20-shared-444D494F3A49443AFFAA78400E432548BF0767C6ABA1873F03000000\ FS: <>

    2014 01-16 T 19: 47:37.677 - 07:00 [info 07696 "Default"] error 0 when calling GetVolumeInformation for \\.\vstor2-mntapi20-shared-444D494F3A49443AFFAA78400E432548BF0767C6ABA1873F03000000\ FS: <>

    2014 01-16 T 19: 47:37.755 - 07:00 [info 07696 "Default"] error 0 when calling GetVolumeInformation for \\.\vstor2-mntapi20-shared-444D494F3A49443AFFAA78400E432548BF0767C6ABA1873F03000000\ FS: <>

    2014 01-16 T 19: 47:37.849 - 07:00 [info 07696 "Default"] error 0 when calling GetVolumeInformation for \\.\vstor2-mntapi20-shared-444D494F3A49443AFFAA78400E432548BF0767C6ABA1873F03000000\ FS: <>

    2014 01-16 T 19: 47:37.942 - 07:00 [info 07696 "Default"] error 0 when calling GetVolumeInformation for \\.\vstor2-mntapi20-shared-444D494F3A49443AFFAA78400E432548BF0767C6ABA1873F03000000\ FS: <>

    2014 01-16 T 19: 47:38.052 - 07:00 [info 07696 "Default"] error 0 when calling GetVolumeInformation for \\.\vstor2-mntapi20-shared-444D494F3A49443AFFAA78400E432548BF0767C6ABA1873F03000000\ FS: <>

    2014 01-16 T 19: 47:38.098 - 07:00 [10164 info "ThreadPool"] wire removed from the list

    2014 01-16 T 19: 47:38.098 - 07:00 [info 03736 "ThreadPool"] Thread has enlisted

    I wonder if the converter is not able to work on the GPT partitions?  (I think I saw some discussion of the community on this problem using v.5.1, but using 5.5 should be resolved?)

    Any help is appreciated. Thank you

    Your problem is with VSS, it is probably the lack of space, to seek solutions and similar problems.

    Errors that you see are expected, we need a full newspaper bundle for investigation and don't warry on GPT disks, they are supported with converter 5 +.

  • Creating indexes of service failed

    Hello

    I want to create the normal basis function index organization table in a diagram below is the create index query

    CREATE INDEX ORGA_IPROMPT_UPPER_NAME_IDX ON ORGANIZATIONS
    (UPPER ("ORGA_NAME"), ORGA_TYPE, ORGA_NUMBER, ORGA_ADDRESS_LINE_1, ORGA_ADDRESS_LINE_2,
    ORGA_ADDRESS_LINE_3, ORGA_ADDRESS_LINE_4, ORGA_POST_CODE, ORGA_NAME)
    LOGGING

    but it gives the following error

    ORA-00604: an error has occurred at the SQL level 1 recursive
    ORA-00001: unique constraint (SYS. I_COL1) violated

    can someone tell me why we do object sys that I tried to create this index with a different method, but it gives the same error.

    Can someone help me out hot to fix this.

    Thank you
    Kiran

    I know, when you try to create a FBI on a table, Oracle inserts a new record in SYS. COL$ to "register" a new virtual column. On SYS. COL$. OBJ # and SYS. COL$ .NAME it is an index composite unqiue called SYS. I_COL1.

    OBJ # must be an object of the table id, it's funny that NAME should auto-generated by Oracle, for example, if you have 10 columns, the new virtual column created through the FBI should named SYS_NC00011$ or something like that, not very sure about this.

    Depending on your error message, it seems that the value OBJ # and the NAME a conflict with existing value in index SYS. I_COL1.

    Do you have any other funtion index based on the ORGANIZATIONS table? Can you let them down and then rebuild them? You should know all the side effect of losing an index, be careful. Otherwise don't do that, perhaps, may not get any help.

    Unique NAME should be automatically gernated for same OBJ #, it's really awkward.

    Todd

    Published by: Todd Bao on November 19, 2010 16:06

  • Problem with CREATE INDEX script

    Hello world!
    I want to create a 3D Spatial Index. So I added a few lines (PARAMETERS ('sdo_indx_dims = 3')) in the following script, I get the error

    PLS-00103: encountered the symbol "SETTINGS" then wait for the following :), * & = - + <>.
    PLS-00103: encountered the symbol "SDO_INDX_DIMS" then wait for the following :), * & = - + <>.

    Everything works well, if I remove the PARAMETERS ('sdo_index_dims = 3').
    I know that I need a few symbols, but I'm not good in programming
    Thanks for the tips!

    -create spatial indexes
    --
    procedure create_index
    newIndex user_indexes.index_name%type;
    Start

    list_spatial_indexed_tables;
    -Find all tables containing columns and a corresponding line in user_sdo_geom_metadata
    - and without a spatial index
    for rec in spatial_index_cursor
    loop
    newIndex: = rec.table_name | '_RTREE_IDX ';
    Execute ('create index' | newIndex |) "on" |
    Rec.table_name | ' (' | rec.column_name |)
    indextype') is mdsys.spatial_index ('sdo_indx_dims = 3') SETTINGS ');
    end loop;

    list_tables_missing_sdo_data ("spatial index cannot be created");

    end create_index;

    Hello

    in a string, you must make to a single quote, two quotes, then do this:

    -- create spatial indexes
    --
    procedure create_index is
    newIndex user_indexes.index_name%type;
    begin
    
    list_spatial_indexed_tables;
    -- Find all tables containing spatial columns and a corresponding row in user_sdo_geom_metadata
    -- and without a spatial index
    for rec in spatial_index_cursor
    loop
    newIndex := rec.table_name || '_RTREE_IDX';
    run ('create index ' || newIndex || ' on ' ||
    rec.table_name || '(' || rec.column_name ||
    ') indextype is mdsys.spatial_index PARAMETERS (''sdo_indx_dims=3'')');
    end loop;
    
    list_tables_missing_sdo_data ('spatial index can not be created');
    
    end create_index;
    

    If the quotes to the parameters clause must be doubled.

    Herald tiomela
    Superconsult.nl

  • KB2887069 Windows update fails to install, even with the audio drivers and uninstalled AV

    KB2887069 Windows update fails to install, even with the audio drivers and uninstalled AV.

    Background: I am setting up a pavilion of 500-164 equipped with OEM specs, specifically:

    -AMD/Radeon APU

    -Windows 8 6.2.9200

    -See sysinfo below for more details

    The PC brought to the specifications of the plant, with all Windows updates applied with the exception of KB2887069, which breaks down at the update.  With the exception of troubleshooting the failure of the update, none of the changes have been made.  The Windows KB2887069 update fails to install as well through the automated process when tried manually via a direct download.

    Additional troubleshooting measures to date include:

    -Uninstall the software OEM AV (Norton), then by restarting.

    -Temporarily disable all the features of Windows Defender.

    -Temporarily uninstall the audio driver (IDT High Definition Audio CODEC) OEM.

    -Realization of an analysis of the SFC system (with no error found).

    Results: The Windows Update full KB2887069 with a failed State and produced the following results.

    2014-11-15 19:25:08:807 3488 1 b 84 Misc = logging initialized (build: 7.8.9200.17099, tz:-0500) =.
    2014-11-15 19:25:08:807 3488 1 b 84 Misc = process: C:\Windows\system32\wuauclt.exe
    2014-11-15 19:25:08:807 3488 1 b 84 Misc = Module: C:\Windows\SYSTEM32\wuaueng.dll
    2014-11-15 19:25:08:807 3488 1 b 84 Manager:
    2014-11-15 19:25:08:807 3488 1 b 84 Handler: START: Manager: installation CBS
    2014-11-15 19:25:08:807 3488 1 b 84 Manager:
    2014-11-15 19:25:08:807 3488 1 b 84 Manager start installation of CBS update BCA9DC69-8FB6-4B79-8E1B-E706B32B55C9
    identity of 2014-11-15 session 19:25:08:807 3488 1 b 84 CBS Handler: 30409011_3339369637
    the package identity 2014-11-15 19:25:08:807 3488 1 b 84 CBS Handler: Package_for_KB2887069 ~ 31bf3856ad364e35 ~ amd64 ~ ~ 6.2.1.1
    2014-11-15 19:25:08:822 3488 1 b 84 Manager stand-alone installation with source=C:\Windows\SoftwareDistribution\Download\c3f79bd7f837c5015dba3018d0ab7d67\windows8-rt-kb2887069-x64.cab, workingdir = C:\Windows\SoftwareDistribution\Download\c3f79bd7f837c5015dba3018d0ab7d67\inst
    2014-11-15 19:25:12:567 3488 Manager e00 FATAL: CBS called error with 0x8007371b.
    2014-11-15 19:25:13:269 3488 1 b 84 Manager FATAL: full install of CBS update with type = 0, requiresReboot = 0, installerError = 1, hr = 0x8007371b
    2014-11-15 19:25:13:378 3488 1 b 84 Manager:
    2014-11-15 19:25:13:378 3488 1 b 84 Handler: END: Manager: installation CBS
    2014-11-15 19:25:13:378 3488 1 b 84 Manager:
    2014-11-15 19:25:13:378 880 fa0 Agent *.
    2014-11-15 19:25:13:378 880 fa0 Agent * END * Agent: installing updates [CallerId = wusa]
    2014-11-15 19:25:13:378 880 fa0 Agent *.
    2014-11-15 19:25:13:378 6676 1a0c COMAPI > COMAPI - RECOVERY -: install [ClientId = wusa]
    2014-11-15 19:25:13:378 6676 1a0c COMAPI - tender installation complete (successful = 0, succeeded with errors = 0, failed = 1, missing = 0)
    2014-11-15 19:25:13:378 6676 COMAPI - restart required 1a0c = No.
    2014-11-15 19:25:13:378 6676 1a0c COMAPI - WARNING: exit code = 0x00000000; Call error code = 0 x 80240022
    2014-11-15 19:25:13:378 6676 1a0c COMAPI-
    2014-11-15 19:25:13:378 6676 COMAPI COMAPI - END - 1a0c: install [ClientId = wusa]
    2014-11-15 19:25:13:378 6676 1a0c COMAPI-
    2014-11-15 19:25:17:605 6676 1 a 10 COMAPI - COMAPI: IUpdateServiceManager::RemoveService -.
    2014-11-15 19:25:17:605 6676 COMAPI 1 has 10 - ServiceId = {b043431c-3a5f-4bf5-b5b2-34a542b07e41}
    2014-11-15 19:25:17:683 6676 1 a 10 COMAPI IUpdateService removal scan volatile package service, serviceID = {B043431C-3A5F-4BF5-B5B2-34A542B07E41}
    2014-11-15 19:25:17:683 6676 1 a 10 COMAPI WARNING: ISusInternal::RemoveService failed, hr = 80248014
    2014-11-15 19:25:17:683 880 524 Agent WARNING: WU client omits CClientCallRecorder::RemoveService with error 0 x 80248014
    2014-11-15 19:25:18:385 880 1a7c report REPORT EVENT: 2014-11-15 19:25:13:378 - 0500 1 182 {807311FF-2CC0-45E2-B903-238AD59E6377} [AGENT_INSTALLING_FAILED] {3CE1E1A4-CA14-4F2A-BEA1-71029F73AFD6} 101 501 8007371 b wusa error content install Installation error: Windows failed to install the following update with error 0x8007371b: update security for Windows (KB2887069).
    2014-11-15 19:25:18:385 880 1a7c report CWERReporter::HandleEvents - WER report upload completed with status 0 x 8
    2014-11-15 19:25:18:385 880 1a7c WER sent report: 7.8.9200.17099 0x8007371b (0x8007371b) 3CE1E1A4-CA14-4F2A-BEA1-71029F73AFD6 install Unmanaged 101
    2014-11-15 19:25:18:385 880 1a7c report CWERReporter finish event management. (00000000)
    2014-11-15 19:35:18:718 880 1 to 28 in THE # to THE: initialization of automatic updates.
    2014-11-15 19:35:18:906 880 1 to 28 WuTask WU Uninit Manager tasks
    2014-11-15 19:35:19:795 880 1-28 Service *.
    2014-11-15 19:35:19:795 880 1-28 Service * END * Service: out of Service [exit code = 0 x 240001]
    2014-11-15 19:35:19:795 880 1-28 Service *.

    I find it peculiar that you just bought a HP computer brand new, still-in-the-box, which came with Windows 8, not 8.1, preinstalled Windows. That said, cross your fingers, roll up your sleeves and try the fix following multiple step, I cooked up just for your computer...

    ACTIONS

    [You may want to print these instructions for reference offline.  IMPORTANT => NO SKIP & perform all steps in one uninterrupted session!  [If a step said to restart, restart! ]

    1 right-click on the link, select SAVE TARGET as.... & download the Norton Removal Tool, save it to your desktop: ftp://ftp.symantec.com/public/english_us_canada/removal_tools/Norton_Removal_Tool.exe

    2. close all open applications (that is, anything with an icon on the taskbar).

    3. right click on the file that you saved in step #1 above and select run as administrator to run the Norton utility. DO TAP not your keyboard until the race ends, then restart.

    4. right-click on the following link and save the download to your desktop: ie8 - rereg.all.zip [1]

    4B. right click on the file that you saved in # 4 has & select EXTRACT ALL. This will create a new folder in Office also appointed ie8 - rereg.all. The folder contains both scripts below (plus a third that will NOT be).

    Note-online scripts are good for IE9, IE10 & IE11, too,

    5. close all open applications (that is, anything with an icon on the task bar), open the folder created in step # 4 b above & double-click on the file named ie8 - rereg.32on64.cmd to run the script.

    5 b. Repeat this for the file named ie8 - rereg.64on64.cmd then restart.

    6. reset Internet Explorer by the MANUAL of instructions on this page-online http://support.microsoft.com/kb/923737

    Note => for best results, check the option Remove personal settings .

    7 run the Windows Update Troubleshooter from start to finish by the first paragraph on this page-online http://windows.microsoft.com/en-us/windows-8/troubleshoot-problems-installing-updates [2]

    8. restart once more then test by launching a manual check of updates & see if KB2887069 any/all others updated and allows to install now. Follow all the instructions.

    9. assuming all went well, see if Windows 8.1 is available through the store Windows and, if so, if it will be properly installed. Still, follow all the instructions.


    http://Windows.Microsoft.com/en-us/Windows-8/update-from-Windows-8-tutorial
  • What's new in Win8.1?
    http://Windows.Microsoft.com/en-us/Windows-8/whats-new
  • 10. assuming that Win8.1 is now installed, perform another manual check for updates & install all Security updates offered (if any); Follow all the instructions.

    11. in response to this post with a status report. Also confirm (hopefully) that Windows 8.1 has been installed successfully.

    Good luck!

    ===========================================================
    [1] source: page http://iefaq.info/index.php?action=artikel&cat=42&id=133&artlang=en of my colleague IE MVP Kai Schatzl

    [2] full Disclosure: the difficulty operating in AGGRESSIVE mode will remove your update history but not the list of installed updates.

Maybe you are looking for