Database Upgrade to 10.2.0.4

Using Windows 2003 64-bit, 10.2.0.3 Standard Edition.
I clone the database to a spare server, shut it down immediate, and stopped all Oracle services. I installed the 10.2.0.4 patchset into the original Oracle Home without a problem. I then ran the Database Upgrade Assistant and it ran through to completion. However, it did declare a series of errors when upgrading the 'Data Mining' component:
Error ignored: ORA-29831: operator binding not found ORA-06553: PLS-306: wrong number or types of arguments in call to 'SDO_FILTER'
...and others like it. The report at the end of the process is saying the Oracle Server component is 'Successful *' -and the asterisk links to a list of the errors that I clicked 'ignore' to during the process. The one for 'data mining' says 'Skipped'.
I don't think I mind the errors about Data Mining, because as far as I know, we don't use that (are we even allowed to on an SE license?) When I look in V$OPTION, for example, we get:
OLAP Window Functions TRUE
Block Media Recovery FALSE
Fine-grained Auditing FALSE
Application Role FALSE
Enterprise User Security FALSE
Oracle Data Guard FALSE
Oracle Label Security FALSE
OLAP FALSE
Table compression FALSE
Join index FALSE
Trial Recovery FALSE
Data Mining                                                      FALSE
Online Redefinition FALSE
Streams Capture FALSE
File Mapping FALSE
So my question is: did the upgrade work properly or not?! Should I mind that the errors appeared when upgrading a component that doesn't even exist, as far as I know? Is there some way of knowing that all is as it should be?
I have logged onto the database after the upgrade and all looks fine, with queries working as expected and so on. But I just have a nagging doubt...

SQL> SELECT owner, object_type, COUNT(*)
  2  FROM dba_objects
  3  WHERE status = 'INVALID'
  4  GROUP BY owner, object_type;
OWNER                          OBJECT_TYPE           COUNT(*)
MDSYS                          PACKAGE BODY                 1
ACC_GLOBAL                     PACKAGE BODY                 1The ACC_GLOBAL invalid is a known issue: I don't have the tnsnames.ora with the right alias for the resolution of a database link that package contains. MDSYS is not a schema we use, I think, and the package that's invalid is SDO_3GL which is the package I expected to be wrong as a result of the error messages received during the upgrade.
As for your second query:
COMP_NAME                                VERSION                        STATUS
Oracle interMedia                        10.2.0.4.0                     VALID
Oracle XML Database                      10.2.0.4.0                     VALID
Oracle Text                              10.2.0.4.0                     VALID
Oracle Data Mining                       10.2.0.3.0                     OPTION OFF
Oracle Expression Filter                 10.2.0.4.0                     VALID
Oracle Rule Manager                      10.2.0.4.0                     VALID
Oracle Workspace Manager                 10.2.0.4.3                     VALID
Oracle Database Catalog Views            10.2.0.4.0                     VALID
Oracle Database Packages and Types       10.2.0.4.0                     VALID
JServer JAVA Virtual Machine             10.2.0.4.0                     VALID
Oracle XDK                               10.2.0.4.0                     VALID
Oracle Database Java Packages            10.2.0.4.0                     VALIDDoesn't look a miserable failure to me, really. Data Mining doesn't look right, but we knew that already because of those error messages during the upgrade. Fact remains, we don't use it, it's not an option we've installed, etc etc.

Similar Messages

  • Forms HOST command no longer works after database upgrade from 10g to 11g

    Hi,
    After upgrading the database 10g to 11g the forms HOST command no longer works on Unix server. The form used to work fine prior the upgrade. I read all the threads I could find and did not see any solutions. Adding PATH and LD_LIBRARY_PATH does not work because it does not even run a basic shell script. (I saw this solution, adding PATH and LD_LIBRARY_PATH, in many questions / threads).
    1. I wouldn't expect the database upgrade to be an issue, but it is the only change we had.
    2. Note, 11g is Oracle Fusion Middleware which is quite a bit different than 10g.
    I even tried the most basic commands like "echo" which is a build-in Unix command and there is no directory for it (ie. no /usr/bin - so variable PATH is irrelvent). i.e HOST('echo hi'); and HOST('echo "hi" '); and even HOST ('echo hi > /my_file.txt'); all returns FORMS_FAILURE (actually the if is IF FORM_SUCCESS THEN ... else ... and the else part always runs now - whereas it didn't before.).
    Or basic commands like /usr/bin/ls as in HOST(/usr/bin/ls). At that point I was just testing the Unix command would return FORM_SUCCESS even though I could not see the results (because they weren't writing to a log file). Notice that I'm using the direct path /usr/bin so no Unix environment variables were needed.
    The form does use webutil but that part works. For example, we have webutil_file_transfer( ....) The file shows up on the application server and in the expected directory.
    Here's the main goal. Upload a file from clients local PC to the datebase server. The form uploads the file to the Application server, then we have a Unix script to scp (secure copy) the file from the application server to the database server. IF webutil, or any other Oracle functions could put the file on the database server that would be better. But, I don't know of any procedures that do that - or would have done it cleanly (i.e. storing to database and write back to server and then using a blob etc. )
    Anyway, I was hoping someone would help with either of these.
    1) Get the HOST command to work. - If we can get that to work then I wouldn't need any more help. We can just call the already existing Unix script to copy the file from the application server to the database.
    2) OR be able to upload directly to the database server - wanted to do that originally
    Any help would be appreciated

    Solution for those interested and for anyone else searching this forum for a solution
    I found this on My Oracle Support:
    <h3>Host Command from Forms Not Working in 11g in Sun Solaris Sparc OS [ID 1157346.1]</h3>
    Applies To: Oracle Forms - Version 11.1.1.1.0 and later
    Sun SPARC Sun OS
    Symptoms:
    When trying to execute a Shell script or any OS command using the host() Built-in from Forms 11g, the host()command is not getting executed. The same functionality works on other operating systems and in previous versions like 10gR2.
    Steps to be followed:
    1) Take a backup and edit the $DOMAIN_HOME/config/fmwconfig/servers/WLS_FORMS/applications/formsapp_11.1.1/config/default.env or any custom environment file.
    2) Locate the following environment variable:
    LD_PRELOAD=/ora10gas/app/11.1.0/Middleware/as_1/jdk/jre/lib/sparcv9/libjsig.so
    3) Comment out this variable. After the changes, it will look like the following:
    #LD_PRELOAD=/ora10gas/app/11.1.0/Middleware/as_1/jdk/jre/lib/sparcv9/libjsig.so
    3) a) Instead of LD_PRELOAD, kindly use LD_PRELOAD_64 as given below :
    LD_PRELOAD_64=/ora10gas/app/11.1.0/Middleware/as_1/jdk/jre/lib/sparcv9/libjsig.so
    (This makes HOST AND RUN_REPORT_OBJECT work fine).
    4) Save the file and execute your forms. The Host() built-in will work as expected
    The LD_PRELOAD setting in default.env is only required for the working of signal chaining facility in JVM version 1.5 and later. If you are not using theSignal chaining facility, this variable is not required. For more information, refer to the following documentation
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14772/forms.htm#CJAJGAFF

  • Oracle Database upgrade to 11G (Host_Command Issues)

    Sorry I'm posting this again. Original post in Database - Upgrade. I'm not getting a lot of clicks in that category
    We recently upgraded to Oracle 11g (Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production). Our PL/SQL release: (PL/SQL Release 11.2.0.2.0 - Production). We use a lot of host commands inside our PL/SQL stored procedures. One of these included fetching data from an external server and pushing the data into Oracle Tables.
    Most of this process is running fine, except the execution never completes. There is no issue data wise. It's just that the Host_command doesn't receive the completion status and seems to be running even though there's nothing going on in the background.
    The Oracle e-business suite's concurrent program based on this stored proc also never completes, though it doesn't do anything in the background. For testing purpose, our DBA used 2 insert statements one before and one after the host_command. The insert before the host_command worked but not the one after. Please help! This is happening after we upgraded to 11g 3 weeks ago!
    Thanks, Naveen Gagadam.

    Pl do not post duplicates - Upgrade to 11g, Host Command Inside Stored Proc doesn't end.
    I have moved your duplicate post to the EBS forums
    Srini

  • Database Upgradation from oracle 9.2.0.8 to oracle11gR2

    Hi
    we are using AIX 5.3 TL 10 SP4 and we are upgrading DB from oracle9.2.0.8 to oracle 11.2.0.2
    i am having some doubt from below pre-upgrade scripts out put.
    oratst@ebsdevdb on /tmp # sqlplus "/as sysdba"
    SQL*Plus: Release 9.2.0.8.0 - Production on Mon Jul 4 10:11:48 2011
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.8.0 - Production
    SQL> spool 11202_upgrade.txt
    SQL> @utlu112i.sql
    Oracle Database 11.2 Pre-Upgrade Information Tool 07-04-2011 10:17:06
    Script Version: 11.2.0.2.0 Build: 001
    Database:
    --> name: EBSTEST
    --> version: 9.2.0.8.0
    --> compatible: 9.2.0
    --> blocksize: 8192
    --> timezone file: V1
    Logfiles: [make adjustments in the current environment]
    --> The existing log files are adequate. No changes are required.
    Tablespaces: [make adjustments in the current environment]
    --> SYSTEM tablespace is adequate for the upgrade.
    .... minimum required size: 8546 MB
    --> TOOLS tablespace is adequate for the upgrade.
    .... minimum required size: 8 MB
    --> TEMP tablespace is adequate for the upgrade.
    .... minimum required size: 61 MB
    --> AR_TABLE tablespace is adequate for the upgrade.
    .... minimum required size: 33497 MB
    --> FND_TABLE tablespace is adequate for the upgrade.
    .... minimum required size: 45447 MB
    --> AMVD tablespace is adequate for the upgrade.
    .... minimum required size: 7 MB
    --> ASOD tablespace is adequate for the upgrade.
    .... minimum required size: 7 MB
    --> CCTD tablespace is adequate for the upgrade.
    .... minimum required size: 7 MB
    --> IBUD tablespace is adequate for the upgrade.
    .... minimum required size: 1 MB
    --> IEMD tablespace is adequate for the upgrade.
    .... minimum required size: 5 MB
    --> IEOD tablespace is adequate for the upgrade.
    .... minimum required size: 4 MB
    --> JTFD tablespace is adequate for the upgrade.
    .... minimum required size: 135 MB
    --> OKCD tablespace is adequate for the upgrade.
    .... minimum required size: 34 MB
    --> XDPD tablespace is adequate for the upgrade.
    .... minimum required size: 7 MB
    --> XNPD tablespace is adequate for the upgrade.
    .... minimum required size: 7 MB
    --> APPS_UNDOTS1 tablespace is adequate for the upgrade.
    .... minimum required size: 849 MB
    Update Parameters: [Update Oracle Database 11.2 init.ora or spfile]
    Note: Pre-upgrade tool was run on a lower version 64-bit database.
    --> If Target Oracle is 32-Bit, refer here for Update Parameters:
    WARNING: --> "compatible" must be set to at least 10.1.0
    --> If Target Oracle is 64-Bit, refer here for Update Parameters:
    WARNING: --> "compatible" must be set to at least 10.1.0
    WARNING: --> "shared_pool_size" needs to be increased to at least 532 MB
    WARNING: --> "java_pool_size" needs to be increased to at least 128 MB
    Renamed Parameters: [Update Oracle Database 11.2 init.ora or spfile]
    -- No renamed parameters found. No changes are required.
    Obsolete/Deprecated Parameters: [Update Oracle Database 11.2 init.ora or spfile]
    --> optimizer_max_permutations 10.1 OBSOLETE
    --> row_locking 10.1 OBSOLETE
    --> undo_suppress_errors 10.1 OBSOLETE
    --> max_enabled_roles 10.1 DEPRECATED
    --> enqueue_resources 10.2 OBSOLETE
    --> sql_trace 10.2 DEPRECATED
    --> background_dump_dest 11.1 DEPRECATED replaced by "diagnostic_dest"
    --> user_dump_dest 11.1 DEPRECATED replaced by "diagnostic_dest"
    Components: [The following database components will be upgraded or installed]
    --> Oracle Catalog Views [upgrade] VALID
    --> Oracle Packages and Types [upgrade] VALID
    --> JServer JAVA Virtual Machine [upgrade] VALID
    --> Oracle XDK for Java [upgrade] VALID
    --> Real Application Clusters [upgrade] INVALID
    --> Oracle Text [upgrade] VALID
    --> Oracle XML Database [install]
    --> Oracle Java Packages [upgrade] VALID
    --> Oracle interMedia [upgrade] VALID
    --> Spatial [upgrade] VALID
    Miscellaneous Warnings
    WARNING: --> Passwords exist in some database links.
    .... Passwords will be encrypted during the upgrade.
    .... Downgrade of database links with passwords is not supported.
    WARNING: --> Deprecated CONNECT role granted to some user/roles.
    .... CONNECT role after upgrade has only CREATE SESSION privilege.
    WARNING: --> Database is using a timezone file older than version 14.
    .... After the release migration, it is recommended that DBMS_DST package
    .... be used to upgrade the 9.2.0.8.0 database timezone version
    .... to the latest version which comes with the new release.
    WARNING: --> Database contains INVALID objects prior to upgrade.
    .... The list of invalid SYS/SYSTEM objects was written to
    .... registry$sys_inv_objs.
    .... The list of non-SYS/SYSTEM objects was written to
    .... registry$nonsys_inv_objs.
    .... Use utluiobj.sql after the upgrade to identify any new invalid
    .... objects due to the upgrade.
    .... USER ADWANIAH has 1 INVALID objects.
    .... USER APPS has 34 INVALID objects.
    .... USER CHAKKACHANSA has 1 INVALID objects.
    .... USER FA_USER has 9 INVALID objects.
    .... USER SYSSEL has 2 INVALID objects.
    .... USER SYSTEM has 30 INVALID objects.
    .... USER XXITDFINAD has 7 INVALID objects.
    WARNING: --> SYSTEM schema default tablespace has been altered.
    .... The SYSTEM schema default tablespace is currently set to TOOLS.
    .... Prior to upgrading your database please reset the
    .... SYSTEM schema default tablespace to SYSTEM using the command:
    .... ALTER USER SYSTEM DEFAULT TABLESPACE SYSTEM;
    WARNING: --> Database contains schemas with objects dependent on DBMS_LDAP package.
    .... Refer to the 11g Upgrade Guide for instructions to configure Network ACLs.
    .... USER APPS has dependent objects.
    Recommendations
    Oracle recommends gathering dictionary statistics prior to
    upgrading the database.
    To gather dictionary statistics execute the following commands
    while connected as SYSDBA:
    EXECUTE dbms_stats.gather_schema_stats('CTXSYS',options=>'GATHER'
    ,estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    EXECUTE dbms_stats.gather_schema_stats('DBSNMP',options=>'GATHER'
    ,estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    EXECUTE dbms_stats.gather_schema_stats('MDSYS',options=>'GATHER'
    ,estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    EXECUTE dbms_stats.gather_schema_stats('ORDPLUGINS',options=>'GATHER'
    ,estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    EXECUTE dbms_stats.gather_schema_stats('ORDSYS',options=>'GATHER'
    estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    EXECUTE dbms_stats.gather_schema_stats('OUTLN',options=>'GATHER'
    ,estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    EXECUTE dbms_stats.gather_schema_stats('SYS',options=>'GATHER'
    ,estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    EXECUTE dbms_stats.gather_schema_stats('SYSTEM',options=>'GATHER'
    ,estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE
    ,method_opt=>'FOR ALL COLUMNS SIZE AUTO'
    ,cascade=>TRUE);
    Oracle recommends removing all hidden parameters prior to upgrading.
    To view existing hidden parameters execute the following command
    while connected AS SYSDBA:
    SELECT name,description from SYS.V$PARAMETER WHERE name
    LIKE '\_%' ESCAPE '\'
    Changes will need to be made in the init.ora or spfile.
    Oracle recommends reviewing any defined events prior to upgrading.
    Changes will need to be made in the init.ora or spfile.
    Oracle recommends reviewing any defined events prior to upgrading.
    To view existing non-default events execute the following commands
    while connected AS SYSDBA:
    Events:
    SELECT (translate(value,chr(13)||chr(10),' ')) FROM sys.v$parameter2
    WHERE UPPER(name) ='EVENT' AND isdefault='FALSE'
    Trace Events:
    SELECT (translate(value,chr(13)||chr(10),' ')) from sys.v$parameter2
    WHERE UPPER(name) = '_TRACE_EVENTS' AND isdefault='FALSE'
    Changes will need to be made in the init.ora or spfile.
    SYSAUX Tablespace:
    [Create tablespace in the Oracle Database 11.2 environment]
    --> New "SYSAUX" tablespace
    .... minimum required size for database upgrade: 500 MB
    From above output script
    1)SYSTEM tablespace is adequate for the upgrade.
    .... minimum required size: 8546 MB
    From system tablespace minimum required size means free space from system tablespace or total size of system tablespace?
    i am going to use dbua utility for upgrade means does it alter tablespace as per output of scripts or we need to manually alter tablespace size as per requirement?
    2)WARNING: --> Database contains schemas with objects dependent on DBMS_LDAP package.
    .... Refer to the 11g Upgrade Guide for instructions to configure Network ACLs.
    .... USER APPS has dependent objects.
    what is above warning and how can i configure ACL's for APPS User?
    Thanks
    With Regards
    A-Z

    Hi
    oratst@ebsdevdb on /ebdbh/11g/data/cfgtoollogs/dbua/ebstest/upgrade1 # more Upgrade_Directive.log
    Connected.
    ODMA_DIRECTIVE:VERSION:9.2.0.8
    ODMA_DIRECTIVE:MIGRATE_SID:
    ODMA_DIRECTIVE:ORA:IGNORE:06512:
    ODMA_DIRECTIVE:ORA:FATAL:00600:
    ODMA_DIRECTIVE:ORA:FATAL:01012:
    ODMA_DIRECTIVE:ORA:FATAL:01031:
    ODMA_DIRECTIVE:ORA:FATAL:01034:
    ODMA_DIRECTIVE:ORA:FATAL:01078:
    ODMA_DIRECTIVE:ORA:FATAL:01092:
    ODMA_DIRECTIVE:ORA:FATAL:01109:
    ODMA_DIRECTIVE:ORA:FATAL:01119:
    ODMA_DIRECTIVE:ORA:FATAL:01507:
    ODMA_DIRECTIVE:ORA:FATAL:01722:
    ODMA_DIRECTIVE:ORA:FATAL:03113:
    ODMA_DIRECTIVE:ORA:FATAL:03114:
    ODMA_DIRECTIVE:ORA:FATAL:07445:
    ODMA_DIRECTIVE:ORA:FATAL:12560:
    ODMA_DIRECTIVE:ORA:RECOVER_TBS:01650:
    ODMA_DIRECTIVE:ORA:RECOVER_TBS:01651:
    ODMA_DIRECTIVE:ORA:RECOVER_TBS:01652:
    ODMA_DIRECTIVE:ORA:RECOVER_TBS:01653:
    ODMA_DIRECTIVE:ORA:RECOVER_TBS:01654:
    ODMA_DIRECTIVE:ORA:RECOVER_TBS:01655:
    ODMA_DIRECTIVE:ORA:RECOVER_ROLL:01562:
    ODMA_DIRECTIVE:ORA:RECOVER_INIT:04031:
    ODMA_DIRECTIVE:SCRIPT:UPGRADE:rdbms/admin/catupgrd.sql:
    ODMA_DIRECTIVE:BOUNCE_DATABASE:UPGRADE:
    ODMA_DIRECTIVE:SCRIPT:UPGRADE:rdbms/admin/catuppst.sql:
    ODMA_DIRECTIVE:SCRIPT:UPGRADE:sqlplus/admin/help/hlpbld.sql helpus.sql:
    Thanks
    With Regards
    A-Z

  • 11.5.10.2 12.1.1 and 10g 11g database upgrade at same time

    I have just started an 11.5.10.2 > 12.1.1 upgrade and have created a project in MWIZ 2.15 for it.
    I would also like to upgrade the 10.2.0.2 database to 11.1.0.7 as part of the same upgrade and create an MWIZ project for that.
    I have a couple of questions that the MWIZ FAQ does not address:
    1. At what point in the 11.5.10.2 > 12.1.1 upgrade should I do the database upgrade?
    MWIZ has two points when it can be done based on apps/database versions. One is at the end of the 'Prep for Upgrade' category and the other is during the 'Upg to Rel 12.1.1' category. The MWIZ step notes cover upgrading to the latest 10g or 11g patch version but not upgrading from 10g to 11g so I am unsure which category to go for.
    2. When I create the database upgrade project which 'Destination Version' should I choose?
    The two options are 'RDBMS 11.1 and E-Business Suite 11.5' and 'RDBMS 11.1 and E-Business Suite 12'.
    As I haven't upgraded to R12 yet and am still at the pre-upgrade stage should I pick 11.5? Or should I go with R12 because I am upgrading Apps and the database at the same time?
    Any help and advice gratefully received.
    Thanks

    Answer to above question not required now as:
    Having read the 24th December update of note 761570.1 - 'Database Preparation Guidelines for an Oracle E-Business Suite Release 12.1.1 Upgrade' I have decided to upgrade the database to 11.2.0.x by following the Path C option.
    Unfortunately as the 11.2.0.x upgrade isn't covered by MWIZ yet I will have to follow the manual steps.

  • Help needed in 10gR2 to 11gR2 EBS Database Upgrade

    Hi,
    I am upgrading EBS Database from 10gR2 (10.2.0.3) to 11gR2 11.2.0.3. While going through Oracle Note Complete Checklist for Manual Upgrades to 11gR2 [ID 837570.1], under the point 3 of "Recommendations from Source database" it says:
    "Disable the custom triggers that would fire before/after DDL and enable them after the upgrade is complete."
    I want to know is it compulsory to disable the custom triggers? If yes then how can I get the list of those custom triggers and disable/enable them before and after the database upgrade?
    Please let me know the commands. My operating system is Oracle Enterprise Linux 5.8.
    Thanks,
    Abdul

    Hi Srini,
    Thanks for the docs.
    EBS version is R12 (12.0.6) and 10gR2 (10.2.0.3).
    Currently I am only upgrading EBS Database from 10gR2 (10.2.0.3) to 11gR2 (11.2.0.3) and want to use it with my current R12 version.
    Currently I am following these Oracle notes:
    - Complete Checklist for Manual Upgrades to 11gR2 [ID 837570.1]
    - Interoperability Notes EBS 12.0 and 12.1 with Database 11gR2 [ID 1058763.1]
    I hope I am on the right track?
    Regards,
    Abdul

  • Testing while doing the database upgrade from 9.2.0.6 to 11.2.0.2 apps ?

    Dear Experts,
    Please note that we are in process of doing database upgrade from 9.2.0.6 to 11.2.0.2 ?
    We have gone through the interoperablity note id for 11i 11gr2 ?
    Step 1
    upgrading the database from 9.2.0.6 to 9.2.0.8 ?
    Step 2-
    Upgrading the Forms patchset to 19 ?
    Step-3
    Applying the Rollup-6 patch ?
    Step -4
    Upgrading the database from 9.2.0.8 to 11.2.0.2 ?
    We would like to know whether after each step do we have to do any kind of testing on the Oracle Application Instance and the database?
    Please advise.
    Regards
    Mohammed.

    We would like to know whether after each step do we have to do any kind of testing on the Oracle Application Instance and the database?There is no such a list. However, you can refer to the documents referenced in each task above and it should cover if any testing need to be done or not (for example, the Developer Patchset doc). For the rest of the docs you will have to do your regular testing (test the application/database and make sure it is working properly).
    Also, make sure you review (Known issues on Top of 11i.ATG_PF.H. delta.6 (RUP6) - 5903765 [ID 459353.1]).
    ATG RUP 7 is the latest 11i.ATG_PF patch.
    About Oracle Applications Technology 11i.ATG_PF.H.delta.7 (RUP 7) [ID 783600.1]
    Known Issues On Top of 11i.ATG_PF.H.delta.7 (RUP7) - 6241631 [ID 858801.1]
    Thanks,
    Hussein

  • SCCM 2012 R2 SQL Database Upgrade Fails : Setup cannot upgrade the ConfigMgr database. Contact your SQL administrator.

    Hi Friends,
    We have planned to upgrade our SCCM 2012 SP1 infrastructure to SCCM 2012 R2 so we have setup test environment to test SQL database upgrade before doing same in production.
    But while testing SQL database upgrade on test machine, it is getting failed with below error.
    ConfigMgrSetupWizard.log
    ConfigMgrSetupWizard Verbose: 1 : Scripted setup failure handling callback called. Failure: 29.
    ConfigMgrSetupWizard Verbose: 1 : Received error [Setup cannot upgrade the ConfigMgr database. Contact your SQL administrator.] from native code.
    ConfigMgrSetup.log
    ERROR: SQL Server error: [23000][2627][Microsoft][SQL Server Native Client 11.0][SQL Server]Violation of PRIMARY KEY constraint 'ContentDistribution_PK'. Cannot insert duplicate key in object 'dbo.ContentDistribution'. The duplicate key value is (921). :
    tr_ContentDistributionNotification_insert
    ERROR: Failed to execute SQL Server command:  ~-- ~-- Rebuild ContentDistribution tables ~-- ~IF (EXISTS(SELECT TOP 1 1 FROM dbo.SMSData WHERE SMSBuildNumber <=  7900) AND dbo.fnIsSecondary() != 1) ~BEGIN ~    exec spRebuildContentDistribution
    @TruncateTables=0 ~END
    Failed to create process of SetupWpf.exe.
    Can anyone please help to get this resolved.
    Thanks. 

    We found out that there were duplicate entries in the PkgStatus_G and the PkgServers_G tables in the SCCM DB.  We identified them, deleted them , and then we were able to run the /TESTDBUPGRADE command and it went through fine.  We performed
    all of this on a COPY of the PROD DB and then moved the changes in PROD.  Hope this helps someone.
    - Dave

  • How can I determine what sites are being referenced within Central Admin Upgrade and Migration Manage Databases Upgrade Status?

    When I go to Central Admin > Upgrade and Migration  > Manage Databases Upgrade Status, I have 2 content databases which have the status:
    Database is up to date, but some sites are not completely upgraded.
    How can I determine which sites are not completely upgraded?

    Manage Databases Upgrade Status will provide you all active and offline DB details, you can get same result
    using below PowerShell cmdlet.
    Get-SPDatabase and Get-SPContentDatabase will provide all active database/Content DB in Farm which include Service application db, central admin DB.
    Get-SPDatabase | Format-Table Name, ID
    Coming back to your question, if you find that there are some site are not completely upgraded then run below command and understand the cause if issue on specific DB.
    Test-SPContentDatabase WSS_ContentDB_Name
    If you find any missing file issue in DB then resolve these issue to upgrade content database.
    (verify all customizations referenced within the content database are also installed in the web application. This cmdlet can be issued
    against a content database currently attached to the farm, or a content database that is not connected to the farm )
    Use the Upgrade-SPContentDatabase cmdlet
    to resume a failed database upgrade or begin a build-to-build database upgrade against a SharePoint content database
    Upgrade-SPContentDatabase WSS_Content
    reference:
    http://technet.microsoft.com/en-us/library/ff607813(v=office.15).aspx
    http://technet.microsoft.com/en-us/library/ff607941(v=office.15).aspx
    If my contribution helps you, please click Mark As Answer on that post and
    Vote as Helpful
    Thanks, ShankarSingh(MCP)

  • Directory ORACLE_HOME doesn't exist. in Database Upgrade 11.2.0.2

    Hi all,
    I am following the below document for database upgrade on EBS 12.1.3 database from 11.1.0.7 to 11.2.0.2.
    "Interoperability Notes EBS R12 with Database 11gR2 [ID 1058763.1]"
    We have completed upto
    6.     Install Oracle Database 11g Products from the 11g Examples CD
    but not "3.Update application tier context file with new database listener port number (conditional) "
    as it was conditional
    Old home:-F:\oracle\PROD\db\tech_st\11.1.0
    New Home:-F:\app\mocppd\product\11.2.0\dbhome_1
    set ORACLE_HOME=F:\app\mocppd\product\11.2.0\dbhome_1
    set ORACLE_BASE=F:\app\mocppd
    set LD_LIBRARY_PATH=F:\app\mocppd\product\11.2.0\dbhome_1\LIB
    set PERL5LIB=F:\app\mocppd\product\11.2.0\dbhome_1\perl\libcd F:\app\mocppd\product\11.2.0\dbhome_1\nls\data\old
    perl cr9idata.pl
    Got error on
    "7.Create nls/data/9idata directory" as
    perl cr9idata.pl
    F:\app\mocppd\product\11.2.0\dbhome_1\nls\data\old>perl cr9idata.pl
    cygwin warning:
      MS-DOS style path detected: F:/app/mocppd/product/11.2.0/dbhome_1
      Preferred POSIX equivalent is: /cygdrive/f/app/mocppd/product/11.2.0/dbhome_1
      CYGWIN environment variable option "nodosfilewarning" turns off this warning.
      Consult the user's guide for more details about POSIX paths:
        http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
    Directory /F:/app/mocppd/product/11.2.0/dbhome_1/nls/data doesn't exist. Can't p
    roceed.I didnot understand why the "Directory /F:/app/mocppd/product/11.2.0/dbhome_1/nls/data doesn't exist" has '/'
    in starting of the path
    Thanks
    Nawneet

    but why it taking /usr/bin/perl. we are in windows .This is an expected output since you use Cygwin.
    Please set perl to the one you have under RDBMS %ORACLE_HOME% and try again (%ORACLE_HOME%\appsutil\perl).
    Thanks,
    Hussein

  • Zen 4 - Zen 6.5 Inventory database upgrade fails

    Hi all,
    Have installed Zen 6.5 over a Zen 4 server (nw65) running inventory.
    Database is on a seperate oracle server.
    When I start inventory, it starts the database upgrade and then fails
    with a java exception part way through, and then says "stopping the
    upgrade service".
    Following is the log. Anyone know which bit is falling over and why?
    There's a few errors in the log and I don't know which are cosmetic/non
    critical. Either way, I've researched each and can't find any fixes
    anyway.
    cheers
    Dave
    [12/8/05 14:58:40.307] ZENInv - Server Config: The severconfig service
    start is pending...
    [12/8/05 14:58:40.464] ZENInv - Server Config: Getting Cascade INit
    time
    [12/8/05 14:58:41.462] ZENInv - Server Config: Database Location
    Policy DN is CN=Server Package - DAN02:General:ZENworks
    Database.OU=POLICIES.OU=APPLICATIONS.O=CHISHOLM
    [12/8/05 14:58:43.573] ZENInv - Server Config: The severconfig service
    is started...
    [12/8/05 14:58:43.707] ZenInv - Upgrade Service: Info : Read
    zenInvComponentStatus = 6.5 12 0
    [12/8/05 14:58:43.707] ZenInv - Upgrade Service: Inventory Server
    zenInvComponentStatus = 6.5 12 0
    [12/8/05 14:58:43.720] Service Manager: start(ServiceDataAccessor,
    String[]) not found in
    'com.novell.zenworks.desktop.inventory.storer.Stor erServiceInit'
    [12/8/05 14:58:43.740] ZENInv - Storer: Start with
    'ServiceStatusChangeListener' invoked
    [12/8/05 14:58:44.824] ZenInv - Upgrade Service: Unzipping the file
    migrate.zip
    [12/8/05 14:58:46.718] ZenInv - Upgrade Service: Transforming the
    Migration SQL files...
    [12/8/05 14:58:51.768] ZENInv - Storer: zenworks.isClosed =true
    [12/8/05 14:58:53.699] ZENInv - Storer: The current NDS tree=CIT
    [12/8/05 14:58:53.724] ZENInv - Storer: Storer from dblocation user:
    MW_DBA driver: oracle.jdbc.driver.OracleDriver protocol: jdbc:oracle:
    subname: thin:@ port: 1522
    [12/8/05 14:58:53.728] ZENInv - Storer: url[From DBObject]:
    jdbc:oracle:thin:@ora01a.chisholm.vic.edu.au:1522: dw
    [12/8/05 14:58:53.756] ZENInv - Storer: wsdn:
    CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLMi = 0
    [12/8/05 14:58:53.973] ZENInv - Storer: Loading Storer test properties
    file
    [12/8/05 14:58:54.053] Service Manager: start(ServiceDataAccessor,
    String[]) not found in
    'com.novell.zenworks.desktop.inventory.strconverte r.STRConverterServiceInit'
    [12/8/05 14:58:54.059] ZENInv - STRConverter: Start with
    'ServiceStatusChangeListener' invoked
    [12/8/05 14:58:54.755] ZENInv - Status Reporting: Messages are written
    into XML file for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 14:58:54.914] ZENInv - Status Reporting: Number of records to
    add are: 1 for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 14:58:55.012] ZENInv - Status Reporting: Adding record 0 for
    DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 14:58:55.729] ZENInv - Status Reporting: Number of modified
    records are: 0 for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 14:58:55.780] ZENInv - Storer: Database is not
    initialized..will retry after 300 seconds
    [12/8/05 14:58:55.787] ZENInv - Storer: Storer: Database not
    initialized as it is being upgraded ...will retry after 300 seconds.
    [12/8/05 14:58:55.788] ZENInv - Status Reporting: Messages are written
    into XML file for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 14:58:55.826] ZENInv - Status Reporting: Number of records to
    add are: 1 for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 14:58:55.860] ZENInv - Status Reporting: Adding record 0 for
    DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 14:58:57.439] ZENInv - Status Reporting: Number of modified
    records are: 0 for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 14:59:04.100] ZENInv - STRConverter: Loading STRConverter test
    properties file
    [12/8/05 14:59:04.201] Service Manager: start(ServiceDataAccessor,
    String[]) not found in
    'com.novell.zenworks.desktop.inventory.senderrecei ver.control.ReceiverServiceInit'
    [12/8/05 14:59:15.618] ZENInv - SendRec Common: entPushDir =
    SYS:\ZENworks\Inv\ScanDir\EntPushDir
    [12/8/05 14:59:15.618] ZENInv - SendRec Common: entMergeDirD =
    SYS:\ZENworks\Inv\ScanDir\EntMergeDir
    [12/8/05 14:59:15.618] ZENInv - SendRec Common: dbDirD =
    SYS:\ZENworks\Inv\ScanDir\DbDir
    [12/8/05 14:59:15.625] ZENInv - SendRec Common: serverName = DAN02
    [12/8/05 14:59:15.626] ZENInv - SendRec Common: serviceDN =
    CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 14:59:15.626] ZENInv - SendRec Common: treeName = CIT
    [12/8/05 14:59:15.626] ZENInv - SendRec Common: hasSSD = false
    [12/8/05 14:59:15.626] ZENInv - SendRec Common: hasISD = false
    [12/8/05 14:59:15.626] ZENInv - SendRec Common: hasESD = true
    [12/8/05 14:59:15.632] ZENInv - SendRec Common: hasDB = true
    [12/8/05 14:59:15.633] ZENInv - SendRec Common: securityDir =
    SYS:\PUBLIC\ZENWORKS\WMINV\PROPERTIES
    [12/8/05 14:59:15.661] Service Manager: start(ServiceDataAccessor,
    String[]) not found in
    'com.novell.zenworks3x.desktop.inventory.senderrec eiver.control.ReceiverServiceInit'
    [12/8/05 14:59:15.882] ZENInv - CascadedBaseTime Server:
    zenInvCascadeBaseTimeService: CBTServiceController: Startup Properties:
    {basetime=Thu Jan 01 10:00:00 EST 1970,
    servicename=zenInvCascadeBaseTimeService, portnumber=0}
    [12/8/05 14:59:16.367] ZENInv - IFS Server: zeninvReceiverService:
    FileServiceController: Startup Properties: {chunksize=4096,
    transfers=100,
    rootdirectory=SYS:\ZENworks\Inv\ScanDir\EntPushDir \ZipDir,
    timeout=60000, servicename=zeninvReceiverService, portnumber=0}
    [12/8/05 14:59:25.771] ZENInv - TCPReceiver: cascadingBaseTime = 0
    [12/8/05 14:59:25.771] ZENInv - TCPReceiver: entPushDir =
    SYS:\ZENworks\Inv\ScanDir\EntPushDir
    [12/8/05 14:59:25.777] ZENInv - TCPReceiver: serverName = DAN02
    [12/8/05 14:59:25.777] ZENInv - TCPReceiver: serviceDN =
    CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 14:59:25.777] ZENInv - TCPReceiver: treeName = CIT
    [12/8/05 14:59:25.778] ZENInv - TCPReceiver: hasDB = true
    [12/8/05 14:59:25.971] Service Manager: start(ServiceDataAccessor,
    String[]) not found in
    'com.novell.zenworks.common.inventory.dictionaryup date.provider.DictProvider'
    [12/8/05 14:59:26.005] ZENInv - TCPReceiver: Receiver Started without
    CLUSTER
    [12/8/05 14:59:26.006] ZENInv - TCPReceiver: Receiver Binds to Port
    Number : 65432
    [12/8/05 14:59:26.073] ZENInv - IFS Server: zenInvDictProvider:
    FileServiceController: Startup Properties: {chunksize=4096,
    transfers=100, rootdirectory=SYS:\ZENworks\Inv\server\DictDir,
    timeout=60000, servicename=zenInvDictProvider, portnumber=0}
    [12/8/05 14:59:26.183] Service Manager: start(ServiceDataAccessor,
    String[]) not found in
    'com.novell.zenworks.common.inventory.dictionaryup date.consumer.DictConsumer'
    [12/8/05 14:59:28.918] ZENInv - Dictionary Consumer:
    DictConsumerUtility::getUpdatePolicyDN: getDictionaryUpdatePolicy
    returned attribs.returnValue = 0
    [12/8/05 14:59:28.919] ZENInv - Dictionary Consumer:
    DictConsumerService::DictDownloadThread::run:
    UpdatePolicyNotFoundException.
    com.novell.zenworks.common.inventory.dictionaryupd ate.consumer.UpdatePolicyNotFoundException
    at
    com.novell.zenworks.common.inventory.dictionaryupd ate.consumer.DictConsumerUtility.getUpdatePolicyDN (DictConsumerUtility.java:237)
    at
    com.novell.zenworks.common.inventory.dictionaryupd ate.consumer.DictConsumerService$DictDownloadThrea d.setUpdatePolicyAttribs(DictConsumerService.java: 688)
    at
    com.novell.zenworks.common.inventory.dictionaryupd ate.consumer.DictConsumerService$DictDownloadThrea d.getFileClientProperties(DictConsumerService.java :616)
    at
    com.novell.zenworks.common.inventory.dictionaryupd ate.consumer.DictConsumerService$DictDownloadThrea d.transferFiles(DictConsumerService.java:429)
    at
    com.novell.zenworks.common.inventory.dictionaryupd ate.consumer.DictConsumerService$DictDownloadThrea d.run(DictConsumerService.java:211)
    [12/8/05 14:59:28.921] ZENInv - Status Reporting: Messages are written
    into XML file for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 14:59:28.953] ZENInv - Status Reporting: Number of records to
    add are: 1 for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 14:59:28.986] ZENInv - Status Reporting: Adding record 0 for
    DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 14:59:29.326] ZENInv - Status Reporting: Number of modified
    records are: 0 for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 14:59:29.326] ZENInv - Dictionary Consumer:
    DictConsumerService::FileDownloadListener::downloa dFailed.
    [12/8/05 14:59:59.680] ZenInv - Upgrade Service: Starting Schema
    Migration
    [12/8/05 14:59:59.751] ZenInv - Upgrade Service: mw_dba->alter
    tablespace cim3 default storage (maxextents unlimited) is being
    executed
    [12/8/05 14:59:59.752] ZenInv - Upgrade Service: Could not do the
    operation. details:ORA-25143: default storage clause is not compatible
    with allocation policy
    ErrorCode:25143
    [12/8/05 14:59:59.752] ZenInv - Upgrade Service: Totaltime taken for
    Schema Migration : 38
    [12/8/05 14:59:59.851] ZENInv - Storer: cim.isClosed =true
    [12/8/05 14:59:59.937] ZENInv - Status Reporting: Messages are written
    into XML file for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 14:59:59.970] ZENInv - Status Reporting: Number of records to
    add are: 1 for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 15:00:00.133] ZENInv - Status Reporting: Adding record 0 for
    DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 15:00:00.277] ZENInv - Status Reporting: Number of modified
    records are: 0 for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 15:00:00.719] ZenInv - Upgrade Service: migrateDbToMidas(true)
    failed in AlterProcedure
    [12/8/05 15:00:00.728] ZENInv - Status Reporting: Messages are written
    into XML file for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 15:00:00.761] ZENInv - Status Reporting: Number of records to
    add are: 1 for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 15:00:00.795] ZENInv - Status Reporting: Adding record 0 for
    DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 15:00:00.964] ZENInv - Status Reporting: Number of modified
    records are: 0 for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 15:00:00.966] ZenInv - Upgrade Service: Upgrade database to
    ZENworks 6.5 failed. Reinstall ZENworks 6.5 and start the inventory
    server again
    [12/8/05 15:00:00.967] ZENInv - Status Reporting: Messages are written
    into XML file for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 15:00:01.000] ZENInv - Status Reporting: Number of records to
    add are: 1 for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 15:00:01.038] ZENInv - Status Reporting: Adding record 0 for
    DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 15:00:01.188] ZENInv - Status Reporting: Number of modified
    records are: 0 for DN=CN=DAN02_ZenInvService.OU=DAN.O=CHISHOLM
    [12/8/05 15:00:01.237] ZenInv - Upgrade Service: [EnumModifier]
    modifyEnumTables, Running EnumModifier in integrated mode with
    upgradeService
    [12/8/05 15:00:01.237] ZenInv - Upgrade Service: [EnumModifier]
    modifyEnumTables, dbDriver:oracle.jdbc.driver.OracleDriver
    [12/8/05 15:00:01.237] ZenInv - Upgrade Service: [EnumModifier]
    modifyEnumTables,
    dbURL:jdbc:oracle:thin:@ora01a.chisholm.vic.edu.au :1522:dw
    [12/8/05 15:00:01.239] ZenInv - Upgrade Service: [EnumModifier]
    modifyEnumTables, dbType:1
    [12/8/05 15:00:01.239] ZenInv - Upgrade Service: [EnumModifier]
    modifyEnumTables, dbUser:MW_DBA
    [12/8/05 15:00:01.239] ZenInv - Upgrade Service: [EnumModifier]
    modifyEnumTables, dbPasswd:novell
    [12/8/05 15:00:01.248] ZenInv - Upgrade Service: [EnumModifier] Product
    Version: ZFD 4
    [12/8/05 15:00:01.298] ZenInv - Upgrade Service: [EnumModifier]
    checkConditions(), Executing check 'Statements':5
    [12/8/05 15:00:01.298] ZenInv - Upgrade Service: [EnumModifier]
    DatabaseEnumsModifier::checkResult(), query: insert into
    cim.upgrademethod_en_US Values (13, 'Socket 423')
    [12/8/05 15:00:01.311] ZenInv - Upgrade Service: [EnumModifier]
    checkResult, errorcode:1
    [12/8/05 15:00:01.311] ZenInv - Upgrade Service: [EnumModifier]
    checkResult, Non-fatal error:1
    [12/8/05 15:00:01.312] ZenInv - Upgrade Service: [EnumModifier]
    DatabaseEnumsModifier::checkResult(), query: insert into
    cim.upgrademethod_en_US Values (14, 'Socket A (Socket 462)')
    [12/8/05 15:00:01.316] ZenInv - Upgrade Service: [EnumModifier]
    checkResult, errorcode:1
    [12/8/05 15:00:01.316] ZenInv - Upgrade Service: [EnumModifier]
    checkResult, Non-fatal error:1
    [12/8/05 15:00:01.317] ZenInv - Upgrade Service: [EnumModifier]
    DatabaseEnumsModifier::checkResult(), query: insert into
    cim.upgrademethod_en_US Values (15, 'Socket 478')
    [12/8/05 15:00:01.321] ZenInv - Upgrade Service: [EnumModifier]
    checkResult, errorcode:1
    [12/8/05 15:00:01.322] ZenInv - Upgrade Service: [EnumModifier]
    checkResult, Non-fatal error:1
    [12/8/05 15:00:01.322] ZenInv - Upgrade Service: [EnumModifier] Da

    ok putting inv into "ALL" debug mode, it told me it was running
    init_sl_0.sql
    I found this file contained in migrate.zip under the wminv\properties
    directory.
    So I extracted the migrate.zip file, edited init_sl_0.sql and removed
    the alter tablespace lines. Why they're wanting to do alter tablespace
    I have no idea - applications shouldn't expect to be able to do that...
    it's up to the organisation and the DBA to manage the tablespaces, not
    the application.
    I then re-zipped all the files using Winzip and named the file
    migrate.zip and placed it in the properties directory.
    Now, when the upgrade runs I get a java exception when it tries to
    unzip migrate.zip and the upgrade bombs.
    I also tried just opening the migrate.zip file with Winzip and directly
    editing the file from within Winzip, which does allow for this. However
    it appears the files inside the archive are flagged read-only, so
    Winzip can't rewrite the edited file back into the same folder location
    within the archive.
    Here's the java exception:
    ***12/21/05 16:24:40.789] ZenInv - Upgrade Service: Unzipping the file
    migrate.zip
    [12/21/05 16:24:40.827] ZenInv - Upgrade Service:
    [12/21/05 16:24:40.827] ZenInv - Upgrade Service: Exception while
    unzipping the migration zip file
    java.lang.NullPointerException
    at
    com.novell.zenworks.desktop.inventory.upgradeServi ce.MigUnzip.unZipFile(AlterProcedure.java:4557)
    at
    com.novell.zenworks.desktop.inventory.upgradeServi ce.MigUnzip.unzip(AlterProcedure.java:4522)
    at
    com.novell.zenworks.desktop.inventory.upgradeServi ce.AlterProcedure.unzipMigrateZipFile(AlterProcedu re.java:1983)
    at
    com.novell.zenworks.desktop.inventory.upgradeServi ce.AlterProcedure.unzipMigrateZipFile(AlterProcedu re.java:1975)
    at
    com.novell.zenworks.desktop.inventory.upgradeServi ce.UpgradeServiceController.aInitMigration(Upgrade ServiceController.java:218)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Nativ e Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(Native MethodAccessorImpl.java:39)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(De legatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at
    com.novell.zenworks.desktop.inventory.senderreceiv er.statemachine.StateMachine.execute(StateMachine. java:68)
    at
    com.novell.zenworks.desktop.inventory.upgradeServi ce.UpgradeServiceController.init(UpgradeServiceCon troller.java:113)
    at
    com.novell.zenworks.desktop.inventory.upgradeServi ce.UpgradeServiceThread.run(UpgradeServiceThread.j ava:81)
    [12/21/05 16:24:40.828] ZenInv - Upgrade Service: unzipMigrateZipFile()
    failed in AlterProcedure
    [12/21/05 16:24:40.829] ZenInv - Upgrade Service: in aLogError() method
    [12/21/05 16:24:40.830] ZenInv - Upgrade Service: Upgrade database to
    ZENworks 6.5 failed. Reinstall ZENworks 6.5 and start the inventory
    server again
    Ok.. what am I doing wrong ? :) It shouldn't be this hard....
    cheers
    Dave

  • Oracle database upgrade 11.2.0.3 to 11.2.0.4 from 11.5.10.2

    Hello,
    could you please share document for database upgrade 11.2.0.4 for 11.5.10.2.
    Thanks
    Prince

    user12094010 wrote:
    Hello,
    could you please share document for database upgrade 11.2.0.4 for 11.5.10.2.
    Thanks
    Prince
    https://blogs.oracle.com/stevenChan/entry/11_2_0_4_database
    Interoperability Notes Oracle EBS 11i with Oracle Database 11gR2 (11.2.0) (Doc ID 881505.1)
    Thanks,
    Hussein

  • Database Upgrade 10.1.0.4 to 10.2.0.4

    Newbie here.
    So I am starting to use OEM on Windows XP workstation and have upgraded it to 10.2.0.4 and also wanted to upgrade the repository to 10.2.0.4 as well.
    So this is what I have done so far.
    I have installed 10.2.0.1 into a new home. I have patch it to 10.2.0.4. I am using DBUA to upgrade the database and have set my ORACLE_HOME to the new home and started DBUA. Everything is working just fine until the new OracleService is created and is trying to start. I received a message that it is unable to start service. If i click on continue I received the ORA-12560 TNS error. I have tried multiple times to get this to work and it always fails on this part..
    Also to let you know that when I connect to SQLPlus before upgrade I have to connect using sysplus sysman/xxxxx@emrep with out emrep it won't connect. I have also set TNS_ADMIN to the original homes network/admin directory.
    I have research the documentation on upgrading, but maybe I am missing a step or someone has run into the same issue.
    Any help you can lend me would be appreciated.

    The database files won't be copied over. As general practice, databases aren't stored under Oracle Homes. You could always fix that by moving the database, backup the control file to trace, and edit it with new file locations. I wouldn't worry about that right now.
    Did you run the prerequisite script before trying to upgrade?
    <10.2 HOME>/rdbms/admin/utlu102i.sql
    Once a database is opened upgrade, you won't be able to open it with the old binaries.
    Was the listener up when you tried to connect to it with 10.1? Were there any errors?
    The manual process of upgrading the database is to export the 10.2 env, open the database upgrade, upgrade the data dictionary <10.2HOME>/rdbms/admin/catupgrd.sql, startup the database normally, and Compile all the invalid objects <10.2HOME>/rdbms/admin/utlrp.sql. I would make sure to go over the sql that executes prerequisite checks and read through the upgrade docs. I would also take a backup before doing anything.

  • Oracle 11g R1(11.1) Database Upgrade Guide.

    Where can I find the SAP documentation for:
    Database Upgrade guide > Upgrade to Oracle Database 11g Release 1(11.1):UNIX.
    I am able to find Upgrade to Oracle Database 11g Release 2(11.2).  We are planning to upgrade to 11g Release 1(11.1) and I am not able to find any SAP documentation for 11g Release 1(11.1):
    Does SAP support 11g Release 1(11.1)?
    We are using Business Object XIR3 and want to upgrade from Oracle 9i to Oracle 11g R1.
    Thanks
    Edited by: Sherry Barkodar on Jan 7, 2011 1:52 AM

    We are using Oracle 9i for our Business Object repository for CMS / Audit repository purpose and we want to upgrade to Oracle 11g. What is the impact of this upgrade (from Oracle 9i to Oracle 11g) on Business Object repository?
    Can you please provide some information for upgrade to Oracle 11g R2 and impact on business Object Repository?
    Bellow is information about our platform:
    -          The BOE XI 3.1 installation is on Sun Solaris.
    -          Upgrading from Oracle 9i to Oracle 11g to be used for CMS / Audit repository purpose.
    -          We want to use Oracle 11g for CMS repository and reporting purposes.
    Thanks,
    Sherry

  • Upgrade from 8i to 9i using Database Upgrade Assistant

    Hi
    I installed 9i on a server that already has an 8i database. I am trying to use the upgrade assistant in 9i to convert the database to 9i. After selecting the 8i db, I get dialog saying 'Getting databse information. Please wait..' then error 'ORA-12560: TNS:protocol adapter error'. I tried setting the 9i listener to a different port (1522) and restart listener, no luck. Any suggestions?
    Thanx

    You need to try the database forum, whose ID i think is 145
    All Oracle database upgrade stuff will be handled there
    Barry

  • Database Upgrade Agent not working for upgrading Oracle 9i DB to Oracle 10i

    Hi All,
    Presently I have completed my Oracle 10i installation on Solaris Server but I am facing an issue during the upgrade process of Oracle 9i to 10g. Whenever I try to upgrade the 9i databases to 10g using DBUA(Database Upgrade assistant) I am facing an issue that Data base not running from oracle home or pfile not found. The exact error message says:-
    The upgrade assistant failed in bringing up the database XIPCOTS. Oracle Home /opt/apps/home/oracle9i/product/releases/92/92 obtained from file /var/opt/oracle/oratab was used to connect to the database. Either the database is not running from Oracle Home /opt/apps/home/oracle9i/product/releases/92/92 or the correct Initialisation parameter file (pfile) was not found. To start the database , Oracle needs the pfile. Provide the full path name of the init file for the database XIPCOTS.
    In reality the XIPCOTS database is running fine in Oracle 9i and we can connect it using PL/SQL developer in windows.I have also provided the path of pfile but it is still not accepting the same.
    Path of pfile I provided :- /XIP/ofaroot/XIPCOTS/pfile/initXIPCOTS.ora
    Any help or suggestions would be greately appreciated.
    Our both Oracle 9i and 10g are installed on same Solaris server where solaris version is 9
    Installation path for 9i :- /opt/apps/home/oracle9i/product/releases/92/92
    Installation path for 10g :- /opt/apps/home/oracle/product/releases/10201
    Oracle 9i version :- 9.2.0.7
    Oracle 10g version :- 10.2.01
    Thanks in advance.
    Best Regards,
    Gourav Banerjee

    Can you please mention the specific folder name under oracle home where we need to put this pfile because there are two folder dbs and ds I have allready tried putting it inside dbs its not working. And my home path is correct I hope and is set for oracle 9i directories in the .oraenv file do we need to set it for oracle 10g before the DBUA upgrade.

Maybe you are looking for

  • Google maps and google help not loading anymore! help!

    Google maps and google help aren't loading since I've updated firefox. Works in Chrome no problem. Tried everything listed here: https://support.mozilla.com/en-US/kb/Error%20loading%20web%20sites, re-installed flash, cleared cache, etc... what am I m

  • Trigger two FPGA instances at same time

    I have some basic FPGA code that transmits data bits over a serial bus (RS485),  The code is written so that it waits in the first state of a state machine in a single cycle timed loop.  Upon a certain trigger, it starts reading a FIFO containing dat

  • SURVEY - How to Activate Send Questionnaire Button To Get Survey Returned

    Hello, We  have created surveys/questionnaires within SRM using SURVEY cockpit.  We have success now getting Surveys to go to the email address BUT when we hit the SEND Questionnaire button, nothing happens when trying to reply. I have located a few

  • Maintain Output type for invoice

    Hi experts , I am using a bapi "BAPI_BILLINGDOC_CREATEMULTIPLE" for inter company billing and its working fine but it is not maintaining the output type for print this invoice from vf02/vf03 ... Is there any BAPI to save the output type and device wh

  • Accessing java objects through javascript

    anybody know a how to get an image from java to javascript... example you get an image from a scanner through java... and then want to use it in javascript