Configuration failed somehow... may be an error ORA-00955

I try to install vcloud Director.  I get to the configuration and to tell him what IP addresses to use, where the db server is, the service name, user name, password, keystore, etc. etc.

He starts to set up and then wrote:

Configuration failed somehow; the Director of Cloud service will not start.

Before, I was getting an error with an ORA-00955 event id which apparently means that the table already exists.  I looked in the newspapers and it seems that he was trying to create a table called CATALOG.  I'm a total Oracle newb, so I don't know if I'm on that or not.

In any case, I have tried to look in the logs of other errors, but have not really found anything.  I'm no longer error ORA-00955, but I not did something to correct this error, either.  I tried to create a new database, but also to get the same results (first the Oracle error and then just a generic).

Any suggestions?

Thank you!

It seems that you have already some paintings created from your previous attempts to run the script configures. The best way would be to remove the user from the oracle and recreate the user vcloud and restart the configuration script. The best way to create a database for vcloud described the following KB:

http://KB.VMware.com/kb/1025768

If this is not enough, then attach the logs to the file ' / opt/vmware/logs "here,.

HTH,

Sangeeta

Tags: VMware

Similar Questions

  • That irritate the error ORA-00955 :(

    Hey all I am currently studying free PL/SQL and I am so a noob I've been making that mistake since last night. I use the with table of Oracle Database 10 g Express edition, the schema HR to be precise.

    -- -------------------------------------------------------------------------------------------
    CREATE FUNCTION check_ForJobChange (in NUMBER, currentEmpStartDate AS currentEmpID)
    RETURN BOOLEAN IS

    Declare

    CURSOR emp_date_id_list1 IS (Select j1.start_date, e1.employee_id JOB_HISTORY j1 EMPLOYEES JOIN e1 ON j1.employee_id = e1.employee_id);

    checkVal NUMBER: = 0;

    Begin

    For em1 IN LOOP emp_date_id_list1

    IF (currentEmpID = em1.employee_id AND currentEmpStartDate! = em1.start_date) THEN
    checkVal: = 1;
    END IF;

    END LOOP;

    IF checkVal = 1 THEN
    RETURN TRUE;
    ELSIF checkVal = 0 THEN
    RETURN FALSE;
    END IF;

    End checkForJobChange;
    -- -------------------------------------------------------------------------------------------

    -- -------------------------------------------------------------------------------------------
    CREATE FUNCTION checkIfSalayExceedMin (currentJobID in NUMBER, currentProposedSalary number)
    RETURN BOOLEAN IS

    Declare

    minSalary NUMBER: = 0;

    Begin

    Select j.min_salary FROM minSalary of JOB j where j.job_id = currentJobID;

    IF currentProposedSalary > minSalary THEN
    RETURN TRUE;
    ELSIF currentProposedSalary < minSalary THEN
    RETURN FALSE;
    END IF;

    End checkIfSalayExceedMin;
    -- -------------------------------------------------------------------------------------------

    -- ===================MAIN====================
    Declare

    CURSOR emp_date_id_list IS (Select j.start_date, e.employee_id, e.job_id, e.salary JOB_HISTORY e j EMPLOYEES JOIN ON j.employee_id = e.employee_id);

    Begin

    For em IN emp_date_id_list LOOP

    IF (em.start_date < TO_DATE ('1990-01-01', 'YYYY-MM-DD')) THEN

    IF checkForJobChange (em.employee_id, em.start_date) THEN
    IF checkIfSalayExceedMin (em.job_id, (e.salary + (e.salary*.20))) THEN
    DBMS_OUTPUT. Put_line ('you can increase his salary');
    END IF;
    END IF;

    END IF;

    END LOOP;

    End;

    -- ================END==MAIN==================

    He is basically trying to do is check if the employee worked prior to January 1, 1990, and he has not been promoted or changed his work, if he has satisfied both these conditions he is eligible for a salary increase. That's basically it, the error I get is: ORA-00955: name is already used by an existing object

    Dang, been spend all night, I was wondering what the name of the object did I like a double T_T

    Help, please.

    Thank you!

    Hello, I'm sure that I have the unique function names, so why always make the mistake? It is clearly in my code they have parameters and names of different functions

    No, this isn't what I'm saying. You have created two functions. Then, you run your script once again. The second time around he not able to create one of them because they already exist in the database. You can not use 'create function x' when there is already a function 'x', even if it is perfectly obvious to you, it's the same one and you want to replace it. You must explicitly include Or REPLACE, otherwise fall explicitly every time.

    Well, a friend told me that uh, pirates may be able to easily replace the use of the service if I REPLACE them on the signature of the function. Not quite sure this info if haha.

    I'm afraid that your friend is wrong. REPLACE the keyword is not stored within the function (see USER_SOURCE).

  • Db - ORA-20000 R12 upgrade error: ORA-00955

    Hi all

    As part of our upgrade of the EBS R12 database I'm re creation of grants and synonyms for applications. One of the working process is run following error message:

    ERROR on line 1:

    ORA-20000: ORA-00955: name is already used by an existing

    Object:create_grants_and_synonyms(1,GL,APPLSYS,apps): create_base_gs (GL, APPS):

    In the synonyms

    Loop: create_synonym (GL, GL_DAILY_RATES_INTERFACE_BKP, APPS, GL_DAILY_RATES_INTERFAC

    (E_BKP): do_apps_ddl (APPS, CREATE SYNONYM "GL_DAILY_RATES_INTERFACE_BKP" FOR)

    GL. "" ""GL_DAILY_RATES_INTERFACE_BKP"):

    ORA-06512: at line 5

    There are three items of the same name - GL_DAILY_RATES_INTERFACE_BKP - database:

    A synonym in a schema created by us and by two tables: one GL and a pattern of APPS. So what should I do to solve this problem?

    Kind regards

    Vinod

    GL_DAILY_RATES_INTERFACE_BKP should not be seeded table. Perform a backup user someother and drop it.

    concerning

    Pravin

  • Help to create the view - error: ORA-00955: name is already used by an existing object

    Hello

    I am trying to create the following view but sqlplus displays a message and point of view has not been created. I use 11g Express.

    SQL > create view (client, f_pedido, total) orders as

    2     (

    3 select usr, date, sum (rising) as important

    4 of

    5             (

    6 select lineas_any.usuario as usr, lineas_any.fecha_pedido as date, lineas_any.cantidad * as rising referencia.precio

    7 of lineas_any

    inner join 8

    referencia 9

    10 on lineas_any.referencia = referencia.codbarras

    11             )

    Group 12 by usr, date

    13)

    14 order by date asc, usr;

    of lineas_any

    *

    ERROR on line 7:

    ORA-00955: name is already used by an existing object

    There are also descriptions of the two tables involved:

    SQL > describe lineas_any

    Name                                          Null?    Type

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

    USER NOT NULL VARCHAR2 (60)

    FECHA_PEDIDO NOT NULL DATE

    REFERENCIA NOT NULL VARCHAR2 (15)

    AMOUNT NUMBER (2)

    SQL > describe referencia

    Name                                          Null?    Type

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

    CODBARRAS NOT NULL VARCHAR2 (15)

    PRODUCT NOT NULL VARCHAR2 (50)

    FORMATO NOT NULL VARCHAR2 (20)

    SILTING NOT NULL VARCHAR2 (15)

    PRECIO NOT NULL NUMBER (7.2)

    STOCK NUMBER (5) NOT NULL

    MIN_STOCK NOT NULL NUMBER (5)

    MAX_STOCK NOT NULL NUMBER (5)

    Please, could someone help me in this matter?

    Thanks in advance.

    Kind regards

    It means that it is already an object named peridos. Question:

    Select object_type from user_objects where object_name = 'PERIDOS;

    to find out what type of object it is. Any chance you try to change the existing definition of peridos view? If so, use

    CREATE or REPLACE view orders (customer, f_pedido, total) as...

    SY.

  • get the following errors "" sql error: ORA-00955: name already used by an existing object ""

    Untitled.png

    So, you already have a table called ADDRESS.  Once created, you can not keep recreate unless you drop everything first.

  • RMAN-04006: auxiliary database error: ORA-12504: TNS:listener has not been

    HIII...

    I was doing my dataguard configuration, my primary side is a 2 node RAC and my stand by is a single node.
    IM using the database and 11 GR 2 grid infrastructure.

    When I try to connect to the rating system standy priamry using RMAN im getting the following error.

    [*[*Oracle@Rac2 ~] rman target $ / auxiliary sys / sys@to_std *.

    Recovery Manager: release 11.2.0.1.0 - Production on Thu Sep 29 20:39:04 2011

    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.

    connected to target database: RAC (DBID = 2346715690)
    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-00554: initialization of the package manager internal collection failed
    RMAN-04006: auxiliary database error: ORA-12504: TNS:listener did not have the SERVICE_NAME in CONNECT_DATA


    My tnsnames.ora file is as follows

    to_std =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = tcp (PORT = 9999))(HOST=datagrd))
    )
    (CONNECT_DATA =
    (SERVICE_NAME = STB.msftpnq.com)
    )
    )


    and my listsner.ora file is as follows

    list_std =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = tcp (PORT = 9999))(HOST=datagrd))
    )
    )
    SID_LIST_list_std =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = STB.msftpnq.com)
    (SID_NAME = STB)
    (ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1)
    )
    )


    Please can someone help me to solve the issue.


    Thanks in advance.

    change the string Service_name in the tnsnames.ora file in the following and try again

    (SERVICE_NAME = STB) will be replaced by (SERVICE_NAME = STB.msftpnq.com)

  • RMAN-04005: target database error: ORA-01031: insufficient privileges

    Try to duplicate db
    I checked the orapwd file looks ok.

    Oracle: tulpcorpadb03$ rman TARGET sys/***@wcmp AUXILIARY.

    Release of Recovery Manager: 9.2.0.8.0 - 64 bit Production

    Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved.

    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-00554: initialization of the package manager internal collection failed
    RMAN-04005: target database error:
    ORA-01031: insufficient privileges

    I findout, this is prod db and not allowed to bounce to change, any other solution do rman duplicate work without changing it?

    SQL > show parameter password

    VALUE OF TYPE NAME
    -----------
    Remote_login_passwordfile string NONE

    SQL > connect virtue sysdba;
    Connected.
    SQL > select * from v$ pwfile_users;

    no selected line

    The auxiliary node must always have access to the backupset.

  • (ORA-00955) conflict of naming for index and constraint when you use a unique index (.. desc,.. CSA)

    Hello

    indexes and constraints are in different namespaces, so it should be possible to give them the same name.

    In the following case that apparently does not work:

    create unique index orders_year_show_uq
      on orders (year desc, show_orders asc);
     
     alter table orders
      add constraint orders_year_show_uq unique (year, show_order);
    

    When I run these statement, I get a "SQL Error: ORA-00955: name is already used by an existing object". ""

    If I clean and I execute the same instructions as above with the only difference on the 2 line, using "asc year" instead of "year desc":

    
      on orders (year asc, show_orders asc);
    

    then it success.

    I can't explain it, you have an idea?

    Thanks in advance.

    Kind regards

    Giovanni

    First of all, you have show_orders in index and show_order in the constraint. I'll assume that it's a typo. Second, when you create constraint without index enhance the specification Oracle seeks indexes existing on the same set of columns in ascending order. If this index does not exist (and it's your case, since one of your columns to index is in descending order), Oracle tries to create one with the same name as the constraint. That's why you get ORA-00955: name is already used by an existing object. In general, you can specify explicitly the index name to force the Oracle by using the existing index. But it will not help you. If you issue

    ALTER table orders add unique constraint (year, show_orders) orders_year_show_uq using index orders_year_show_uq;

    You will get the ORA-14196: specified index cannot be used to apply the constraint.

    In any case, Oracle does not support using index DESC for PK/UK.

    SY.

  • How to find tables partitioned, whose loading may fail with error ORA-14400

    Hello

    We have several partitioned tables. Sometimes when partitions are not created for this month, we get this error

    ORA-14400 does map to any partition inserted partition key

    May I know if there are any script or sql that I can use to discover arrays that may fail to load if DBA creates partitions in the next 2 weeks?

    Thank you
    Sarayu K.S.

    Of course, you can:

    1. look in DBA_TAB_PARTITIONS by nom_partition if you are using a special naming convention, where owner = and table_name = and nom_partition =

    2. without entering the name of the partition, you could use dba_tab_partitions and instead check that there is a partition to your table with a high_value you plan to use. Know that the high_value is a long data type, then you will probably need to convert it into a varchar2.

    3. before your big load, you can also insert a row into the table of destination with the new partition key that will be used and intercept errors with an exception handler. Roll it back if he succeeds.

    4. a number of partitions may be created in advance to avoid the constant surveillance of the new partitions.

    5 or you could also consider switching to interval partitioning if you're on 11 g and get out of the business of having to manually create partitions.

  • ORA-28547: connection to the server failed, probable Oracle Net admin error.

    Dear all,

    My11gR2 database on windows 2008 R2 Standard is in error "ORA-28547: connection to the server failed, probable Oracle Net admin error.

    It's when I try to log on to the server itself

    as:

    SQL * more: Production of release 11.2.0.1.0 kills him Oct 8 05:43:03 2013

    Copyright (c) 1982, 2010, Oracle.  All rights reserved.

    Enter the user name: sys/***@orcl as sysdba

    "ORA-28547: failed to connect to the server, likely admin error Oracle Net.

    This started happening when the server has been restarted. I don't know if I have to stop any service, as in some cases under Linux should be stopped service iptables.

    The solution I found on most of the forums is to change in sqlnet.ora since '#SQLNET. AUTHENTICATION_SERVICES = (NTS) 'to' #SQLNET. AUTHENTICATION_SERVICES = (NONE)"and restart the receiver.

    But even if it doesn't in my case.

    Kindly help.

    Best regards, Imran

    Guys, there are 2 databases installed on the same server, to correctly configure the SID. Once set, I could see that the database is down and when starting it started working well.

    Thanks for your efforts.

  • Error: ORA-16757: failed to get the value of this property

    Hi all
    I have an error:
    DGMGRL > see the database dbname_stb LogXptStatus;
    Error: ORA-16757: failed to get the value of this property
    I check:
    DGMGRL > see the configuration;

    Configuration - dbname_dg

    Protection mode: MaxPerformance
    Databases:
    dbname_pr - primary database
    dbname_stb - physical of the standby database

    Fast-Start Failover: DISABLED

    The configuration status:
    SUCCESS

    drcdbname_stb.log:
    RSM0: Received the request the property Get: rid = 0 x 01010000, pid = 54
    2012-10-17 15:21:14.702 of database Resource: get the LogXptStatus property
    RSM 15:21:14.702 2012-10-17 error: trying to interview a 'LogXptStatus' primary type property on a standby database resource.
    2012 10-17 error 15:21:14.702 database resource GetProperty (16501,16757)

    I don't understand this error?
    Thank you all.

    Take a look on this

    Re: ORA-00254 | Trouble with dataguard

  • expdp fails with error ORA-39006: internal error written on a windows share

    Hello!
    I need to get the job of following configuration:
    Linux (CentOS 5 32-bit) with Oracle 11.2.0.1.0 Server
    Windows Server 2003 32-bit SP2.
    On the windows server, I created a user called oracle, who is a member of the groups oinstall and dba. (User name of Linux, and group membership is the same).
    After this, I share a directory on D:\data_pump (I gave full control of the directory of the oracle user). I mount the disk windows on my Linux box as follows:
    Mount-t cifs //winserver/data_pump/u04/oradata/data_pump o = oracle user password = "pass", uid = oracle, gid = oinstall
    As the oracle linux user I am able to create and edit files, but:
    I cannot connect to my database, create the directory called DATA_PUMP pointing to my cifs mount point, and after that, I run the following expdp sentence:
    expdp system DIRECTORY = DATA_PUMP DUMPFILE = test4.dmp LOGFILE = test4.log FULL = yes

    And I get the following error:
    ORA-39006: internal error

    In looking at expdp journal I found the following information:
    ORA-39097: Data Pump job encountered the error unexpected-31643
    ORA-39065: exception unexpected master process in FILE
    ORA-31643: cannot close the dump file ' / u04/oradata/data_pump/gaston4.dmp '.
    ORA-19510: unable to set the size of the blocks of 1 for the file ' / u04/oradata/data_pump/gaston4.dmp ' (block size = 4096)
    ORA-27045: cannot close the file
    Linux error: 5: input/output error
    Additional information: 4

    Do you have any suggestions?

    Thanks in advance.

    Hi, I see metalink:
    Bug 8313127: EXPORT EXPDP CIFS MOUNT ON WINDOWS FROM LINUX FAILS
    http://KR.forums.Oracle.com/forums/thread.jspa?threadID=923398

  • Using Merge in oracle 11g this error SQL Error: ORA-30926: failed to get a stable set of rows in the source tables

    whenever I run this code I get this error

    SQL Error: ORA-30926: failed to get a stable set of rows in the source tables

    30926 00000 - "impossible to get a stable set of rows in the source tables.

    * Cause: A stable set of rows could not be achieved due to the large dml

    activity or one not deterministic where clause.

    * Action: Remove any non deterministic of the clauses and reissue of the dml.

    Don't know wht goes wrong!


    SQL:

    MERGE IN VENDORS_ACTIVE_DATE s

    USING (nvl (d.VENDOR, s.VENDOR) selection of the SELLER,

    NVL (d.COMPANY_CODE, s.COMPANY_CODE) COMPANY_CODE.

    (case when ((d.VENDOR = s.VENDOR) and (d.COMPANY_CODE = s.COMPANY_CODE)))

    )

    then "MATCH".

    When d.COMPANY_CODE is null

    then 'DELETE '.

    When s.COMPANY_CODE is null

    then "INSERT."

    else 'UPDATE '.

    chck end)

    from (select * from VENDORS_ACTIVE_DATE where COMPANY_CODE = 2) s

    full outer join (select * provider where COMPANY_CODE = 2) d

    on (d.COMPANY_CODE = s.COMPANY_CODE AND s.COMPANY_CODE = 2)

    ) d

    WE (d.COMPANY_CODE = s.COMPANY_CODE AND d.chck in ('UPDATE', 'GAME', 'DELETE'))

    WHEN MATCHED THEN

    UPDATE SET s.VENDOR = d.VENDOR

    WHERE d.chck in ('UPDATE', 'DELETE')

    DELETE WHERE d.chck = 'DELETE '.

    WHEN NOT MATCHED THEN

    INSERT (SELLER, COMPANY_CODE)

    VALUES (d.VENDOR, d.COMPANY_CODE)

    Work request: (deleted the duplicate data in tables (source and target))

    MERGE IN VENDORS_ACTIVE_DATE s

    USING (nvl (d.VENDOR, s.VENDOR) selection of the SELLER,

    NVL (d.ACTIVEDATE, s.ACTIVEDATE) ACTIVEDATE.

    NVL (d.COMPANY_CODE, s.COMPANY_CODE) COMPANY_CODE.

    (case when ((d.VENDOR = s.VENDOR))

    - AND D.ACTIVEDATE = S.ACTIVEDATE

    and NVL (d.ACTIVEDATE, trunc (sysdate)) = NVL (s.ACTIVEDATE, trunc (sysdate))

    and (d.COMPANY_CODE = s.COMPANY_CODE)

    )

    then "MATCH".

    When d.COMPANY_CODE is null

    then 'DELETE '.

    When s.COMPANY_CODE is null

    then "INSERT."

    else 'UPDATE '.

    chck end)

    from (select * from suppliers where COMPANY_CODE = 2) d

    full outer join (select * from vendors_active_date where COMPANY_CODE = 2) s

    on (d.COMPANY_CODE = s.COMPANY_CODE and s.vendor = d.vendor)

    ) d

    WE (d.COMPANY_CODE = s.COMPANY_CODE AND d.VENDOR = s.VENDOR AND d.chck in ('UPDATE', 'GAME', 'DELETE'))

    WHEN MATCHED THEN

    S.ACTIVEDATE = UPDATE SET d.ACTIVEDATE

    WHERE d.chck in ('UPDATE', 'DELETE')

    DELETE WHERE d.chck = 'DELETE '.

    WHEN NOT MATCHED THEN

    INSERT (VENDOR, ACTIVEDATE, COMPANY_CODE)

    VALUES (d.VENDOR, d.ACTIVEDATE, d.COMPANY_CODE)

  • IMPDP import DataPump fails with error ORA-31626 ORA-6512 31637 ORA ORA-31632 ORA-31635

    Hello


    As he attempted an impdp, I get after the sequence of errors-


    ORA-31626: there is no job
    ORA-06512: at "SYS." DBMS_SYS_ERROR', line 79
    ORA-06512: at "SYS." "KUPV$ FT", line 885
    ORA-31637: failed to create the SYS_IMPORT_TABLE_01 work for user LSU
    ORA-31632: table main "LSU. SYS_IMPORT_TABLE_01"not found, invalid or unreachable
    ORA-31635: impossible to establish synchronization job resources
    ORA-06512: at "SYS." DBMS_SYS_ERROR', line 79
    ORA-06512: at "SYS." "KUPV$ FT_INT", line 1986
    ORA-04063: package body 'SYS. DBMS_LOCK"contains errors
    ORA-06508: PL/SQL: called program unit is not found: 'SYS. DBMS_LOCK.


    Parameters passed to impdp are also less

    Impdp sjm/xxxxxx@flman700 DIRECTORY = temp_dir DUMPFILE = dyman01_exp01.dmp, dyman01_exp02.dmp, dyman01_exp03.dmp, dyman01_exp04.dmp, dyman01_exp05.dmp, dyman01_exp06.dmp LOGFILE is one. JOURNAL OF THE TABLES = CST_ACTVT TABLE_EXISTS_ACTION = ADD


    Any help on how to proceed to another. Cannot find jobs datapump hung in the target database.

    Version of data source and target - 10.2.0.3


    Thank you


    Sery

    Hello

    According to DBA_DEPENDENCIES (for 11.1 anyway) the dependencies of the table for DBMS_LOCK are DUAL and DBMS_LOCK_ALLOCATED - these two exist?

    I suggest that you get a failure and the rerun catalog and the catproc.

    See you soon,.

    Rich

  • Impdp fails with error ORA-39779

    database version: 11.2.0.4.0

    compatible parameter: 11.2.0.0.0

    Sparc 64-bit OS

    Hello guys I am confronted with the error "ORA-39779: type '< schema2 >'". "< type_name >' not found or conversion to the latest version is not possible while import"while trying to import into a target database. "

    Where to I checked all told them to use the transform parameter = oid:n, I've used this setting and I still get the error.

    in a thread, said, maybe it's because users are already created in the database until the import began.

    Someone faced this problem in the past, please help me.

    Thank you

    expdp settings file

    Directory = < directory_name >

    dumpfile = < dumpfile_name > _%U.dmp

    logfile = < logfile_name > .log

    parallel = 8

    compression = all

    schemas = schema1, schema2, schema3

    exclude = grant

    Impdp settings file

    Directory =< < directory_name > >

    dumpfile = <dumpfile_name > _%U.dmp

    logfile = <logfile_name> .log

    parallel = 8

    schemas =schema1, schema2, schema3

    remap_schema =schema1:schema1, schema2:schema2, schema3:schema3

    transform = oid:n

    REMAP_TABLESPACE = < tablespace_1 >: < tablespace_2 >

    Hello guys, this is supported

    Action taken:

    When the schema has been imported, the DDL of the tables are already created.

    I come from a content import = data_only export of the source database for only tables that have failed, then imported again.

Maybe you are looking for

  • How can I add sites to my 'reading list' of the desktop version?

    Kindle has this add-on for Firefox called desktop version 'send to Kindle', where I simply hit Ctrl + K and then I would have the current Web page stored on my Kindle. Very handy when I travel to work without connection. How can I do this with my Tab

  • 50% of TosBtMng.exe allways need the CPU performance

    Hello My English may surrounding isn't very good. I have a problem with the Toshiba Bluetooth Personal Area Network adapter in my other laptop manufacturer. Allways when bluetooth TosBtMng.exe Manager runs, it takes 100% of the second part of my Inte

  • elitebook hp8470p: using the keypad

    wireless connection.   on my keyboard, I noticed numbers on some of the keys which forms a numeric keypad. I tried using this key and were not successful, can someone help me to activate this thing. thanx

  • Installation issue with Call of Duty - World At War game software

    Game was a purchase / download from GameSpot.  Download seems normal.  Extract / Unzip seems normal.  After the permissions Windows, install works briefly, then displays the message "one or more files missing:CodWorldAtWar.Data.004.  The file appears

  • Can I uninstall Windows XP and reinstall without losing data?

    I managed to destroy my XP installation so bad that I can't retrieve it using the original installation CD. can I uninstall and reinstall without losing all my backup files? Thanks for any help or advice