To upgrade the server and the database, you can run the setup program and select the existing virtual directory and database that contains your data. You can also manually update the database by running a script on the database server before you run the installer to upgrade the web server. 


To upgrade the Oracle database manually and then upgrade the server:

  1. From the Windows Start menu, open a Command Prompt window.
     
  2. To update the schema using the AlterSchemaObjects.sql script located in \db scripts\ORACLE\Developer\Upgrade in the software installation files, enter the following at the command prompt:
     
    sqlplus - SQL*Plus is the command line application for Oracle Database.
     
    -s - Run SQL*Plus without SQL*Plus messaging.
     
    <adminuser> - The administrative user for the instance of the Oracle server.
     
    <adminpwd>@<instance> - The password for the administrative user and the name of the instance.
     
    <scriptlocation>\<scriptname> - The path to the location of the script and the name of the script to be run.
     
    schema_owner - The schema owner name is limited to 20 characters.
     
    password - The password used for the schema owner account and the schema_app account.
      
    Statement with generic parameters:
    sqlplus -s <adminuser>/<adminpwd>@<instance> @"<script location>\<script name>" schema_owner password
     
    Example with default install parameters:
    sqlplus -s system/password@xe @"E:\Setup\db scripts\ORACLE\Developer\AlterSchemaObjects.sql" ODServer password
     
  3. Confirm the parameters and run the script.

To upgrade the Microsoft SQL database manually and then upgrade the server:

  1. From the Windows Start menu, open a Command Prompt window.
       
  2. To upgrade the database using the AlterDBObjects.sql script located in \db scripts\MSSQL\Developer\Upgrade in the software installation files, enter the following at the command prompt: 
     
    sqlcmd - The command line application for the Microsoft Sequel server.
     
    -E - Use a trusted connection to the Microsoft Sequel server. To use a login and password, use the -U <LOGINID> -P <password> parameters.
     
    -S <servername> - The name of the Microsoft SQL server.
     
    -i "<scriptfile>" - The path to the script file and the name of the script file.
     
    -v DBOwner="<owner name>" - The database account that owns the database.
       
    -v DBName="<database name>" - The name of the database to be upgraded.
     
    Statement with generic parameters:
    sqlcmd -E -S <servername> -i <scriptfile> –v DBOwner="<VALUE1>" -v DBName="<VALUE2>"
     
    Example with default install parameters:
    sqlcmd -E -S "mysqlserver" -i "E:\Setup\db scripts\MSSQL\Developer\AlterDBObjects.sql" -v DBOwner="ODServer" -v DBName="ODDevContent" 
       
  3. Confirm the parameters and run the script.
     
     
  4. Confirm the parameters and run the script.
     
  5. Close the Command Prompt window.

To upgrade the server with an Oracle database, launch the Setup.exe file located in the root folder in the software installation files. If a Security Warning appears, click Run. You are then prompted to choose the language for the Installer, and the Install Wizard appears. During installation, you will proceed through these screens in the Install Wizard.

To upgrade the server with a Microsoft SQL Server database, launch the Setup.exe file located in the root folder in the software installation files. If a Security Warning appears, click Run. You are then prompted to choose the language for the Installer, and the Install Wizard appears. During installation, you will proceed through these screens in the Install Wizard.


Table of Contents