Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


excerpt-include
FlexDeploy Schema Upgrade
FlexDeploy Schema Upgrade

From the downloaded distribution, extract the /database/upgrade folder.  This folder includes a number of migration*.sql files which upgrades the FlexDeploy schemas.  You will need to execute these scripts from the version of FlexDeploy you currently have, up to the latest version.  And they must be executed in that order.  For example, if you are upgrading from FlexDeploy 3.7.1 to FlexDeploy 4.0.3, you will need to execute migration3.7.1_to_4.0.0.sql,  then migration4.0.0_to_4.0.1.sql, then migration4.0.1_to_4.0.2.sql, and finally, migration4.0.2_to_4.0.3.sql

These scripts should be executed as systemsys, or another user which has privileges to create objects in other schemas, performs grants, etc.  You can load and execute these scripts using other tools such as Toad or SQL Developer, but the instructions here are for using the sqlplus client.

Info
titlesqlplus

Oracle sqlus is part of the Oracle Client, and may be executed on any host which has it installed. If the Oracle Client is not installed on the same host as where you are installing FlexDeploy, you can copy the scripts to any host which does.

To launch sqlplus:

Code Block
languagebash
export ORACLE_HOME=<your Oracle Home directory>
export ORACLE_SID=<the SID of your database>
spool migration4.0.3.out (change for each script execution so logs are preserved)
$ORACLE_HOME/bin/sqlpus (login as sys or system when prompted)
SQL> <<execute scripts as shown above>>

If running on another host other than the local database server, you must update your tnsnames file and and launch sqlplus as follows:

Code Block
languagebash
export ORACLE_HOME=<your Oracle Home directory>
export ORACLE_SID=<the SID of your database>
spool migration4.0.3.out (change for each script execution so logs are preserved)
$ORACLE_HOME/bin/sqlpus system@<tnsname>
SQL> <<execute scripts as shown above>>

For example,

Image Removed