Upgrade failed 9i to 10g using rman

Hi all,
I have an instance 9i at computer1. And I want to create new instance 10g at computer2 using rman from previous 9i instance. I have took a rman from 9i instance. And I have restored the other computer. Then I want to startup the new instance (10g), I have following error:
ORA-00704: bootstrap process failure
ORA-39700: database must be opened with UPGRADE option
Mon Jun 21 15:24:03 2010
Error 704 happened during db open, shutting down database
USER: terminating instance due to error 704
Instance terminated by USER, pid = 7209
ORA-1092 signalled during: ALTER DATABASE OPEN...
What can I do?
Regards
Edited by: ilke_altinpulluk on 22.Haz.2010 08:16

Don't use RMAN as the DBUA (Really). Build a new 10 database and migrate the data using either data pump or Import/Export.
Create non-system roles first (create a script on oracle 9)
Then create the users. (Do not create system users)
(DBA_USERS should have all this info)
Do not move any SYS or SYSTEM schema objects. (Forget about SCOTT etc too)
Move all other schemas and compare.
Make sure you check for Database links and directories etc that need to be moved but are not part of any schema.
Database link scripts can be created from SQL DEVELOPER.
You can get directory info from DBA_DIRECTORIES
Double check all user and role grants at the very end.

Similar Messages

  • Database upgrade from 8i to 10g using exp/imp

    Dear Friends,
    Please provide the steps to upgrade from 8i to 10g using exp/imp.
    Thanks,
    Rathinavel

    Hi;
    Please also see cold backup option
    How to migrate from 8i to 10g to new server using cold backup [ID 742108.1]
    Also see:
    Upgrading from 8i to 10g with import utility
    http://searchoracle.techtarget.com/answer/Upgrading-from-8i-to-10g-with-import-utility
    Regard
    Helios

  • Document for upgrading 8i to 10g using RMAN backup

    hi
    I need to restore a 8i database on a server and then wanted to upgrade it to 10g.
    Is there any good documentation available ?

    RMAN won't perfom upgrade. You'll have to resotore your database using the Recovery Manager reference manual 8i: http://download-west.oracle.com/docs/cd/A87860_01/doc/server.817/a76990/toc.htm . (Watch out, the above mentioned reference is for RMAN 10g, there were many differences between 8i and 10g, if you try to use 10g syntax on an 8i rman it will partially work or won't work at all)
    Install 8i on your target OS.
    Restore/Recover with rman 8i your 8i rman backup.
    Your rman backup must be located at the same path where it was when you obtained it on your source OS.
    Once you have made sure it opens, proceed with upgrade.
    Read upgrade guide for an specific upgrade procedure for 8i->10g.

  • Backup from 9i and restore this backup to 10g using RMAN

    Hi all;
    I have a database 9i on SuSE9. And I want to restore another server this database's backupsets to 10g on SuSE10 using RMAN. Then I have run following scripts.
    On 9i Database: (SID=discoden)_
    RMAN > backup database plus archivelog;
    and I have three backupsets (05l87nik_1_1, 06l87nio_1_1, 07l87nml_1_1) and one controlfile backup (c-4279316798-20100310-00). then I copy these backuppieces to new server.
    On 10g Database:_
    +1. I have created udump and bdump folder into $ORACLE_BASE/admin/discoden/+
    +2. I have copied init.ora, pasted initdiscoden.ora in $ORACLE_HOME/dbs folder. And I have changed following parameters+
    db_name = discoden
    shared_pool_size = 350000000
    control_files = (/disk2/oracle/discoden/control01.ctl, /disk2/oracle/discoden/control02.ctl, /disk2/oracle/discoden/control03.ctl)
    user_dump_dest = /opt/oracle/admin/discoden/udump
    background_dump_dest = /opt/oracle/admin/discoden/bdump
    compatible = 10.2.0.3.0
    undo_management = auto
    +3. export ORACLE_SID=discoden+
    +4. cd $ORACLE_HOME/bin+
    +5. ./rman target /+
    +6. RMAN> startup nomount;+
    +7. RMAN> restore controlfile from '/disk2/setup/c-4279316798-20100310-00';+
    +8. RMAN> alter database mount ;+
    +9. RMAN> catalog backuppiece '/disk2/setup/05l87nik_1_1';+
    RMAN> catalog backuppiece '/disk2/setup/06l87nio_1_1';
    RMAN> catalog backuppiece '/disk2/setup/07l87nml_1_1';
    +10. SQL> alter database rename file '/disk2/oracle9i/databases/discoden/redo01.log' to '/disk2/oracle/discoden/redo01.log';+
    SQL> alter database rename file '/disk2/oracle9i/databases/discoden/redo02.log' to '/disk2/oracle/discoden/redo02.log';
    SQL> alter database rename file '/disk2/oracle9i/databases/discoden/redo03.log' to '/disk2/oracle/discoden/redo03.log';
    +11. RMAN > list backup; (With this command, I have learned last sequence number. For example 204)+
    +12. I have run following command on RMAN:+
    +run {+
    set until sequence 204;
    set newname for datafile 1 to '/disk2/oracle/discoden/system01.dbf';
    set newname for datafile 2 to '/disk2/oracle/discoden/undotbs01.dbf';
    set newname for datafile 3 to '/disk2/oracle/discoden/cwmlite01.dbf';
    set newname for datafile 4 to '/disk2/oracle/discoden/drsys01.dbf';
    set newname for datafile 5 to '/disk2/oracle/discoden/example01.dbf';
    set newname for datafile 6 to '/disk2/oracle/discoden/indx01.dbf';
    set newname for datafile 7 to '/disk2/oracle/discoden/odm01.dbf';
    set newname for datafile 8 to '/disk2/oracle/discoden/tools01.dbf';
    set newname for datafile 9 to '/disk2/oracle/discoden/users01.dbf';
    set newname for datafile 10 to '/disk2/oracle/discoden/xdb01.dbf';
    set newname for datafile 11 to '/disk2/oracle/discoden/DATASPACE1.dbf';
    set newname for datafile 12 to '/disk2/oracle/discoden/CARDEM.dbf';
    set newname for datafile 13 to '/disk2/oracle/discoden/MUHASEBE.dbf';
    set newname for datafile 14 to '/disk2/oracle/discoden/ORTAK.dbf';
    set newname for datafile 15 to '/disk2/oracle/discoden/MAGAZA.dbf';
    restore database;
    switch datafile all;
    recover database;
    alter database open resetlogs;
    +}+
    Then I have an error like following lines:
    +..........+
    media recovery complete, elapsed time: 00:00:04
    Finished recover at 06-MAR-10
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00601: fatal error in recovery manager
    RMAN-03004: fatal error during execution of command
    ORA-03114: not connected to ORACLE
    ORA-03114: not connected to ORACLE
    RMAN-03002: failure of alter db command at 03/06/2010 09:00:47
    ORA-01092: ORACLE instance terminated. Disconnection forced
    ORA-00704: bootstrap process failure
    ORA-39700: database must be opened with UPGRADE option
    ORACLE error from target database:
    ORA-03114: not connected to ORACLE
    I don't understand the mistakes. I hope your helps. Thank you.

    Hi,
    You have followed the steps correctly while restoring and recovering the 9i database under 10g home using RMAN except the last step of opening the database.
    Remove 'alter database open resetlogs;' from the rman script and rerun the script. Once the database is restored and recovered, open the database with RESETLOGS & UPGRADE option through SQL*Plus as below.
    SQL> alter database open resetlogs upgrade;
    Once the database is opened, create the SYSAUX tablespace and run $ORACLE_HOME/rdbms/admin/ upgrd.sql catupgrd.sql script to upgrade the database to 10g ( follow the steps for upgrading the database).
    MetaLink Note : 369644.1 - Answers To FAQ For Restoring Or Duplicating Between Different Versions And Platforms
    Regards,
    Vaibhav
    Edited by: Vaibhav on Mar 11, 2010 11:09 AM

  • How to restore a single instance database to RAC (10g) using RMAN ?

    Hi all,
    I have a single instance database configured using file system in a unique server, so now I need to restore this database using RMAN to a new RAC environment with two nodes and ASM also.
    Does anyone can help with this documentation or a link about any information about this restore using rman ?
    I tryied found on metalink but threres isn´t this specific case. Only how to convert single instance to 10g RAC, but without how to use with rman information.
    System: Windows 2003
    Oracle 10g R2
    Thanks.
    Wander(Brazil)

    Wander(Brazil) wrote:
    Hi all,
    I have a single instance database configured using file system in a unique server, so now I need to restore this database using RMAN to a new RAC environment with two nodes and ASM also.
    In essense you are really doing nothing more than restoring a backup on a new host. If you want a blow by blow detail of how to accomplish it take at http://www.oracledistilled.com/oracle-database/restore-database-to-another-host-using-rman
    In order to write the files to the ASM Disk groups you will use the SET NEWNAME FOR DATAFILE in your restore script. You will also need to create the ORACLE_BASE/admin/<DBSID> structure on all of node. Once you get the database completely restore you will need to edit the SPFILE to include the proper value for the CLUSTER* parameters and each the node specific parameters. Sorry that it is kind of higher level than what you are probably looking for but the link above and what I put here should get you were want to go.

  • Can I use RMAN transportable database cross platform from 10g to 11g?

    Hi,
    I'm working on the migration plan, the source db server is solaris with 10g database while the destination server is AIX with 11g database.
    Can I use RMAN transportable database for this purpose?
    Coz I have read the restrictions on Cross-Platform Transportable Database, but it does not mention whether it can work for different version of database.
    please help.

    Hi,
    Do you have metalink account? If yes please check : Cross-Platform Migration on Destination Host Using Rman Convert Database [ID 414878.1]*
    RMAN Cross-Platform Transportable Databases and Tablespaces
    Thank you

  • Tnsname resolve failed after performing an restore using rman

    I create an full database backup using rman and I want to perform an restore on another server. Steps are as follows.
    1. Install the same release of oracle database and apply the same release of patches in the testing server.
    2. Create an instance with the same name of original database.
    3.Perform the restore using rman.
    4.Create an spfile from pfile.
    5.Add an new tempfile then delete the old one.
    6. Shutdown the instance and restart it.
    7. reconfigure the listner.
    8. reconfigure the tns.
    In this step it fails,saying that "TNS:listener does not currently know of service requested in connect descriptor",but if I change the servername to the original server name,it succeed.

    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=MOSS-001)(PORT=1521)))
    Services Summary...
    Service "JDEDB.PharmaTechs.com" has 1 instance(s).
    Instance "jdedb", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:3 refused:0 state:ready
    LOCAL SERVER
    Service "JDEDBXDB.PharmaTechs.com" has 1 instance(s).
    Instance "jdedb", status READY, has 1 handler(s) for this service...
    Handler(s):
    "D000" established:0 refused:0 current:0 max:1002 state:ready
    DISPATCHER <machine: MOSS-001, pid: 7912>
    (ADDRESS=(PROTOCOL=tcp)(HOST=MOSS-001.pharmatechs.com)(PORT=2406))
    Service "JDEDB_XPT.PharmaTechs.com" has 1 instance(s).
    Instance "jdedb", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:3 refused:0 state:ready
    LOCAL SERVER
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0
    LOCAL SERVER
    The command completed successfully

  • Deletion of archive log using RMAN Target in Oracle 10g

    Hi All,
    I recently have noticed that the archive logs have occupied 102 GBs out of the drive and I need to free up some space. When I tried to connect RMAN Catalog using
    connect catalog user@dbI got error message as
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-06445: cannot connect to recovery catalog after NOCATALOG has been usedBut I was able to get through using
    connect target user@dbMy Query is can I use
    RMAN> delete noprompt expired archivelog all;as given in [how to delete archive log file |https://forums.oracle.com/forums/thread.jspa?threadID=2321257&start=0&tstart=0]
    Or shall I take any other approach to delete the obsolete archive logs?
    Regards,
    *009*

    Hello;
    I recently have noticed that the archive logs have occupied 102 GBs out of the drive and I need to free up some space. When I tried to connect RMAN Catalog using
    connect catalog user@dbI got error message as
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-06445: cannot connect to recovery catalog after NOCATALOG has been usedBut I was able to get through using
    connect target user@db
    Are you trying to connect it through Grid control ? If connecting through a script, then please post its contents.
    Make sure you are not connecting to the target database using "nocatalog".
    rman target sys/<pwd_of_target>@<target_db> catalog <catalog_schema>/<catalog_schema_pwd>@<catalog_db>
    My Query is can I use
    RMAN> delete noprompt expired archivelog all;
    as given in [how to delete archive log file |https://forums.oracle.com/forums/thread.jspa?threadID=2321257&start=0&tstart=0]
    Or shall I take any other approach to delete the obsolete archive logs?
    Regards,
    *009*Are these archives backed up ? The above command only updates the RMAN repository if in case the archives were delete manually at OS level.
    I would recommend you to backup these archives and then delete them.
    RMAN>backup archivelog all not backedup 1 times delete input;If these archives are already backed up and have not been deleted from the disk, then you can use the below command
    RMAN>delete force noprompt archivelog all completed before 'SYSDATE-n';where "n" is the number of days behind the current date. Make sure to verify if these archives have been backed up before deleting.
    Regards,
    Shivananda

  • Rman backup fails on windows when using batch file

    Hello Gurus ..
    I am trying to setup incremental backup on my windows OS based server using RMAN command in batch file. When I use batch file in OS scheduler it is working fine, when I am calling same batch file from my LOCAL desktop PC it throws errors as below.
    D:\> \\3.193.211.19\sgdba\rman\bkp_acressit.bat
    D:\>rman catalog rman/******@acressit target / cmd
    file=E:\sgdba\rman\bkp_arch.rcv log E:\sgdba\rman\sit_arch_rman_backup.log
    RMAN-00557: could not open MSGLOG "E:\sgdba\rman\sit_arch_rman_backup.log"
    Argument Value Description
    target quoted-string connect-string for target database
    catalog quoted-string connect-string for recovery catalog
    nocatalog none if specified, then no recovery catalog
    cmdfile quoted-string name of input command file
    log quoted-string name of output message log file
    trace quoted-string name of output debugging message log file
    append none if specified, log is opened in append mode
    debug optional-args activate debugging
    msgno none show RMAN-nnnn prefix for all messages
    send quoted-string send a command to the media manager
    pipe string building block for pipe names
    timeout integer number of seconds to wait for pipe input
    checksyntax none check the command file for syntax errors
    Both single and double quotes (' or ") are accepted for a quoted-string.
    Quotes are not required unless the string contains embedded white-space.
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00556: could not open CMDFILE "E:\sgdba\rman\bkp_arch.rcv"
    Contents of the batch file and RCV file as below:
    Batch File:
    rman catalog rman/*******@acressit target / cmdfile=E:\sgdba\rman\bkp_arch.rcv log E:\sgdba\rman\sit_arch_rman_backup.log
    RCV File:
    RUN {
    ALLOCATE CHANNEL ch1 TYPE
    DISK FORMAT 'E:\ORA_RMAN_BACKUP\ARCH_%d_%u_%s_%p';
    BACKUP ARCHIVELOG delete input;
    RELEASE CHANNEL ch1;
    EXIT;
    --------------------------xxxxxxxxxxxxxx------------------------
    * on my DB server I am login using my administrator account, on my PC I dont have admin account.
    * I have checked remote execution using local user as well as admin user.
    * I have checked the permission and my local ID & EVERYONE has all permission in that folder.
    Any help will be appriciated.
    Thanks & Regards
    Ashish

    Ashish wrote:
    hi Atil,
    u have guessed it correctly, I came to know that issue later I copy file on local PC and it works fine.
    Now I am working on netbackup server. I want to use the same script to initiate backup from netbackup server. Do you have any idea or any guidelines from you will appriciate.
    Thanks
    AshishAshish,
    Is it "symantec's netbackup"? I do not know that product and if it has an option to enter your own RMAN scripts. On the other hand, it should be able to create irman scripts according to your backup job definition.
    Regards
    Gokhan

  • Upgrade using RMAN

    Hi,
    I have taken oracle 9i database backup using RMAN at Linux Platform.Is it possible to restore that oracle 9i backup using oracle 11g RMAN at HP-UX platform..??

    It shows
    RMAN> list backup;
    List of Backup Sets
    ===================
    BS Key Size Device Type Elapsed Time Completion Time
    1 1M DISK 00:00:01 19-NOV-10
    BP Key: 1 Status: AVAILABLE Tag: TAG20101119T105400
    Piece Name: /u01/ebs-11i-db/visdb/9.2.0/dbs/03ltcua8_1_1
    List of Archived Logs in backup set 1
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 71 8173870772927 19-NOV-10 8173870778422 19-NOV-10
    BS Key Size Device Type Elapsed Time Completion Time
    2 92M DISK 00:00:06 19-NOV-10
    BP Key: 2 Status: AVAILABLE Tag: TAG20101119T154123
    Piece Name: /mnt/OracleDownloads/9iRman/backup/tape010gltdf53_1_1
    List of Archived Logs in backup set 2
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 71 8173870772927 19-NOV-10 8173870778422 19-NOV-10
    1 72 8173870778422 19-NOV-10 8173870915222 19-NOV-10
    1 73 8173870915222 19-NOV-10 8173871023589 19-NOV-10
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    3 Full 41G DISK 02:13:57 19-NOV-10
    BP Key: 3 Status: AVAILABLE Tag: TAG20101119T154131
    Piece Name: /mnt/OracleDownloads/9iRman/backup/tape010hltdf5b_1_1
    Controlfile Included: Ckp SCN: 8173871024036 Ckp time: 19-NOV-10
    List of Datafiles in backup set 3
    File LV Type Ckp SCN Ckp Time Name
    1 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/sys1.dbf
    2 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/sys2.dbf
    3 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/sys3.dbf
    4 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/sys4.dbf
    5 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/sys5.dbf
    6 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/sys6.dbf
    7 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/sys7.dbf
    8 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/undo01.dbf
    9 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/undo02.dbf
    10 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/undo03.dbf
    11 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/undo04.dbf
    12 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/archive1.dbf
    13 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/archive2.dbf
    14 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/media1.dbf
    15 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/media2.dbf
    16 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/media3.dbf
    17 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/nologging1.dbf
    18 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/queues1.dbf
    19 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/queues2.dbf
    20 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/reference1.dbf
    21 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/reference2.dbf
    22 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/summary1.dbf
    23 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/summary2.dbf
    24 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/summary3.dbf
    25 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/summary4.dbf
    26 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/summary5.dbf
    27 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_data1.dbf
    28 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_data2.dbf
    29 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_data3.dbf
    30 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_data4.dbf
    31 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_data5.dbf
    32 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_data6.dbf
    33 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_data7.dbf
    34 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_data8.dbf
    35 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_data9.dbf
    36 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_data10.dbf
    37 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_data11.dbf
    38 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_idx1.dbf
    39 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_idx2.dbf
    40 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_idx3.dbf
    41 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_idx4.dbf
    42 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_idx5.dbf
    43 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_idx6.dbf
    44 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_idx7.dbf
    45 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_idx8.dbf
    46 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_idx9.dbf
    47 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_idx10.dbf
    48 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/tx_idx11.dbf
    49 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/apps_ts_tx_interface.dbf
    50 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/ctx1.dbf
    53 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/odm.dbf
    55 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/olap.dbf
    56 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/owa1.dbf
    57 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/portal.dbf
    58 Full 8173871024037 19-NOV-10 /u01/ebs-11i-db/visdata/mobile01.dbf
    BS Key Size Device Type Elapsed Time Completion Time
    4 42M DISK 00:00:02 19-NOV-10
    BP Key: 4 Status: AVAILABLE Tag: TAG20101119T175538
    Piece Name: /mnt/OracleDownloads/9iRman/backup/tape010iltdn0q_1_1
    List of Archived Logs in backup set 4
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 74 8173871023589 19-NOV-10 8173871139216 19-NOV-10
    which file i need to consider for backup..???

  • Upgrade oracle  9i to 10g in apps 11i

    I am trying to run dbua from 10g oracle_home. However it gives the following db to upgrade->FATST:/u02/fatstdb/10g:N (this is non-existent oracle home)
    But actually databse that i have to update is -->
    FATST:/u02/fatstdb/9.2.0:N
    We have the following entries in oratab file-->
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    *:/u02/fatstdb/9.2.0:N
    *:/u01/fatstora/iAS:N
    *:/u01/fatstora/8.0.6:N
    FATST:/u02/fatstdb/10g:N
    FATST:/u02/fatstdb/9.2.0:N
    Actually sometime back we tried to upgrade to 10g which failed and then i did clone it from prod. I installed 10g software,companion products,10.20.4 patch set on new oracle_home-/u05/fatstdb/10g
    I believe rest of inventory is clean as i always create a empty oraInventory directory before cloning.
    DBUA also gives message, that if you do not see database that you want, make sure that the entry with database name exists in file /var/opt/oracle/oratab file.
    I think i will have to edit the file oratab manually to remove the entry "FATST:/u02/fatstdb/10g:N" as the desired entry is already there. Is this okay?
    Also i manually copied init<sid>.ora from 9ihome/dbs to 10ghome/dbs modifying the required parameters. i want to know is this manual step required?
    Thanks

    I did that and restarted the DBUA. It went on smoothly but during the Post-install steps, the putty connection was lost and hence GUI also got lost. when i see the PostUpgrade.log
    It states this-->
    DOC> 1. Query returning the number of invalid objects remaining. This
    DOC> number should decrease with time.
    DOC> SELECT COUNT(*) FROM obj$ WHERE status IN (4, 5, 6);
    DOC>
    DOC> 2. Query returning the number of objects compiled so far. This number
    DOC> should increase with time.
    DOC> SELECT COUNT(*) FROM UTL_RECOMP_COMPILED;
    DOC>
    DOC> This script automatically chooses serial or parallel recompilation
    DOC> based on the number of CPUs available (parameter cpu_count) multiplied
    DOC> by the number of threads per CPU (parameter parallel_threads_per_cpu).
    DOC> On RAC, this number is added across all RAC nodes.
    DOC>
    DOC> UTL_RECOMP uses DBMS_SCHEDULER to create jobs for parallel
    DOC> recompilation. Jobs are created without instance affinity so that they
    DOC> can migrate across RAC nodes. Use the following queries to verify
    DOC> whether UTL_RECOMP jobs are being created and run correctly:
    DOC>
    DOC> 1. Query showing jobs created by UTL_RECOMP
    DOC> SELECT job_name FROM dba_scheduler_jobs
    DOC> WHERE job_name like 'UTL_RECOMP_SLAVE_%';
    When i checked the number of invalids they have increased to 173 ..originally they were 73. That is fine , i can recompile them manually.
    SELECT COMP_NAME, VERSION, STATUS FROM
    DBA_REGISTRY
    COMP_NAME VERSION STATUS
    Oracle Database Cata 10.2.0.4.0 VALID
    log Views
    Oracle Database Pack 10.2.0.4.0 VALID
    ages and Types
    Oracle Real Applicat 10.2.0.4.0 INVALID
    ion Clusters
    JServer JAVA Virtual 10.2.0.4.0 VALID
    Machine
    COMP_NAME VERSION STATUS
    Oracle XDK 10.2.0.4.0 VALID
    Oracle Database Java 10.2.0.4.0 VALID
    Packages
    Oracle interMedia 10.2.0.4.0 VALID
    Spatial 10.2.0.4.0 VALID
    Oracle Text 10.2.0.4.0 VALID
    OLAP Analytic Worksp 10.2.0.4.0 VALID
    ace
    COMP_NAME VERSION STATUS
    Oracle OLAP API 10.2.0.4.0 VALID
    OLAP Catalog 10.2.0.4.0 VALID
    Oracle Data Mining 10.2.0.4.0 VALID
    Oracle XML Database 10.2.0.4.0 VALID
    Oracle Enterprise Ma 10.2.0.4.0 VALID
    nager
    15 rows selected.
    I also managed to shutdown and startup the 10g db successfully.
    I checked the database upgrade step and in that it is mentioned that utlrp.sql is the last step in manual database upgrade step .I want to know is there any other post upgrade step that needs to be done or can i just continue the steps from Doc ID:      362203.1 Oracle Applications Release 11i with Oracle 10g Release 2 (10.2.0)

  • Need information about upgrading 9iR2 DB to 10gR2 using Trans Tablespaces

    Hello All,
    Does anyone mig/upgraded db using via transportable tablespaces? if so 9i ===> 10gR2
    1. Exp/Imp: Too large to move
    2. impdp does exist in 9iR2
    3. version are 9ir2 to 10gR2
    Size is 5TB
    Thanks,
    A

    Migration 9i to 10g release 2 requires you to upgrade the 9i release db to 10g r2 and use Transportable Tablespaces to migrate the DB's or do a refresh of the database using RMAN backups or Hotbackup refresh...

  • Upgrade fails in the phase STARTSAP_TBUPG during the upgrade of CRM 4 to 5

    Hello,
    Upgrade failed with the below message in the upgrade phase STARTSAP_TBUPG during the upgrade of CRM 4.0 to CRM 5.0
    Error Message:
    SYSTEM START failed, code -1
                 -1: 'startsap.exe' returned an error
                 See file 'D:\usr\sap\put\log\R3up.ECO' for details.
    R3up.ECO:
    SAPup>  Starting subprocess startsap.exe with id 5844 at 20080402142258
    EXECUTING D:\usr\sap\put\exe\startsap.exe name=SID nr=00 SAPDIAHOST=Hostname
    Environment: dbms_type=mss
    Environment: dbs_mss_schema=cdu
    STARTSAP failed
    Details are written to D:\usr\sap\put\tmp\startSID.log
    Process with ID 6276 terminated with status -1
    startSID.log
    running D:\usr\sap\put\exe\sapstart.exe name=SID nr=00 SAPDIAHOST=Hostname -wait
    SAPSTART finished successfully on Host_SID_00, but at least one process doesn't run correctly:
         msg_server.exe, MessageServer, Running, 2008 04 02 14:22:58, 0:03:19
         disp+work.exe, Dispatcher, Running, Message Server connection ok, Dialog Queue time: 0.00 sec, 2008 04 02 14:22:58, 0:03:19
         igswd.exe, IGS Watchdog, Stopped, 2008 04 02 14:22:58, 0:00:00
    D:\usr\sap\put\exe\sapstart.exe=>sapparam(1c): No Profile used.
    It is trying to start the shadow instance and failing by ending all the work process
    DEV_DISP:
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      01
    sid        SID
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    150
    intno      20050900
    make:      multithreaded, ASCII, optimized
    pid        5348
    Wed Apr 02 17:22:10 2008
    kernel runs with dp version 234(ext=109) (@(#) DPLIB-INT-VERSION-234)
    length of sys_adm_ext is 364 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (01 5348) [dpxxdisp.c   1245]
         shared lib "dw_xml.dll" version 150 successfully loaded
         shared lib "dw_xtc.dll" version 150 successfully loaded
         shared lib "dw_stl.dll" version 150 successfully loaded
         shared lib "dw_gui.dll" version 150 successfully loaded
         shared lib "dw_mdm.dll" version 150 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    Wed Apr 02 17:22:22 2008
    WARNING => DpNetCheck: NiHostToAddr(www.doesnotexist0100.qqq.nxst) took 12 seconds
    Wed Apr 02 17:22:40 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 18 seconds
    ***LOG GZZ=> 2 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5373]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >HOSTNAME_SID_01                      <
    DpShMCreate: sizeof(wp_adm)          22968     (1044)
    DpShMCreate: sizeof(tm_adm)          3642120     (18120)
    DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    DpShMCreate: sizeof(comm_adm)          528048     (1048)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (96)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1296)
    DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 05560040, size: 4281040)
    DpShMCreate: allocated sys_adm at 05560040
    DpShMCreate: allocated wp_adm at 05561B30
    DpShMCreate: allocated tm_adm_list at 055674E8
    DpShMCreate: allocated tm_adm at 05567518
    DpShMCreate: allocated wp_ca_adm at 058E0820
    DpShMCreate: allocated appc_ca_adm at 058E4E70
    DpShMCreate: allocated comm_adm at 058E65E0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 05967490
    DpShMCreate: allocated gw_adm at 059674D0
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 05967500
    DpShMCreate: allocated wall_adm at 05967508
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    ThTaskStatus: rdisp/reset_online_during_debug 0
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 2039 blocks reserved for free list.
    ES initialized.
    WARNING => System running without ICM - check rdisp/start_icman [dpxxdisp.c   12553]
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG Q0K=> DpMsAttach, mscon ( HOSTNAME) [dpxxdisp.c   11867]
    DpStartStopMsg: send start message (myname is >HOSTNAME_SID_01                      <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 40000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 150
    Release check o.K.
    Wed Apr 02 17:23:20 2008
    my types changed after wp death/restart 0x1f --> 0x1e
    my types changed after wp death/restart 0x1e --> 0x1c
    my types changed after wp death/restart 0x1c --> 0x18
    my types changed after wp death/restart 0x18 --> 0x10
    my types changed after wp death/restart 0x10 --> 0x0
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1477
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Wed Apr 02 17:23:30 2008
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Wed Apr 02 11:53:30 2008
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program          Cl  User         Action                    Table
    0 DIA     6916 Ended         no      1   0        0                                                                         
    1 DIA     7724 Ended         no      1   0        0                                                                         
    2 DIA     6044 Ended         no      1   0        0                                                                         
    3 DIA     4300 Ended         no      1   0        0                                                                         
    4 DIA     6992 Ended         no      1   0        0                                                                         
    5 DIA     2412 Ended         no      1   0        0                                                                         
    6 DIA      432 Ended         no      1   0        0                                                                         
    7 DIA     8168 Ended         no      1   0        0                                                                         
    8 DIA     5420 Ended         no      1   0        0                                                                         
    9 DIA     9712 Ended         no      1   0        0                                                                         
    10 UPD     4320 Ended         no      1   0        0                                                                         
    11 ENQ     3476 Ended         no      1   0        0                                                                         
    12 BTC     2676 Ended         no      1   0        0                                                                         
    13 BTC     6816 Ended         no      1   0        0                                                                         
    14 BTC     9636 Ended         no      1   0        0                                                                         
    15 BTC     8356 Ended         no      1   0        0                                                                         
    16 BTC     7004 Ended         no      1   0        0                                                                         
    17 BTC     7284 Ended         no      1   0        0                                                                         
    18 BTC    10048 Ended         no      1   0        0                                                                         
    19 BTC     4560 Ended         no      1   0        0                                                                         
    20 BTC     4196 Ended         no      1   0        0                                                                         
    21 SPO     4268 Ended         no      1   0        0                                                                         
    Dispatcher Queue Statistics               Wed Apr 02 11:53:30 2008
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    1
    2000
    1
    1
    --------++++--
    +
    DIA
    3
    3
    2000
    3
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    2000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          7
    wake_evt_udp_now     0
    wake events           total     3,  udp     3 (100%),  shm     0 (  0%)
    since last update     total     3,  udp     3 (100%),  shm     0 (  0%)
    Dump of tm_adm structure:               Wed Apr 02 11:53:30 2008
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Wed Apr 02 11:53:30 2008
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1477
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Wed Apr 02 17:23:35 2008
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >HOSTNAME_SID_01                      < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes
    Stop gateway
    killing process (1860) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    [DpProcDied] Process lives  (PID:1860  HANDLE:1448)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1477
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Wed Apr 02 17:23:36 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:1860  HANDLE:1448)
    DpStartStopMsg: send stop message (myname is >HOSTNAME_SID_01                      <)
    NiIMyHostName: hostname = 'HOSTNAME'
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 189 bytes
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name                    -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 2 timed out (0ms)
    DpHalt: no more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    send msg (len 110+4) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    NiIPeek: peek successful for hdl 2 (r)
    NiIRead: hdl 2 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                             
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsSendKeepalive : keepalive sent to message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    Wed Apr 02 17:23:37 2008
    NiIPeek: peek for hdl 2 timed out (r; 1000ms)
    NiIRead: read for hdl 2 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   12213]
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 2 in set0
    SiSelNSet: set events of sock 1356 to: ---
    NiBufISelRemove: remove hdl 2 from set0
    SiSelNRemove: removed sock 1356 (pos=2)
    SiSelNRemove: removed sock 1356
    NiSelIRemove: removed hdl 2
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/22
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 9)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 2 / sock 1356
    NiBufIClose: clear extension for hdl 2
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 5348) [dpxxdisp.c   10461]
    Good Bye .....
    Please help me in resolving this issue
    Thanks,
    Vadi

    Hi Suhas,
    Have checked the hostname and it is correct.
    I am getting the below output When i run r3trans -x
    This is r3trans version 6.14 (release 700 - 04.03.08 - 16:43:00).
    r3trans finished (0000).
    I could see the below error message in dev_W21
    ExecuteAndFlush return code: 0x80040e14 Stmt: [if user_name() != 'sid_shd' setuser 'sid_shd']
    C  sloledb.cpp [ExecuteAndFlush,line 6470]: Error/Message: (err 15157, sev 0), Setuser failed because of one of the following reasons: the database principal 'cdu_shd' does not exist, its corresponding server principal does not have server access, this type of database principal cannot be impersonated, or you do not have permission.
    C  Procname: [ExecuteAndFlush - no proc]
    C  setuser 'cdu_shd' failed -- connect terminated
    C  failed to establish conn. 0
    Thanks,
    Vadi

  • SCSM 2010 to 2012 Management server upgrade failed

    I upgrading my scsm 2010 to 2012 both Management and DW server.
    So i have set up the secondary lab environment and do this.
    The DW server has been upgraded successfully to 2012.
    When i try to upgrade SCSM Management server, at the finalizing stage, i get this error as _RegisterExtensionsDeferred
    Log as below.
    2014-08-26T14:48:28.7717429+05:30    Always:    Trace Session Started
    02:48:28:
    02:48:28:Application Started
    02:48:28:This is 64-bit application.
    02:48:28:Product ID  is NOT installed
    02:48:28:Found ProductID:{A193A8C7-CBE7-4F3B-887F-6B03EE43A208}, ProductName:Microsoft System Center Service Manager SP1, Version:7.0.6555.128
    02:48:28:Found SMServer components
    02:48:28:Found SMConsole components
    02:48:28:Setup is running from: c:\SCSM2012\amd64\Setup
    02:48:28:Using local Analysis server as default instance
    02:48:28:Using 'DWASDataBase' as default Analysis server database name
    02:48:28:Using 'Default' as default Analysis server database file path
    02:48:29:Current UI culture (en-US) is not supported. Trying Neutral culture.
    02:48:29:Found c:\SCSM2012\amd64\Setup\en\SCSM_license.rtf.
    02:48:29:Current UI culture (en-US) is not supported. Trying Neutral culture.
    02:48:29:Found c:\SCSM2012\amd64\Setup\en\SCSM_EvalLicense.rtf.
    02:48:29:Current UI culture (en-US) is not supported. Trying Neutral culture.
    02:48:29:Found c:\SCSM2012\amd64\Setup\en\PrerequisiteInputFile.xml.
    02:48:29:Found c:\SCSM2012\amd64\Setup\Server\SM.msi.
    02:48:29:All vital setup files found.
    02:48:29:Upgrading Service Manager 7.0.6555 with 7.5.1561
    02:48:29:Checking dependencies for Server upgrade...
    02:48:40:Managment server is registered with Datawarehouse 'TESTSER'
    02:48:42:Datawarehouse is up-to-date
    02:48:42:Getting Management Group information from TESTSER:ServiceManagerNew
    02:48:42:[GetManagementGroupPropertiesFromDB]:  Opened the DB connection using Data Source=TESTSER;Initial Catalog=ServiceManagerNew;Integrated Security=True;Persist Security Info=False.
    02:48:42:[GetManagementGroupPropertiesFromDB]:  Found Management Group information.
    02:48:42:[GetManagementGroupPropertiesFromDB]:  Found Primary SDK server:..net.
    02:48:42:Validating SmAdminRoleGroup
    02:48:43:Checking MU OptIn state
    02:48:43:MU is not opted in
    02:48:43:Start adding DataItems
    02:48:43:System Center Service Manager Install
    02:48:44:Final Install Tasks
    02:48:44:Done adding DataItems
    02:48:46:Getting Domain List
    02:49:35:LoadPrerequisites: Start adding ComponentTitles
    02:49:35:LoadPrerequisites: Start adding DataItems
    02:49:35:Memory check
    02:49:36:Microsoft SQL Server 2008 Analysis Management Objects
    02:49:36:Memory check
    02:49:36:Processor speed check
    02:49:36:Processor speed check
    02:49:36:Processor speed check
    02:49:36:IIS check
    02:49:36:ASP.NET check
    02:49:36:Basic Authentication check
    02:49:36:Windows Authentication check
    02:49:36:Microsoft .NET Framework 4 check
    02:49:36:Windows Service Pack check
    02:49:36:Microsoft Report Viewer Redistributable check
    02:49:36:PowerShell 2.0 check
    02:49:36:SharePoint Server 2010 check
    02:49:36:SharePoint Farm Administrator check
    02:49:36:SharePoint Server 2010 configuration check
    02:49:36:ADO.NET Data Services Update check
    02:49:36:Microsoft SQL Server 2008 Native Client check
    02:49:36:Language Pack for SharePoint Server 2010 or SharePoint Foundation 2010 - English check
    02:49:36:LoadPrerequisites: Done adding prerequisites checks
    02:49:36:
    02:49:36:**************************************************
    02:49:36:CheckPrerequisites: Checking Memory check prereq.
    02:49:36:CheckPrerequisites:         Logic Type:and    MemoryCheck-8gbWarn: 0
    02:49:36:
    02:49:36:CheckPrerequisites:     Memory check: Passed
    02:49:36:
    02:49:36:**************************************************
    02:49:36:
    02:49:36:**************************************************
    02:49:36:CheckPrerequisites: Checking Microsoft SQL Server 2008 Analysis Management Objects prereq.
    02:49:36:Entered RequiredAMO
    02:49:36:Trying alternate method of detection using Assembly.Load
    02:49:36:CheckPrerequisites:         Logic Type:and    AMO-err: 0
    02:49:36:
    02:49:36:CheckPrerequisites:     Microsoft SQL Server 2008 Analysis Management Objects: Passed
    02:49:36:
    02:49:36:**************************************************
    02:49:36:
    02:49:36:**************************************************
    02:49:36:CheckPrerequisites: Checking Processor speed check prereq.
    02:49:36:CheckPrerequisites:         Logic Type:and    ProcessorSpeedCheck2.5MHz-Warn: 0
    02:49:36:CheckPrerequisites:         Logic Type:and    ProcessorCoreCheck2Core-Warn: 0
    02:49:36:
    02:49:36:CheckPrerequisites:     Processor speed check: Passed
    02:49:36:
    02:49:36:**************************************************
    02:49:36:
    02:49:36:**************************************************
    02:49:36:CheckPrerequisites: Checking Windows Service Pack check prereq.
    02:49:36:CheckPrerequisites:         Logic Type:and    Win2k8R2Sp1Check-Err: 0
    02:49:36:CheckPrerequisites:
    02:49:36:CheckPrerequisites:                 ProductType was not a match.  Looking for: LanmanNT Found: ServerNT
    02:49:36:CheckPrerequisites:         Logic Type:or    Win2k8R2Sp1DCCheck-Err: 2
    02:49:36:CheckPrerequisites:
    02:49:36:CheckPrerequisites:                 The value 6.1.7601.65536 was not within the range 6.2.0 to 9.9.9999.
    02:49:36:CheckPrerequisites:         Logic Type:or    WinSrvrVNextCheck-Err: 2
    02:49:36:CheckPrerequisites:
    02:49:36:CheckPrerequisites:                 ProductType was not a match.  Looking for: LanmanNT Found: ServerNT
    02:49:36:CheckPrerequisites:         Logic Type:or    WinSrvrVNextDCCheck-Err: 2
    02:49:36:
    02:49:36:CheckPrerequisites:     Windows Service Pack check: Passed
    02:49:36:
    02:49:36:**************************************************
    02:49:36:
    02:49:36:**************************************************
    02:49:36:CheckPrerequisites: Checking Microsoft Report Viewer Redistributable check prereq.
    02:49:36:Entered RequiredReportViewer
    02:49:36:CheckPrerequisites:         Logic Type:and    RptVwrCheck-err: 0
    02:49:36:
    02:49:36:CheckPrerequisites:     Microsoft Report Viewer Redistributable check: Passed
    02:49:36:
    02:49:36:**************************************************
    02:49:36:
    02:49:36:**************************************************
    02:49:36:CheckPrerequisites: Checking PowerShell 2.0 check prereq.
    02:49:36:CheckPrerequisites:         Logic Type:and    PowerShell2Check-err: 0
    02:49:36:CheckPrerequisites:         Logic Type:or    PowerShell2Check32-err: 0
    02:49:36:
    02:49:36:CheckPrerequisites:     PowerShell 2.0 check: Passed
    02:49:36:
    02:49:36:**************************************************
    02:49:36:
    02:49:36:**************************************************
    02:49:36:CheckPrerequisites: Checking ADO.NET Data Services Update check prereq.
    02:49:36:Loading System.Data.Services.Client, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
    02:49:36:Found version 3.5.30729.5420
    02:49:36:CheckPrerequisites:         Logic Type:and    ADODotNetDataServicesHotfix-err: 0
    02:49:36:
    02:49:36:CheckPrerequisites:     ADO.NET Data Services Update check: Passed
    02:49:36:
    02:49:36:**************************************************
    02:49:36:
    02:49:36:**************************************************
    02:49:36:CheckPrerequisites: Checking Microsoft SQL Server 2008 Native Client check prereq.
    02:49:36:CheckPrerequisites:         Logic Type:and    SQLNCLI10-err: 0
    02:49:36:
    02:49:36:CheckPrerequisites:     Microsoft SQL Server 2008 Native Client check: Passed
    02:49:36:
    02:49:36:**************************************************
    02:49:37:CheckPrerequisites: Return Value 0
    02:49:39:Doing Pre-Upgrade checks...
    02:49:39:Validating database ServiceManagerNew on SQL Server TESTSER
    02:49:39:Validating SQL Instance TESTSER
    02:49:39:SQL Server: TESTSER
    02:49:39:SQL Server version: 10.50.1600.1
    02:49:39:Full text search installed: True
    02:49:39:Checking if '\administrator' is Sysadmin Or (SecurityAdmin And DbCreator) on SQL Instance TESTSER
    02:49:39:Stopping Service OMSDK on server
    02:49:39:Starting Service OMSDK on server
    02:49:41:Stopping Service OMCFG on server
    02:49:44:Starting Service OMCFG on server
    02:49:47:Validating Path C:\Program Files\Microsoft System Center\Service Manager 2010\
    02:49:47:Checking for available free disck space
    02:49:47:Checking directory write access
    02:49:47:*** Pre-Upgrade checks passed ***
    02:49:47:QuickFixEngineeringHandler: Unable to LoadQuickFixEngineeringFile.
    02:49:47:SetProgressScreen: StartMinorStep.
    02:49:47:statusUpdate: Resetting progress bar.
    02:49:47:ProcessInstalls: Install Item System Center Service Manager Install has a Preprocessing delegate of SystemCenterServiceManagerPreinstallProcessor.  Launching it now.
    02:49:47:SetProgressScreen: Init MSI Install progress.
    02:49:47:statusUpdate: Resetting progress bar.
    02:49:47:LaunchMsi: Msi mutex is not in use.
    02:49:47:LaunchMsi: MSI to launch is: c:\SCSM2012\amd64\Setup\Server\SM.msi.
    02:49:47:LaunchMsi: Turning off the internal UI for c:\SCSM2012\amd64\Setup\Server\SM.msi.
    02:49:47:LaunchMSI:  Enable logging for the MSI at C:\Users\administrator.\AppData\Local\Temp\2\\SCSMInstall02.log.
    02:49:47:LaunchMsi: MSI c:\SCSM2012\amd64\Setup\Server\SM.msi is not in silent mode.  Setting the external UI.
    02:49:47:LaunchMsi: Launching c:\SCSM2012\amd64\Setup\Server\SM.msi
    02:49:52:statusUpdate: Resetting progress bar for MSI: MaxValue 58857
    02:50:09:statusUpdate: Resetting progress bar for MSI: MaxValue 345710070
    02:50:09:Install Progress - (ProcessComponents) Updating component registration
    02:50:09:statusUpdate: Resetting progress bar for MSI: MaxValue 345710070
    02:50:10:Install Progress - (StopServices) Stopping services
    02:50:16:Install Progress - (_StopNamedServices_HealthService.80B659D9_F758_4E7D_B4FA_E53FC737DCC9) Stopping Health services
    02:50:17:Install Progress - (RemoveODBC) Removing ODBC components
    02:50:17:Install Progress - (RemoveFiles) Removing files
    02:50:17:Install Progress - (CreateFolders) Creating folders
    02:50:17:Install Progress - (InstallFiles) Copying new files
    02:50:30:Install Progress - (_CreateDatabase) Creating Database
    02:50:30:Install Progress - (_ExecuteSqlScripts) Configuring Database
    02:52:07:Install Progress - (ExecuteSqlStrings) Executing SQL Strings
    02:52:07:Install Progress - (CreateShortcuts) Creating shortcuts
    02:52:07:Install Progress - (WriteRegistryValues) Writing system registry values
    02:52:08:Install Progress - (_InstallServerPerfCounters.D2179E31_E456_401A_A820_CEBB135E3429) Installing Server Performance Counters
    02:52:12:Install Progress - (WriteEnvironmentStrings) Updating environment strings
    02:52:12:Install Progress - (_Rollback_UninstallBIDMOF.68918168_3885_4F75_BBF8_0CC84213F8D1) Rolling back BID MOF Installation
    02:52:23:Install Progress - (GenerateScript) Generating script operations for action:
    02:52:24:Install Progress - (_MPProcessorDeferred) Importing Management Packs
    02:52:25:Install Progress - (_ExecuteSqlScripts) Configuring Database
    02:52:26:Install Progress - (RegisterUser) Registering user
    02:52:26:Install Progress - (RegisterProduct) Registering product
    02:52:26:Install Progress - (PublishComponents) Publishing Qualified Components
    02:52:26:Install Progress - (MsiPublishAssemblies) Publishing assembly information
    02:52:26:Install Progress - (_ConfigureConfigService.D2179E31_E456_401A_A820_CEBB135E3429) Configure Config Service
    02:52:26:Install Progress - (_CreateInstanceQualityRelationship) Creating Default Instances, Qualities And There Relationships
    02:52:26:Install Progress - (PublishFeatures) Publishing product features
    02:52:26:Install Progress - (_StartNamedServices_HealthService.80B659D9_F758_4E7D_B4FA_E53FC737DCC9) Restarting Health Service
    02:52:26:Install Progress - (PublishProduct) Publishing product information
    02:52:26:statusUpdate: Resetting progress bar for MSI: MaxValue 177276452
    02:52:26:statusUpdate: Resetting progress bar for MSI: MaxValue 177276452
    02:57:32:statusUpdate: Resetting progress bar for MSI: MaxValue 177276452
    02:57:44:An error occurred while executing a custom action:_RegisterExtensionsDeferred
    Upgrade failed after making permanent changes to this management server. A disaster recovery procedure will be necessary to rebuild this machine before attempting upgrade again. Consult the User Guide to determine which action to take next.
    02:57:44:Install Progress - (Rollback) Rolling back action:
    02:57:44:statusUpdate: Resetting progress bar for MSI: MaxValue 177276452
    02:57:44:statusUpdate: Resetting progress bar for MSI: MaxValue 3
    02:57:44:Install Progress - (Rollback) Rolling back action:
    02:57:44:statusUpdate: Resetting progress bar for MSI: MaxValue 10525
    02:58:43:MsiInstallProduct finished for msi c:\SCSM2012\amd64\Setup\Server\SM.msi.
    02:58:43:LaunchMSI: Setting rollback to true
    02:58:43:LaunchMSI: MSI c:\SCSM2012\amd64\Setup\Server\SM.msi returned error 1603:Fatal error during installation
    02:58:43:ProcessInstalls: Install Item System Center Service Manager Install failed to install.  We did not launch the post process delegate.
    02:58:43:SetProgressScreen: FinishMinorStep.
    regards Sundaresan.C

    Jeremiah,
    We ran into this as well. One of two options:
    1.) Just run a repair on the SQL Server installation
    2.) Repair the WMI settings on the SQL Server as descibed here:
    http://social.technet.microsoft.com/Forums/en-US/systemcenterservicemanager/thread/2a91d03e-a685-495e-89ac-a591ec5871f6/
    bb

  • CUCM 8.6.2 to 9.1.2 Upgrade fails

    I am trying to complete an upgrade of CUCM 8.6.2 to 9.1.2 however the upgrade fails at the very end - I have attempted this 4 times in various different ways from using SFTP to local media I get the following error;
    HWModel=7835I3
    CPUCount=1
    CPUType= Intel(R) Xeon(R) CPU           E5504  @ 2.00GHz
    CPUSpeed=2000
    MEMSize=4096
    BIOSVer=IBMCorp. -[D6E150CUS-1.11]- 02/08/2011
    ObjectId=1.3.6.1.4.1.9.1.585
    OSVersion=UCOS 5.0.0.0-2
    SerialNumber= ********
    VendorOID=1.3.6.1.4.1.2]|<LVL::Info>
    05/17/2014 13:54:49 upgrade_install.sh|Cleaning up download...|<LVL::Info>
    05/17/2014 13:54:49 upgrade_install.sh|Cleanup upgrade source area.|<LVL::Info>
    05/17/2014 13:54:49 upgrade_install.sh|Ejecting DVD (/dev/sda1)|<LVL::Debug>
    05/17/2014 13:54:51 upgrade_install.sh|Removing /common/download/9.1.2.10000-28>
    05/17/2014 13:54:51 upgrade_install.sh|Started auditd...|<LVL::Info>
    05/17/2014 13:54:52 upgrade_install.sh|Started setroubleshoot...|<LVL::Info>
    05/17/2014 13:54:52 upgrade_install.sh|Changed selinux mode to enforcing|<LVL::>
    05/17/2014 13:54:52 upgrade_install.sh|Cleaning up rpm_archive...|<LVL::Info>
    05/17/2014 13:54:52 upgrade_install.sh|Removing /common/rpm-archive/9.1.2.10000>
    05/17/2014 13:55:02 upgrade_install.sh|File:/usr/local/bin/base_scripts/upgrade>
    05/17/2014 13:55:02 upgrade_install.sh|set_upgrade_result: set to 1|<LVL::Debug>
    05/17/2014 13:55:02 upgrade_install.sh|is_upgrade_lock_available: Upgrade lock >
    05/17/2014 13:55:02 upgrade_install.sh|is_upgrade_in_progress: Already locked b>
    05/17/2014 13:55:02 upgrade_install.sh|release_upgrade_lock: Releasing lock (pi>
    Installation of UCSInstall_UCOS_9.1.2.10000-28.sgn.iso failed
    An unknown error occurred while accessing the upgrade file.
    A system reboot is required when the upgrade process completes or is canceled. .
    I have previously used this ISO for other clients without an issue and have checked the MD5 is correct
    Has anyone else experienced this issue?
    Thanks,
    Richard

    We have got this resolved, after raising a case with TAC they identified that we were hitting the following bug;
    CSCub53409
    The detail on the bug is very limited but in our case it was caused by an issue with the numbering plan, GBNB 1.1(21) - we upgraded to the latest version 1.1(29) and the upgrade has now completed.

Maybe you are looking for

  • WSRP Portlets - HTML elements renamed

    Moved from Webcenter Spaces. All, I have a JSR-168 portlet that I WSRP-ed using the wsrp-predeploy tool. I have this registered in Weblogic as a WSRP producer and added to Webcenter Spaces. What I notice is that when rendered on Spaces, the HTML elem

  • Create IDOC for alternative unit of measure

    Hello, I need to send the alternative UoM via an IDOC. My problem is that i do not know how to manually send the UNIMA2 IDOC. Like when i send MATMAS, i use BD10. Is there any program or transaction for sending UNIMA2? Thank you

  • Editing Checkbox in 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'

    Hai all, I am able to get the checkbox in the Output ALV LIST but the edit option is not working,i am unable to edit. fcat-edit = 'X' . This is working only for Grid DISPLAY and not 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' . Is it possible to edit the check

  • Maximum Time out  runtime error

    Hi All, The following query is giving the error message: SELECT mkpfbudat msegbwart msegwerks msegmatnr mseg~shkzg          msegmenge msegmeins msegdmbtr maraextwg makt~maktx     INTO TABLE i_src     FROM mkpf       JOIN mseg ON mkpfmblnr = msegmblnr

  • Upgrading PHP of identity management 10g release3 10.1.4

    identity management of 10g release3 10.1.4 is using Apache-PHP4.3. it is used for apex and my own php scripts. is there any simple way to upgrade PHP version? i dont want to upgrade identity management, i want to upgrade php, and i want to use apex.