DBUA Upgrade from 11.2.0.1 to 11.2.0.3

I started upgrading from 11.2.0.1 to 11.2.0.3. While trying to upgrade I got an error stating the wallet wasn't open. Does anyone know if I open the wallet, if I can start DBUA again and run the upgrade?
Thanks!

1
Database closed.
Database dismounted.
ORACLE instance shut down.
select count(*) from v$instance
ERROR at line 1:
ORA-01034: ORACLE not available
Process ID: 0
select count(*) from v$instance
ERROR at line 1:
ORA-01034: ORACLE not available
Process ID: 0
ORACLE instance started.
Total System Global Area 7.8033E+10 bytes
Fixed Size 2236648 bytes
Variable Size 6442454808 bytes
Database Buffers 7.1404E+10 bytes
Redo Buffers 184696832 bytes
Database mounted.
ORA-01092: ORACLE instance terminated. Disconnection forced
ORA-00604: error occurred at recursive SQL level 1
ORA-28365: wallet is not open
Process ID: 30877
~

Similar Messages

  • Slow table creation after upgrade from 10.2.0.3 to 11.2.0.1 using DBUA

    I've recently completed a database upgrade from 10.2.0.3 to 11.2.0.1 using the DBUA.
    I've since encountered a slowdown when running a script which drops and recreates a series of ~250 tables. The script normally runs in around 19 seconds. After the upgrade, the script requires ~2 minutes to run.
    By chance has anyone encountered something similar?
    The problem may be related to the behavior of an "after CREATE on schema" trigger which grants select privileges to a role through the use of a dbms_job call; between 10g and the database that was upgraded from 10G to 11g. Currently researching this angle.
    I will be using the following table creation DDL for this abbreviated test case:
    create table ALLIANCE  (
       ALLIANCEID           NUMBER(10)                      not null,
       NAME                 VARCHAR2(40)                    not null,
       CREATION_DATE        DATE,
       constraint PK_ALLIANCE primary key (ALLIANCEID)
               using index
           tablespace LIVE_INDEX
    tablespace LIVE_DATA;When calling the above DDL, an "after CREATE on schema" trigger is fired which schedules a job to immediately run to grant select privilege to a role for the table which was just created:
    create or replace
    trigger select_grant
    after CREATE on schema
    declare
        l_str varchar2(255);
        l_job number;
    begin
        if ( ora_dict_obj_type = 'TABLE' ) then
            l_str := 'execute immediate "grant select on ' ||
                                         ora_dict_obj_name ||
                                        ' to select_role";';
            dbms_job.submit( l_job, replace(l_str,'"','''') );
        end if;
    end;
    {code}
    Below I've included data on two separate test runs.  The first is on the upgraded database and includes optimizer parameters and an abbreviated TKPROF.  I've also, included the offending sys generate SQL which is not issued when the same test is run on a 10g environment that has been set up with a similar test case.  The 10g test run's TKPROF is also included below.
    The version of the database is 11.2.0.1.
    These are the parameters relevant to the optimizer for the test run on the upgraded 11g SID:
    {code}
    SQL> show parameter optimizer
    NAME                                 TYPE        VALUE
    optimizer_capture_sql_plan_baselines boolean     FALSE
    optimizer_dynamic_sampling           integer     2
    optimizer_features_enable            string      11.2.0.1
    optimizer_index_caching              integer     0
    optimizer_index_cost_adj             integer     100
    optimizer_mode                       string      ALL_ROWS
    optimizer_secure_view_merging        boolean     TRUE
    optimizer_use_invisible_indexes      boolean     FALSE
    optimizer_use_pending_statistics     boolean     FALSE
    optimizer_use_sql_plan_baselines     boolean     TRUE
    SQL> show parameter db_file_multi
    NAME                                 TYPE        VALUE
    db_file_multiblock_read_count        integer     8
    SQL> show parameter db_block_size
    NAME                                 TYPE        VALUE
    db_block_size                        integer     8192
    SQL> show parameter cursor_sharing
    NAME                                 TYPE        VALUE
    cursor_sharing                       string      EXACT
    SQL> column sname format a20
    SQL> column pname format a20
    SQL> column pval2 format a20
    SQL> select sname, pname, pval1, pval2 from sys.aux_stats$;
    SNAME                PNAME                     PVAL1 PVAL2
    SYSSTATS_INFO        STATUS                          COMPLETED
    SYSSTATS_INFO        DSTART                          03-11-2010 16:33
    SYSSTATS_INFO        DSTOP                           03-11-2010 17:03
    SYSSTATS_INFO        FLAGS                         0
    SYSSTATS_MAIN        CPUSPEEDNW           713.978495
    SYSSTATS_MAIN        IOSEEKTIM                    10
    SYSSTATS_MAIN        IOTFRSPEED                 4096
    SYSSTATS_MAIN        SREADTIM               1565.746
    SYSSTATS_MAIN        MREADTIM
    SYSSTATS_MAIN        CPUSPEED                   2310
    SYSSTATS_MAIN        MBRC
    SYSSTATS_MAIN        MAXTHR
    SYSSTATS_MAIN        SLAVETHR
    13 rows selected.
    {code}
    Output from TKPROF on the 11g SID:
    {code}
    create table ALLIANCE  (
       ALLIANCEID           NUMBER(10)                      not null,
       NAME                 VARCHAR2(40)                    not null,
       CREATION_DATE        DATE,
       constraint PK_ALLIANCE primary key (ALLIANCEID)
               using index
           tablespace LIVE_INDEX
    tablespace LIVE_DATA
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          4           0
    Fetch        0      0.00       0.00          0          0          0           0
    total        2      0.00       0.00          0          0          4           0
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 324
    {code}
    ... large section omitted ...
    Here is the performance hit portion of the TKPROF on the 11g SID:
    {code}
    SQL ID: fsbqktj5vw6n9
    Plan Hash: 1443566277
    select next_run_date, obj#, run_job, sch_job
    from
    (select decode(bitand(a.flags, 16384), 0, a.next_run_date,
      a.last_enabled_time) next_run_date,       a.obj# obj#,
      decode(bitand(a.flags, 16384), 0, 0, 1) run_job, a.sch_job  sch_job  from
      (select p.obj# obj#, p.flags flags, p.next_run_date next_run_date,
      p.job_status job_status, p.class_oid class_oid,      p.last_enabled_time
      last_enabled_time, p.instance_id instance_id,      1 sch_job   from
      sys.scheduler$_job p   where bitand(p.job_status, 3) = 1    and
      ((bitand(p.flags, 134217728 + 268435456) = 0) or
      (bitand(p.job_status, 1024) <> 0))    and bitand(p.flags, 4096) = 0    and
      p.instance_id is NULL    and (p.class_oid is null      or (p.class_oid is
      not null      and p.class_oid in (select b.obj# from sys.scheduler$_class b
                               where b.affinity is null)))   UNION ALL   select
      q.obj#, q.flags, q.next_run_date, q.job_status, q.class_oid,
      q.last_enabled_time, q.instance_id, 1   from sys.scheduler$_lightweight_job
      q   where bitand(q.job_status, 3) = 1    and ((bitand(q.flags, 134217728 +
      268435456) = 0) or         (bitand(q.job_status, 1024) <> 0))    and
      bitand(q.flags, 4096) = 0    and q.instance_id is NULL    and (q.class_oid
      is null      or (q.class_oid is not null      and q.class_oid in (select
      c.obj# from sys.scheduler$_class c                          where
      c.affinity is null)))   UNION ALL   select j.job, 0,
      from_tz(cast(j.next_date as timestamp),      to_char(systimestamp,'TZH:TZM')
      ), 1, NULL,      from_tz(cast(j.next_date as timestamp),
      to_char(systimestamp,'TZH:TZM')),     NULL, 0   from sys.job$ j   where
      (j.field1 is null or j.field1 = 0)    and j.this_date is null) a   order by
      1)   where rownum = 1
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        1      0.47       0.47          0       9384          0           1
    total        3      0.48       0.48          0       9384          0           1
    Misses in library cache during parse: 1
    Optimizer mode: CHOOSE
    Parsing user id: SYS   (recursive depth: 1)
    Rows     Row Source Operation
          1  COUNT STOPKEY (cr=9384 pr=0 pw=0 time=0 us)
          1   VIEW  (cr=9384 pr=0 pw=0 time=0 us cost=5344 size=6615380 card=194570)
          1    SORT ORDER BY STOPKEY (cr=9384 pr=0 pw=0 time=0 us cost=5344 size=11479630 card=194570)
    194790     VIEW  (cr=9384 pr=0 pw=0 time=537269 us cost=2563 size=11479630 card=194570)
    194790      UNION-ALL  (cr=9384 pr=0 pw=0 time=439235 us)
        231       FILTER  (cr=68 pr=0 pw=0 time=920 us)
        231        TABLE ACCESS FULL SCHEDULER$_JOB (cr=66 pr=0 pw=0 time=690 us cost=19 size=13157 card=223)
          1        TABLE ACCESS BY INDEX ROWID SCHEDULER$_CLASS (cr=2 pr=0 pw=0 time=0 us cost=1 size=40 card=1)
          1         INDEX UNIQUE SCAN SCHEDULER$_CLASS_PK (cr=1 pr=0 pw=0 time=0 us cost=0 size=0 card=1)(object id 5056)
          0       FILTER  (cr=3 pr=0 pw=0 time=0 us)
          0        TABLE ACCESS FULL SCHEDULER$_LIGHTWEIGHT_JOB (cr=3 pr=0 pw=0 time=0 us cost=2 size=95 card=1)
          0        TABLE ACCESS BY INDEX ROWID SCHEDULER$_CLASS (cr=0 pr=0 pw=0 time=0 us cost=1 size=40 card=1)
          0         INDEX UNIQUE SCAN SCHEDULER$_CLASS_PK (cr=0 pr=0 pw=0 time=0 us cost=0 size=0 card=1)(object id 5056)
    194559       TABLE ACCESS FULL JOB$ (cr=9313 pr=0 pw=0 time=167294 us cost=2542 size=2529254 card=194558)
    {code}
    and the totals at the end of the TKPROF on the 11g SID:
    {code}
    OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      2      0.00       0.00          0          0          4           0
    Fetch        0      0.00       0.00          0          0          0           0
    total        3      0.00       0.00          0          0          4           0
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse       70      0.00       0.00          0          0          0           0
    Execute     85      0.01       0.01          0         62        208          37
    Fetch       49      0.48       0.49          0       9490          0          35
    total      204      0.51       0.51          0       9552        208          72
    Misses in library cache during parse: 5
    Misses in library cache during execute: 3
       35  user  SQL statements in session.
       53  internal SQL statements in session.
       88  SQL statements in session.
    Trace file: 11gSID_ora_17721.trc
    Trace file compatibility: 11.1.0.7
    Sort options: default
           1  session in tracefile.
          35  user  SQL statements in trace file.
          53  internal SQL statements in trace file.
          88  SQL statements in trace file.
          51  unique SQL statements in trace file.
        1590  lines in trace file.
          18  elapsed seconds in trace file.
    {code}
    The version of the database is 10.2.0.3.0.
    These are the parameters relevant to the optimizer for the test run on the 10g SID:
    {code}
    SQL> show parameter optimizer
    NAME                                 TYPE        VALUE
    optimizer_dynamic_sampling           integer     2
    optimizer_features_enable            string      10.2.0.3
    optimizer_index_caching              integer     0
    optimizer_index_cost_adj             integer     100
    optimizer_mode                       string      ALL_ROWS
    optimizer_secure_view_merging        boolean     TRUE
    SQL> show parameter db_file_multi
    NAME                                 TYPE        VALUE
    db_file_multiblock_read_count        integer     8
    SQL> show parameter db_block_size
    NAME                                 TYPE        VALUE
    db_block_size                        integer     8192
    SQL> show parameter cursor_sharing
    NAME                                 TYPE        VALUE
    cursor_sharing                       string      EXACT
    SQL> column sname format a20
    SQL> column pname format a20
    SQL> column pval2 format a20
    SQL> select sname, pname, pval1, pval2 from sys.aux_stats$;
    SNAME                PNAME                     PVAL1 PVAL2
    SYSSTATS_INFO        STATUS                          COMPLETED
    SYSSTATS_INFO        DSTART                          09-24-2007 11:09
    SYSSTATS_INFO        DSTOP                           09-24-2007 11:09
    SYSSTATS_INFO        FLAGS                         1
    SYSSTATS_MAIN        CPUSPEEDNW           2110.16949
    SYSSTATS_MAIN        IOSEEKTIM                    10
    SYSSTATS_MAIN        IOTFRSPEED                 4096
    SYSSTATS_MAIN        SREADTIM
    SYSSTATS_MAIN        MREADTIM
    SYSSTATS_MAIN        CPUSPEED
    SYSSTATS_MAIN        MBRC
    SYSSTATS_MAIN        MAXTHR
    SYSSTATS_MAIN        SLAVETHR
    13 rows selected.
    {code}
    Now for the TKPROF of a mirrored test environment running on a 10G SID:
    {code}
    create table ALLIANCE  (
       ALLIANCEID           NUMBER(10)                      not null,
       NAME                 VARCHAR2(40)                    not null,
       CREATION_DATE        DATE,
       constraint PK_ALLIANCE primary key (ALLIANCEID)
               using index
           tablespace LIVE_INDEX
    tablespace LIVE_DATA
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.01          0          2         16           0
    Fetch        0      0.00       0.00          0          0          0           0
    total        2      0.01       0.01          0          2         16           0
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 113
    {code}
    ... large section omitted ...
    Totals for the TKPROF on the 10g SID:
    {code}
    OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.02          0          0          0           0
    Execute      1      0.00       0.00          0          2         16           0
    Fetch        0      0.00       0.00          0          0          0           0
    total        2      0.00       0.02          0          2         16           0
    Misses in library cache during parse: 1
    OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse       65      0.01       0.01          0          1         32           0
    Execute     84      0.04       0.09         20         90        272          35
    Fetch       88      0.00       0.10         30        281          0          64
    total      237      0.07       0.21         50        372        304          99
    Misses in library cache during parse: 38
    Misses in library cache during execute: 32
       10  user  SQL statements in session.
       76  internal SQL statements in session.
       86  SQL statements in session.
    Trace file: 10gSID_ora_32003.trc
    Trace file compatibility: 10.01.00
    Sort options: default
           1  session in tracefile.
          10  user  SQL statements in trace file.
          76  internal SQL statements in trace file.
          86  SQL statements in trace file.
          43  unique SQL statements in trace file.
         949  lines in trace file.
           0  elapsed seconds in trace file.
    {code}
    Edited by: user8598842 on Mar 11, 2010 5:08 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              

    So while this certainly isn't the most elegant of solutions, and most assuredly isn't in the realm of supported by Oracle...
    I've used the DBMS_IJOB.DROP_USER_JOBS('username'); package to remove the 194558 orphaned job entries from the job$ table. Don't ask, I've no clue how they all got there; but I've prepared some evil looks to unleash upon certain developers tomorrow morning.
    Not being able to reorganize the JOB$ table to free the now wasted ~67MB of space I've opted to create a new index on the JOB$ table to sidestep the full table scan.
    CREATE INDEX SYS.JOB_F1_THIS_NEXT ON SYS.JOB$ (FIELD1, THIS_DATE, NEXT_DATE) TABLESPACE SYSTEM;The next option would be to try to find a way to grant the select privilege to the role without using the aforementioned "after CREATE on schema" trigger and dbms_job call. This method was adopted to cover situations in which a developer manually added a table directly to the database rather than using the provided scripts to recreate their test environment.
    I assume that the following quote from the 11gR2 documentation is mistaken, and there is no such beast as "create or replace table" in 11g:
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10592/statements_9003.htm#i2061306
    "Dropping a table invalidates dependent objects and removes object privileges on the table. If you want to re-create the table, then you must regrant object privileges on the table, re-create the indexes, integrity constraints, and triggers for the table, and respecify its storage parameters. Truncating and replacing have none of these effects. Therefore, removing rows with the TRUNCATE statement or replacing the table with a *CREATE OR REPLACE TABLE* statement can be more efficient than dropping and re-creating a table."

  • Dbua error wile upgrade from 9.5.0.5 to 10.2.0.4

    I am upgrading from 9.2.0.5 to 10.2.0.4
    i earlier tried to upgrade from 9.2.0.5 to 10.2.0.3, however it failed because of not applying patch-
    i then cloned the instance and installed 10g software,companion products,10.2.0.4. patchset. however when u run dbua it gives a weird error->
    ora 1507---database not mounted
    dbua thinks this is rerun and is trying to connect to the database with orcle home"/u08/fadevdb/10g". If you beleive this is not a rerun, remove below file and rerun DBUA again
    /u08/fadevdb/10g/cfgtoollogs/dbua/logs/Welcome_FADEV.tct"
    However /u08/fadevdb/10g/cfgtoollogs/dbua/logs/Welcome_FADEV.txt" files does not exist
    I checked the alert log
    Additional information: 4087
    Fri Dec 19 23:00:24 2008
    ORA-205 signalled during: ALTER DATABASE MOUNT...
    Fri Dec 19 23:43:40 2008
    Beginning log switch checkpoint up to RBA http://0x2e.2.10, SCN: 0x0000.88b18ab0
    Thread 1 advanced to log sequence 46
    Current log# 1 seq# 46 mem# 0: /u04/fadevdata/log01a.dbf
    Current log# 1 seq# 46 mem# 1: /u06/fadevdata/log1b.dbf
    Sat Dec 20 00:04:22 2008
    Completed checkpoint up to RBA http://0x2e.2.10, SCN: 0x0000.88b18ab0
    ^C$ tail -100 alert_FADEV.log
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Shared memory segment for instance monitoring created
    Picked latch-free SCN scheme 3
    Using LOG_ARCHIVE_DEST_1 parameter default value as /u08/fadevdb/10g/dbs/arch
    Autotune of undo retention is turned on.
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.4.0.
    System parameters with non-default values:
    tracefiles_public = TRUE
    processes = 200
    sessions = 400
    timed_statistics = TRUE
    shared_pool_size = 301989888
    large_pool_size = 8388608
    java_pool_size = 54525952
    streams_pool_size = 50331648
    shared_pool_reserved_size= 30000000
    sharedpool_reserved_min_alloc= 4100
    nls_language = american
    nls_territory = america
    nls_sort = binary
    nls_date_format = DD-MON-RR
    nls_numeric_characters = .,
    nls_comp = binary
    nls_length_semantics = BYTE
    control_files = /u04/fadevdata/cntrl01.dbf, /u06/fadevdata/cntrl02.dbf, /u03/fadevdata/cntrl03.dbf
    db_block_checksum = TRUE
    db_block_size = 8192
    db_cache_size = 163577856
    compatible = 9.2.0
    log_buffer = 14282752
    log_checkpoint_interval = 100000
    log_checkpoint_timeout = 1200
    db_files = 512
    db_file_multiblock_read_count= 8
    log_checkpoints_to_alert = TRUE
    dml_locks = 10000
    undo_management = AUTO
    undo_tablespace = APPS_UNDOTS1
    undo_retention = 1800
    db_block_checking = FALSE
    O7_DICTIONARY_ACCESSIBILITY= FALSE
    session_cached_cursors = 200
    utl_file_dir = /usr/tmp, /usr/tmp, /u02/fadevdb/9.2.0/appsutil/outbound/FADEV_fadevdb, /usr/tmp
    job_queue_processes = 2
    systemtrig_enabled = TRUE
    cursor_sharing = EXACT
    parallel_min_servers = 0
    parallel_max_servers = 8
    background_dump_dest = /u02/fadevdb/9.2.0/admin/FADEV_fadevdb/bdump
    user_dump_dest = /u02/fadevdb/9.2.0/admin/FADEV_fadevdb/udump
    max_dump_file_size = 20480
    core_dump_dest = /u02/fadevdb/9.2.0/admin/FADEV_fadevdb/cdump
    session_max_open_files = 20
    optimizer_features_enable= 9.2.0
    db_name = FADEV
    open_cursors = 600
    ifile = /u02/fadevdb/9.2.0/dbs/FADEV_fadevdb_ifile.ora
    sortelimination_cost_ratio= 5
    btree_bitmap_plans = FALSE
    fastfull_scan_enabled = FALSE
    query_rewrite_enabled = true
    indexjoin_enabled = FALSE
    sqlexecprogression_cost= 2147483647
    likewith_bind_as_equality= TRUE
    pga_aggregate_target = 1073741824
    workarea_size_policy = AUTO
    aq_tm_processes = 1
    olap_page_pool_size = 4194304
    PSP0 started with pid=3, OS id=28588
    MMAN started with pid=4, OS id=28590
    PMON started with pid=2, OS id=28586
    DBW0 started with pid=5, OS id=28592
    LGWR started with pid=6, OS id=28594
    CKPT started with pid=7, OS id=28596
    SMON started with pid=8, OS id=28598
    RECO started with pid=9, OS id=28600
    CJQ0 started with pid=10, OS id=28602
    MMON started with pid=11, OS id=28604
    MMNL started with pid=12, OS id=28606
    Fri Dec 19 23:00:21 2008
    ALTER DATABASE MOUNT
    Fri Dec 19 23:00:21 2008
    ORA-00202: control file: '/u04/fadevdata/cntrl01.dbf'
    ORA-27086: unable to lock file - already in use
    SVR4 Error: 11: Resource temporarily unavailable
    Additional information: 8
    Additional information: 4087
    Fri Dec 19 23:00:24 2008
    ORA-205 signalled during: ALTER DATABASE MOUNT...
    Fri Dec 19 23:43:40 2008
    Beginning log switch checkpoint up to RBA http://0x2e.2.10, SCN: 0x0000.88b18ab0
    Thread 1 advanced to log sequence 46
    Current log# 1 seq# 46 mem# 0: /u04/fadevdata/log01a.dbf
    Current log# 1 seq# 46 mem# 1: /u06/fadevdata/log1b.dbf
    Sat Dec 20 00:04:22 2008
    Completed checkpoint up to RBA http://0x2e.2.10, SCN: 0x0000.88b18ab0
    I then found that ctr101.dbf had permissions of "rw-r-r". I gave 777 permission.aborted dbua and again started dbua. However it still gives the same problem.
    If you note the alert log...then 10g is trying to start while 9i is already running.i then shutdown and started 9i again and then started dbua...however it again gives the same error.
    How do i resolve it?

    Hi,
    I would quickly identify some of the errors that I'm seeing in the log:
    ORA-01034: ORACLE not available
    This is probably occuring due to invalid entries in /etc/oratab and /var/opt/oracle/oratab, where ORACLE_HOME and ORACLE_SID are not properly defined. This could also be due to invalid entries within the listener file. Further to this, you may try to read through the following Metalink Note to resolve this issue:
    https://metalink.oracle.com/metalink/plsql/f?p=130:14:2840960078839325001::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,302510.1,1,1,1,helvetica
    A similar issue is being discussed here ORA-27086: unable to lock file over NFS -- but it's NOT Netapp!
    SVR4 Error: 11: Resource temporarily unavailable
    This is probably over-writing some already existing/production control files. Try pointing CONTROL_FILES parameter within init.ora to point to a new location. Once this is done you must now change the location of your datafiles, and finally change the location of your redo log files.
    ORA-205 signalled during: ALTER DATABASE MOUNT
    This again is falling in succession to the errors being popped up against the control files. Try to start the database without mounting it and check for the control files in v$parameter2.
    Lastly, you may also want to check if the database is starting from the spfile instead of the pfile. If it is, alter it to start from the pfile.
    I hope this helps.
    Regards,
    Naveed.

  • Oracle upgrade from 10.1.0.4 to 10.2.0.3

    Hi,
    OS:RHEL3
    We are in process of moving database to other machine (same name, same config) and upgrading db from 10.1.0.4 to 10.2.0.3. We forgot to copy home.
    Can we start db from 10.2.0.3 and invoke dbua for upgrade?
    or do i need to install 10.1.0.4 again and startup db and invoke dbua.
    I started db in upgrade mode from 10.2.0.3 binaries and tried invoking dbua. It got "table does not exists error".
    If i start db normally under 10.2.0.3 home and try upgrade with dbua will this work?
    Thanks,
    Anil

    Hi,
    DBUA upgrades the old database to new database by getting information from existing old database. These informations are stored in oratab file. Moreover oracle need the old database to start while performing upgradation. Starting of old database is not possible till you have its oracle home installed. So you are required to have older version oracle home installed before you carry out installation.
    The older version can be new installation or old installation copy.
    Regards
    Anurag

  • Issue with shared pool size while upgrading from 10.2.0.4 to 11.2.0.2

    Hi Team,
    Below is my issue
    I am running dbua as part of the upgrade from 10.2.0.4 to 11.2.0.2. Its almost 59% and nothing is happening on the instance. The logs directory contian the below
    -bash-3.00$ ls -ltr
    total 280
    -rw-r----- 1 ora8014 ems8014 3662 Oct 16 08:58 upgrade.xml
    -rw-r----- 1 ora8014 ems8014 1127 Oct 16 09:00 Upgrade_Directive.log
    -rw-r----- 1 ora8014 ems8014 7452 Oct 16 09:00 mapfile.txt
    -rw-r----- 1 ora8014 ems8014 297 Oct 16 09:04 SpaceUsage.txt
    -rw-r----- 1 ora8014 ems8014 9803 Oct 16 09:04 PreUpgradeResults.html
    -rw-r----- 1 ora8014 ems8014 1572 Oct 16 09:06 PreUpgrade.log
    -rw-r----- 1 ora8014 ems8014 2850 Oct 16 09:06 Oracle_Text.log
    -rw-r----- 1 ora8014 ems8014 157816 Oct 16 09:09 trace.log
    -rw-r----- 1 ora8014 ems8014 71368 Oct 16 09:09 sqls.log
    -rw-r----- 1 ora8014 ems8014 339 Oct 16 09:09 Oracle_Server.log
    -bash-3.00$ date
    Sat Oct 16 22:54:27 PDT 2010
    -bash-3.00$ pwd
    /slot/ems8014/oracle/app/ora8014/cfgtoollogs/dbua/ebs11i10/upgrade1
    It seems its almost more 12 hrs nothing has happened. When I check the oracle_server.log it has the error
    -bash-3.00$ tail Oracle_Server.log
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    select count(*) from v$instance
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    ORA-00371: not enough shared pool memory, should be atleast 424463564 bytes
    Hence I started the Db in 10g oracle home to check and below is the details.
    SQL> select * from V$SGAINFO;
    NAME BYTES RES
    Fixed SGA Size 1267908 No
    Redo Buffers 11313152 No
    Buffer Cache Size 614400000 Yes
    Shared Pool Size 301989888 Yes
    Large Pool Size 8388608 Yes
    Java Pool Size 67108864 Yes
    Streams Pool Size 50331648 Yes
    Granule Size 4194304 No
    Maximum SGA Size 1056964608 No
    Startup overhead in Shared Pool 188743680 No
    Free SGA Memory Available 0
    11 rows selected.
    I tried to increase the space of shared pool as below
    SQL> ALTER SYSTEM SET shared_pool_size ='301M' SCOPE=MEMORY SID='ebs11i10';
    ALTER SYSTEM SET shared_pool_size ='301M' SCOPE=MEMORY SID='ebs11i10'
    ERROR at line 1:
    ORA-02097: parameter cannot be modified because specified value is invalid
    ORA-04033: Insufficient memory to grow pool
    I am stuck and cant proceed further. Could you please help me on this issue so that I overcome this and proceed further.
    Thanks
    Shyam.

    These are the logs. Could you please let me know which one you want.
    -bash-3.00$ pwd
    /slot/ems8014/oracle/app/ora8014/cfgtoollogs/dbua/ebs11i10/upgrade1
    -bash-3.00$ ls -ltr
    total 280
    -rw-r----- 1 ora8014 ems8014 3662 Oct 16 08:58 upgrade.xml
    -rw-r----- 1 ora8014 ems8014 1127 Oct 16 09:00 Upgrade_Directive.log
    -rw-r----- 1 ora8014 ems8014 7452 Oct 16 09:00 mapfile.txt
    -rw-r----- 1 ora8014 ems8014 297 Oct 16 09:04 SpaceUsage.txt
    -rw-r----- 1 ora8014 ems8014 9803 Oct 16 09:04 PreUpgradeResults.html
    -rw-r----- 1 ora8014 ems8014 1572 Oct 16 09:06 PreUpgrade.log
    -rw-r----- 1 ora8014 ems8014 2850 Oct 16 09:06 Oracle_Text.log
    -rw-r----- 1 ora8014 ems8014 157816 Oct 16 09:09 trace.log
    -rw-r----- 1 ora8014 ems8014 71368 Oct 16 09:09 sqls.log
    -rw-r----- 1 ora8014 ems8014 339 Oct 16 09:09 Oracle_Server.log

  • OEM Installation Failed when Upgrading from 10.2.0.4 to 11.1.0.7

    I was upgrading a single instance from 10.2.0.4 to 11.1.07 on Unix.
    The OEM has never been installed before.
    I tried to install the OEM during the DBUA upgrade. And it failed. Parts of the log file look like this.
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.EMConfig addEMCALogFile
    CONFIG: ORACLE_BASE :/opt/oracle
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /opt/oracle/cfgtoollogs/dbua/citv/upgrade1/emConfig.log.
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'CHECK_CONFIG' set to true
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: citv, oracleHome: /opt/oracle/product/11.1, and user:
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: citv, oracleHome: /opt/oracle/product/11.1, and user: DBSNMP
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: citv, oracleHome: /opt/oracle/product/11.1, and user:
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: citv, oracleHome: /opt/oracle/product/11.1, and user:
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: citv
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_DOMAIN value: world
    Jun 22, 2009 6:58:01 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: citv
    CONFIG: Searching all DBConsole instances for used ports under ORACLE_HOME /opt/oracle/product/10.2
    Jun 22, 2009 6:58:04 PM oracle.sysman.emcp.util.PortManager findUsedPortsFromXML
    CONFIG: Could not find or correctly parse file /opt/oracle/product/10.2/oc4j/j2ee/OC4J_DBConsole/config/
    jms.xml in searching for tag jms-server with attribute port
    java.io.FileNotFoundException: /opt/oracle/product/10.2/oc4j/j2ee/OC4J_DBConsole/config/jms.xml (No such
    file or directory)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(FileInputStream.java:106)
    at java.io.FileInputStream.<init>(FileInputStream.java:66)
    at java.io.FileReader.<init>(FileReader.java:41)
    at oracle.sysman.emcp.util.PortManager.findUsedPortsFromXML(PortManager.java:295)
    at oracle.sysman.emcp.util.PortManager.markAllUsedPorts(PortManager.java:1296)
    at oracle.sysman.emcp.util.PortManager.getFreePorts(PortManager.java:591)
    at oracle.sysman.emcp.EMDBPreConfig.getFreePorts(EMDBPreConfig.java:2582)
    at oracle.sysman.emcp.EMDBPreConfig.checkPorts(EMDBPreConfig.java:2513)
    at oracle.sysman.emcp.EMDBPreConfig.performConfiguration(EMDBPreConfig.java:750)
    at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:257)
    at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:183)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:221)
    at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:460)
    at oracle.sysman.assistants.util.em.EMConfigStep.executeImpl(EMConfigStep.java:139)
    at oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
    at oracle.sysman.assistants.util.step.BasicStep.callStep(BasicStep.java:251)
    at oracle.sysman.assistants.dbma.backend.EMConfigStep.executeStepImpl(EMConfigStep.java:111)
    at oracle.sysman.assistants.dbma.backend.SummarizableStep.executeImpl(SummarizableStep.java:176)
    at oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
    at oracle.sysman.assistants.util.step.Step.execute(Step.java:140)
    at oracle.sysman.assistants.util.step.StepContext$ModeRunner.run(StepContext.java:2505)
    at java.lang.Thread.run(Thread.java:595)
    Jun 22, 2009 6:58:04 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking JMS port: null from /opt/oracle/product/10.2/oc4j/j2ee/OC4J_DBConsole
    Jun 22, 2009 6:58:04 PM oracle.sysman.emcp.util.PortManager findUsedPortsFromXML
    CONFIG: Could not find or correctly parse file /opt/oracle/product/10.2/oc4j/j2ee/OC4J_DBConsole/config/
    rmi.xml in searching for tag rmi-server with attribute port
    java.io.FileNotFoundException: /opt/oracle/product/10.2/oc4j/j2ee/OC4J_DBConsole/config/rmi.xml (No such
    file or directory)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(FileInputStream.java:106)
    at java.io.FileInputStream.<init>(FileInputStream.java:66)
    at java.io.FileReader.<init>(FileReader.java:41)
    at oracle.sysman.emcp.util.PortManager.findUsedPortsFromXML(PortManager.java:295)
    at oracle.sysman.emcp.util.PortManager.markAllUsedPorts(PortManager.java:1300)
    at oracle.sysman.emcp.util.PortManager.getFreePorts(PortManager.java:591)
    at oracle.sysman.emcp.EMDBPreConfig.getFreePorts(EMDBPreConfig.java:2582)
    Connecting to database citv in home /opt/oracle/product/11.1 with user "" role "SYSDBA".
    connected to database.
    sql to execute declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_
    user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); sele
    ct account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user
    ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' accou
    nt unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_cr
    eds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immed
    iate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end;
    noOfParams to bind: 1.
    Jun 22, 2009 6:58:17 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Couldn't execute statement: ORA-28003: password verification for the specified password failed
    ORA-20003: Password should contain at least one \
    digit, one character and one punctuation
    ORA-06512: at line 1 (DBD ERROR: OCIStmtExecute) at /opt/oracle/product/11.1/sysman/admin/scripts/emca/e
    mcaDbUtil.pl line 108, <STDIN> line 2.
    Jun 22, 2009 6:58:17 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Error executing /opt/oracle/product/11.1/sysman/admin/scripts/emca/emcaDbUtil /opt/oracle/produc
    t/11.1/perl/lib:/opt/oracle/product/11.1/perl/lib/site_perl:/opt/oracle/product/11.1/sysman/admin/script
    s:/opt/oracle/product/11.1/bin: /opt/oracle/product/11.1/perl/bin/perl /opt/oracle/product/11.1/sysman/a
    dmin/scripts/emca/emcaDbUtil.pl /opt/oracle/product/11.1 citv SYS SYSDBA declare repos_pwd varchar2(30);
    view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd
    := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status fr
    om sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' TH
    EN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status li
    ke '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_V
    IEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identifie
    d by ' || view_user_pwd || ''; END IF; end; 1 SYSMAN_PWD
    Jun 22, 2009 6:58:17 PM oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
    CONFIG: Failed to unlock mgmt_view account
    Jun 22, 2009 6:58:17 PM oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Failed to unlock all EM-related accounts
    Jun 22, 2009 6:58:17 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Failed to unlock all EM-related accounts
    Refer to the log file at /opt/oracle/cfgtoollogs/dbua/citv/upgrade1/emConfig.log for more details.
    Jun 22, 2009 6:58:17 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Failed to unlock all EM-related accounts
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:335)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:147)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:222)
    at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:460)
    at oracle.sysman.assistants.util.em.EMConfigStep.executeImpl(EMConfigStep.java:139)
    at oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
    at oracle.sysman.assistants.util.step.BasicStep.callStep(BasicStep.java:251)
    at oracle.sysman.assistants.dbma.backend.EMConfigStep.executeStepImpl(EMConfigStep.java:111)
    at oracle.sysman.assistants.dbma.backend.SummarizableStep.executeImpl(SummarizableStep.java:176)
    at oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
    at oracle.sysman.assistants.util.step.Step.execute(Step.java:140)
    at oracle.sysman.assistants.util.step.StepContext$ModeRunner.run(StepContext.java:2505)
    at java.lang.Thread.run(Thread.java:595)
    Is it possible to reinstall in some way?
    Thanks very much in advance.

    The error messages in the log file.
    Jun 24, 2009 8:59:06 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Starting execution: /opt/oracle/product/11.1/sysman/admin/emdrep/bin/RepManager -connect (D
    ESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=callista)(PORT=1521)))(CONNECT_DATA=(SERVICE_
    NAME=citv.world))) -repos_user SYSMAN -action drop -verbose -output_file /opt/oracle/cfgtoollogs/em
    ca/citv/emca_repos_drop_2009_06_24_20_59_06.log
    Jun 24, 2009 8:59:07 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Exit value of 50
    Jun 24, 2009 8:59:07 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Enter SYS user's password :
    Getting temporary tablespace from database...
    Could not connect to SYS/(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=callista)(PORT=152
    1)))(CONNECT_DATA=(SERVICE_NAME=citv.world))): ORA-01031: insufficient privileges (DBD ERROR: OCISe
    ssionBegin)
    Jun 24, 2009 8:59:07 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: stty: : No such device or address
    stty: : No such device or address
    Jun 24, 2009 8:59:07 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /opt/oracle/product/11.1/sysman/admin/emdrep/bin/RepManager -connect (DESC
    RIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=callista)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAM
    E=citv.world))) -repos_user SYSMAN -action drop -verbose -output_file /opt/oracle/cfgtoollogs/emca/
    citv/emca_repos_drop_2009_06_24_20_59_06.log
    Jun 24, 2009 8:59:07 PM oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Error dropping the repository
    Jun 24, 2009 8:59:07 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Refer to the log file at /opt/oracle/cfgtoollogs/emca/citv/emca_repos_drop_<date>.log for mor
    e details.
    Jun 24, 2009 8:59:07 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error dropping the repository
    Refer to the log file at /opt/oracle/cfgtoollogs/emca/citv/emca_2009_06_24_20_58_36.log for more de
    tails.
    Jun 24, 2009 8:59:07 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error dropping the repository
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:208)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:147)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:222)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:535)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1215)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)
    Thanks.

  • Error ORA-03113 when upgrading from 11.2.0.1 to 11.2.0.3

    I keep on getting this error when upgrading from 11.2.0.1 to 11.2.0.3
    [Thread-57] [ 2012-04-20 13:18:28.207 CEST ] [SummarizableStep.genSummary:409]  Generating Summary for:=Pre Upgrade ,status is:=Successful
    [Thread-57] [ 2012-04-20 13:18:28.208 CEST ] [SummarizableStep.genSummary:409]  Generating Summary for:=Oracle Server ,status is:=Failed
    oracle.sysman.assistants.util.step.StepExecutionException: ORA-03113: end-of-file on communication channel
    Upgrade failed due to running the step "Upgrading Oracle Server"
            at oracle.sysman.assistants.dbma.backend.component.SubComponent.executeSubStepImpl(SubComponent.java:738)
            at oracle.sysman.assistants.dbma.backend.component.SubComponent.executeStepImpl(SubComponent.java:585)
            at oracle.sysman.assistants.dbma.backend.component.Component.executeStepImpl(Component.java:317)
            at oracle.sysman.assistants.dbma.backend.SummarizableStep.executeImpl(SummarizableStep.java:183)
            at oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
            at oracle.sysman.assistants.util.step.Step.execute(Step.java:140)
            at oracle.sysman.assistants.util.step.StepContext$ModeRunner.run(StepContext.java:2708)
            at java.lang.Thread.run(Thread.java:637)
    [Thread-57] [ 2012-04-20 13:18:28.209 CEST ] [SummarizableStep.executeImpl:212]  Throwing exception e from SummarizableStep
    [Thread-57] [ 2012-04-20 13:18:28.209 CEST ] [BasicStep.configureSettings:304]  messageHandler being set=oracle.sysman.assistants.util.UIMessageHandler@4805e9f1
    oracle.sysman.assistants.util.step.StepExecutionException: ORA-03113: end-of-file on communication channel
    Upgrade failed due to running the step "Upgrading Oracle Server"
            at oracle.sysman.assistants.dbma.backend.component.SubComponent.executeSubStepImpl(SubComponent.java:738)
            at oracle.sysman.assistants.dbma.backend.component.SubComponent.executeStepImpl(SubComponent.java:585)
            at oracle.sysman.assistants.dbma.backend.component.Component.executeStepImpl(Component.java:317)
            at oracle.sysman.assistants.dbma.backend.SummarizableStep.executeImpl(SummarizableStep.java:183)
            at oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
            at oracle.sysman.assistants.util.step.Step.execute(Step.java:140)
            at oracle.sysman.assistants.util.step.StepContext$ModeRunner.run(StepContext.java:2708)
            at java.lang.Thread.run(Thread.java:637)
    [Thread-57] [ 2012-04-20 13:18:31.000 CEST ] [CompManager.isModeSet:9822]   DB Upgrade Mode Setting := 1
    [Thread-57] [ 2012-04-20 13:18:31.001 CEST ] [CompManager.isModeSet:9823]   Mode := 1 is set
    [Thread-57] [ 2012-04-20 13:18:31.001 CEST ] [SQLEngine.done:2189]  Done called
    [Thread-57] [ 2012-04-20 13:18:31.001 CEST ] [Database.getStepSQLInterface:787]  OH in database: /app/oracle/product/11.2.0.3/db_1Any clues about what could be wrong? I am planning to upgrade with the manual steps if it does not work :(

    Pl post OS details - are you using DBUA to upgrade ? Are there any errors in the database alert log ?
    ORA-00600 [kodpunp-nulltds], ORA-00600 [kokeeiix1], [600] When Upgrading To 11GR2 [ID 1367827.1]     
    HTH
    Srini

  • Upgrade from 11.2..0.1 to 11.2.0.3  (linux )

    hi guys,
    just feeling confuse from all the read up notes on upgrading from 11.2.0.1 - 11.2.0.3.
    The part where it mention that on the target database, one have to:
    1. download and install oracle 11g r2 in a new oracle home. and make sure there are no relinking errors.
    My question here is,
    - does it refer using the 11g r2 installer? and with that i install a new oracle binaries on a new Oracle home.
    My confusion starts here:
    i download the patchset which contain 7 separate files. If i am not wrong , 1of7 and 2of7 can be use as the ' full installation'? I don't really understand the README file.
    If i am wrong about the patchset , then where does these files come to use during the upgrading process?
    2. the part where one invoke DBUA to upgrade the database is from the new oracle home /bin right?
    I don't see anywhere on the upgrading process where these patchset i have downloaded to be use in any part.

    redologger wrote:
    hi guys,
    just feeling confuse from all the read up notes on upgrading from 11.2.0.1 - 11.2.0.3.
    The part where it mention that on the target database, one have to:
    1. download and install oracle 11g r2 in a new oracle home. and make sure there are no relinking errors.
    My question here is,
    - does it refer using the 11g r2 installer? and with that i install a new oracle binaries on a new Oracle home.
    Yes - starting with 11.2.0.2, patchsets are not patchsets, but complete installs - you can install 11.2.0.2 and 11.2.0.3 directly - see this MOS Doc
    Important Changes to Oracle Database Patch Sets Starting With 11.2.0.2 [ID 1189783.1]
    My confusion starts here:
    i download the patchset which contain 7 separate files. If i am not wrong , 1of7 and 2of7 can be use as the ' full installation'? I don't really understand the README file.
    Ideally you should download and unzip all 7 files - but I believe for database only install, the first two zip files are sufficient.
    If i am wrong about the patchset , then where does these files come to use during the upgrading process?
    2. the part where one invoke DBUA to upgrade the database is from the new oracle home /bin right?
    Yes - pl see upgrade documentation - http://docs.oracle.com/cd/E11882_01/server.112/e23633/toc.htm
    I don't see anywhere on the upgrading process where these patchset i have downloaded to be use in any part.Pl also see these MOS Docs
    Complete Checklist to Upgrade the Database to 11gR2 using DBUA [ID 870814.1]
    Things to Consider Before Upgrading to 11.2.0.3 to Avoid Poor Performance or Wrong Results [ID 1392633.1]
    HTH
    Srini

  • 11g Upgrade from 10.2.0.4 in SUSE 10.

    Hi Gurus,
    We have 11g Database upgrade on our EBS 11i environment, database size is around 1.3 TB, i already did test upgrade it was not satisfactory results what client is expecting regarding downtime, i followed manual upgrade as i am very much familier with that, i your views and suggestions to reduce upgrade downtime.
    11g Upgrade from 10.2.0.4 in SUSE 10.

    Hi,
    Is your database is RAC or NON-RAC.
    If you are going for patchset upgrade then you can go for roll upgrade patch.
    as you know, you cannot escape the downtime always. ;-)
    i already did test upgrade it was not satisfactory results what client is expecting regarding downtime, i followed manual upgrade as i am very much familier with thatOracle introduces DBUA with many features, still why you are not going for DBUA?
    You have to test the TEST environment using DBUA ;-)
    If for example For 1.3 TB you are going to consistent backup, still you have down time. then there is no point to think on UPGRADE duration.
    but you can perform pro-actively like.. install the 11g ORACLE_HOME before the downtime. & so on.

  • Upgrading from 8.1.7.4 to 10.2

    We are plannig a upgrade from 8.1.7.4 to 10.2 soon, I would like to heard from some issues or problems that you have had.
    Any comments or recomendations will be welcome too!
    Best regards, Luis

    >>f you to use DBUA then you need first upgrade to Oracle Database 9.0.1 ---> Oracle Database 9.2.
    No,You u don't need to upgarde to 9i,Direct upgradation from 8.1.7.4 to oracle 10g rel 2 is supported..
    so now its your choice to use exp/imp or DBUA tool for upgradation.it also depend on ur database size and downtime.anyway but dbua or manual upgardation by script will takes less time.
    Thanks
    Kuljeet

  • Upgrade from Oracle 8i in Win98 to Oracle 11g in Window Vista

    Hi,
    I have an existing system that runs in Window98 using Oracle 8i as database. We are planning to convert the system from using Oracle 8i to 11g, and this new converted system will be running in Window Vista.
    What I have in mind is doing export and import from Oracle 8i to 11g, but it is quite troublesome. Is there anyway I can upgrade the db to 11g in Window Vista?

    Hi,
    When upgrading from 8i to 11g, you cannot perform direct upgrade anyway.
    If you want to upgrade (not using exp/imp), you can install 9i (9.2.0.4 and up) on the win98 machine, and upgrade the database to 9i.
    Then you can take the database files, copy them (like cold backup) to the vista server, and you will able to upgrade it to 11g.
    Note that you cannot use the DBUA in this scenario, you will have to upgrade it manually.
    Manual upgrade: [http://download.oracle.com/docs/cd/B28359_01/server.111/b28300/upgrade.htm#i1011600]
    Liron Amitzi
    Senior DBA consultant
    [www.dbsnaps.com]
    [www.orbiumsoftware.com]

  • I need Patchset to upgrade from 11.1.0.6 to 11.2.0

    I need patch set to upgrade 11.1.0.6 and which patch set is available to upgrade from 11.1.0.6 to 11.2.0.1 or 11.2.0.2
    Please suggest .
    Thanks
    Edited by: 845470 on Jul 23, 2012 4:00 AM

    As John noted, this is not a patch, but a complete upgrade. At a high level, you will need to
    1. Install 11gR2 into a new ORACLE_HOME
    2. Upgrade from 11.1.0.6 to 11gR2 using the Upgrade Guide - http://docs.oracle.com/cd/E11882_01/server.112/e23633/toc.htm
    Pl also see these MOS Docs
    Oracle 11gR2 Upgrade Companion [ID 785351.1]
    Complete Checklist to Upgrade the Database to 11gR2 using DBUA [ID 870814.1]
    Best Practices to Minimize Downtime During Upgrade [ID 455744.1]
    Best approach for Oracle database patching sequence to latest/required patchset along with CPU/PSU/any-other-one-off patch [ID 865255.1]
    HTH
    Srini

  • Upgrading from 12.1.1 to 12.1.2

    hi
    i am going to upgrade EBS 12.1.1 to 12.1.2 what minimum database should be there to upgrade to 12.1.2...... now i have 10.2.0.3................

    Hi,
    Pls confirm the steps which you performed for DB upgrade:
    1. You need to install 11g DB (without any data) in a new location of existing 10g DB Tier.
    2.Then u need to upgrade that 11g version 11.1.0.7 by applying the patchsets
    3.Then need to run DBUA from 11g DB home for database upgrade from 10g to 11g.
    4.Then you need to stop the 10g db and run only 11g and create new appsutil from appstier and copy to 11g db_home
    5.Run autoconfig on 11g db_home and then appstier to sync 11g Db with apps tier..did u missed any stpes mentioend above or u got any error dring the upgrade ?
    Also confirm whether you followed all the steps asper the note:802875.1 "Interoperability Notes Oracle EBS Release 12.1 with Oracle Database 11gR1 (11.1.0)"
    -Rk

  • Upgrading from 9.2.0.1 to 10g R2

    today, I was using Oracle DBUA to upgrade my database from 9i R2 to 10g R2. DBUA complained as follows.
    ORA-20000: Version 9.2.0.1.0 not supported for upgrade to release 10.2.0
    ORA-06512: at line 1523
    Could any one help me to address this issue ?

    Have you read the documentation? According to the Upgrade:
    "Direct upgrade from 8.1.7.4, 9.0.1.4 or higher, 9.2.0.4 or higher, and 10.1.0.2 or higher to the newest Oracle Database 10g release is supported."
    So, that suggests you have to upgrade to 9.2.0.4 first (it is available from OTN). Alternatively you can ditch the DBUA and go for a manual approach.
    Cheers, APC

  • Upgrading from 8.1.7.4 to 9.2 on Solaris

    We want to do an upgrade from 8.1.7.4 to 9.2 on a Solaris server. We want to convert the existing DB (not do an export/import) Down time is not an issue. I understand that to do this we install new Binaries and run a conversion script.
    How do we do this?

    Hi,<br>
    <br>
    I advise you to read Upgrading a Database to the New Oracle9i Release<br>
    Install binaries into a new ORACLE_HOME directory, then use DBUA or manual upgrade.<br>
    <br>
    Nicolas.

Maybe you are looking for

  • Info Package Routine issue.

    Hi I was working on an info package routine. I have to load somw documents based some some criterias. My question is how may values can i append for loading Document No. i have somwhere about 400,000 records. I'll have all those doc no's in an Intern

  • About notification and auto forward

    Hi all, i'm new on nw-bpm 1. (send a message to let the requester know if the task has finished successfully in the end) Could BPM use u201CNotification" tab in UWL? if yes, which element should i choose in process composer of NWDS? or i have to do s

  • Online photo editors crash Safari

    Hiya, I've been trying to upload photos to a few online photo editing sites like PicMonkey, Befunky, Pixlr and Pizap, but every time I start to upload, it crashes Safari. This is the last error report I got, if that's any help in identifying the prob

  • How to use coolies in struts

    hai i got answer for this in O'Reilly Jakarta Struts Cook Book.... thanks...

  • Problem: Can't edit any table values

    Hi, I'm using the latest version of Oracel SQL Developer in XP and cannot edit any table values (ie: the actual data). I've tried the reset of Accelerators as previously suggested to no effect. I know the user has access since TOAD and DreamCoder all