The example upgrade #3 was a migration-style upgrade from 10.2 to 11.1.0.7. A migration is different type from an import/export upgrade. It changes a lower version database into a higher version database. If you decide you want to go back to the previous version, depending on what’s happened since you migrated, you’ll have to do take certain actions. They might be relatively simple or they could involve restoring the whole database from backup. This upgrade type is also referred to as an “in place” upgrade, as it operates on your actual current database.
The main good things about migration upgrades are that you don’t have to make room for two databases during the upgrade process, and that the process can run relatively quickly. The main not-good things about migration upgrades are that retreating back to the previous state of your database could be tricky and will take some time, and that, in my opinion, it takes more painstaking work to prepare for a migration upgrade than an import/export upgrade.
Overall, example upgrade #3 went smoothly.
Only a couple of weird things happened with this upgrade. A couple of materialized views were invalid because of some SQL that was valid in 10g but not 11g. We didn’t see the actual SQL, but we heard from the application administrator that 11g was complaining about a selected column not being uniquely identified.
Also, the STATSPACK package was invalid and wouldn’t recompile, and I ended up dropping and recreating it; Oracle tech support didn’t seem to have a better idea. If the client had cared about their STATSPACK snapshot history, I might have been in some trouble – I didn’t research if the format is the same in 10g as 11g.
Application performance was about the same as before the upgrade.
The new $ORACLE_HOME/rdbms/admin/utli* scripts are good at catching what will be an issue on upgrade run against the previous version db. I ran it for 10.1 to 10.2
It’s self documenting to explain what will be outdated in the new release.
Another great resource is the RDA tool which Oracle Support has.
It has a flag for checking for upgrade. I’ve run it with -T hcve for installs and found it much more helpful than the Metalink docs. The output is also in HTML and text.
Yeah, this is all more prep.
I find it useful to have a bunch of QC scripts I prep before hand which is a count of objects per schema and get a baseline on counts of objects, statistics, and status of objects.
Also a quick and good to have in back pocket type of thing… is to have a datapump export written to disk and then create a metadata sql file there so you can quickly refer to for any invalid objects.
Then if you needed the statspack data you could port it somewhere else and write out the reports.
If the client has an OEM Grid, then I recommend the Database Comparison Management Pack, as a key tool to use for any deltas. And it will keep the history around and save it to a baseline.