Skip Headers
Oracle® TimesTen In-Memory Database Installation Guide
11g Release 2 (11.2.2)

E21632-12
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Master Index
Master Index
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
PDF · Mobi · ePub

3 TimesTen Upgrades

This chapter describes the process of upgrading from one release of TimesTen to a newer release of TimesTen. It includes the following topics:

Preliminary considerations

This section covers some areas to consider prior to upgrading TimesTen:

Data type considerations

This section covers data type considerations, particularly those that are relevant if you are upgrading from a version of TimesTen prior to 7.0. It discusses the following topics:

Data type compatibility

TimesTen supports a selection of Oracle Database data types in addition to the original TimesTen data types that are maintained for backward compatibility. For details on all data types, see "Type specifications" in the Oracle TimesTen In-Memory Database SQL Reference. Because some Oracle Database data types have the same names as the backward-compatible TimesTen data types, a set of aliases exists for addressing the data types. Which data types the aliases refer to depends on the TypeMode setting for the database. See "TypeMode" in the Oracle TimesTen In-Memory Database Reference for more information.

TimesTen backward-compatible data types are replication-compatible with the data types in releases of TimesTen before 7.0. However, TimesTen backward-compatible data types are not compatible with Oracle IMDB Cache. Use only Oracle Database data types with IMDB Cache. If you want to use IMDB Cache, you must convert any original TimesTen data types to the Oracle Database data types when performing a database migration with ttMigrate. See "Converting TimesTen data types to Oracle Database data types", following shortly, for details.

Oracle Database data types are not replication-compatible with releases of TimesTen before 7.0. To perform an upgrade that requires replication with a release of TimesTen from before 7.0, you must upgrade the original data types as TimesTen data types. See "Preserving TimesTen data types" for more information.

Data type considerations when upgrading from a TimesTen version before 7.0

When performing an upgrade from a release before TimesTen 7.0, you must choose whether to preserve the data types in your database as TimesTen data types, or convert them to Oracle Database data types. Your planned use for the database and your preferred upgrade method have an impact on this decision.

The following subsections cover each approach:

Converting TimesTen data types to Oracle Database data types

If you intend to use your database with Oracle IMDB Cache, you must convert your TimesTen data types to Oracle Database data types.

To convert the data types from a release before TimesTen 7.0 to Oracle Database data types, you must use the -convertTypesToOra option for ttMigrate when you restore your database as part of your upgrade procedure. For example, if you restore the database salesdata as part of an upgrade procedure, you may use the following to upgrade the data types to Oracle Database data types:

ttMigrate -r -convertTypesToOra salesdata salesdata.mig

See "TimesTen to Oracle Database data type conversions" in the Oracle TimesTen In-Memory Database Reference for more information.

Notes:

  • You cannot perform an online upgrade using replication if you are converting from TimesTen to Oracle Database data types, as data types may only replicate to like data types. (This replication restriction is not an issue when upgrading from TimesTen 7.0 or later and data types have been converted to Oracle Database data types.)

  • Because the Oracle Database and TimesTen versions of some data types behave slightly differently, you should thoroughly test any applications written for releases of TimesTen before 7.0 with the Oracle Database data types before deploying them with the new release of TimesTen.

Preserving TimesTen data types

If you intend to perform an online upgrade using replication, you must preserve your data types as TimesTen data types. See "Online upgrades with replication" for more information.

If you choose to preserve the data types in a database from a release before TimesTen 7.0 as TimesTen data types, you are not required to use any special options when restoring the database with ttMigrate. The data types from a release before TimesTen 7.0 are automatically restored as TimesTen data types.

Note:

The default TypeMode setting is 0, which indicates Oracle type mode. In Oracle type mode, a data type such as CHAR has the semantics of the Oracle Database CHAR data type rather than the TimesTen CHAR data type. To guarantee compatibility with applications written for TimesTen releases before 7.0, you should configure the DSN for your database with a TypeMode setting of 1 before restoring the database with ttMigrate as part of the upgrade procedure.

Database character set considerations

This section covers database character set considerations, including those that are relevant if you are upgrading from a version of TimesTen prior to 7.0. It discusses the following topics:

Database character set specification

TimesTen requires a database to be configured to support a specific character set when it is created. The character set for the database is specified using the database attribute DatabaseCharacterSet. The value of this attribute is used to determine which characters may be input to and output from character fields, and how character data is stored and sorted. See "Choosing a database character set" in Oracle TimesTen In-Memory Database Operations Guide and "Supported character sets" in Oracle TimesTen In-Memory Database Reference for more information.

Be aware of the following points.

  • If you plan to use the database with Oracle IMDB Cache, or you plan to use the ttLoadFromOracle built-in procedure to populate TimesTen tables from an Oracle database, you must specify a value for DatabaseCharacterSet that is the same as the character set specified for the Oracle database to which the TimesTen database connects.

  • Replication is not possible between databases with different character sets.

Character set restrictions when upgrading from a TimesTen version before 7.0

If you perform an upgrade from a release before TimesTen 7.0, consider the following important restrictions.

  • Because databases created with releases of TimesTen before 7.0 do not have a database character set specified, a special database character set, TIMESTEN8, was created, which allows replication compatibility between databases created by the current release of TimesTen and those created by earlier releases. If you plan to perform the TimesTen upgrade as an online upgrade with replication (see "Performing an online upgrade with replication"), then you must specify a DatabaseCharacterSet of TIMESTEN8 in your DSN.

  • If you use TimesTen Client/Server and intend to connect to a database in an upgraded TimesTen instance with an application linked to a Client ODBC library from a release before TimesTen 7.0, you must specify a DatabaseCharacterSet of TIMESTEN8 in your DSN to ensure compatibility. See "Performing a Client/Server online upgrade".

Note:

The TIMESTEN8 database character set is intended for use only when transitioning from a release of TimesTen before 7.0. When you no longer need your database to replicate to a pre-7.0 release of TimesTen, or to connect to a pre-7.0 client application, you should use ttMigrate to convert your database to a database character set other than TIMESTEN8. See the next section, "Database character set conversion", for details.

Database character set conversion

In some cases, you may need to change the configured database character set as part of the upgrade process. There are two particular cases in which a database character set change is required:

  • You must change your database character set from the one that you originally specified to a new one that fits your requirements more closely.

  • You have specified the database character set as TIMESTEN8 to upgrade from a release of TimesTen before 7.0 using online upgrade with replication or Client/Server. After the upgrade is complete for all databases and client applications, you should convert each database from this special transitional character set to the national character set you prefer to use for your region.

You may use ttMigrate to convert a database from any character set to any other character set by completing the following steps:

  1. Save the database to a file using ttMigrate. For example, to save the database salesdata to the file salesdata.mig, use the command.

    ttMigrate -c salesdata salesdata.mig
    
  2. Destroy the database, using ttDestroy.

    ttDestroy salesdata
    
  3. Change the value of the DSN attribute DatabaseCharacterSet for your database to the value specifying the new character set. For example, if you want your database to use the WE8ISO8859P1 character set, use the following line in your ODBCINI file.

    DatabaseCharacterSet=WE8ISO8859P1
    
  4. Load the database from the file using ttMigrate. TimesTen automatically converts the character data from the character set the file was saved with to the character set specified in the DSN.

    ttMigrate -r salesdata salesdata.mig
    

Notes:

  • It is possible that character data is lost in the conversion process if no mapping exists from one character set to the other for a given character.

  • If you are upgrading from a version prior to TimesTen 7.0 and converting from the TIMESTEN8 character set, use the ttMigrate -noCharsetConversion option. This ensures that no character values are changed when the data is loaded into the DSN using the new character set. For example:

    ttMigrate -r -noCharsetConversion salesdata salesdata.mig
    

Location of existing database files

As noted in "Considerations for locations of database files and other user files", it is strongly recommended that you not store any database files or user files under the TimesTen installation path, where they may be removed during upgrade or uninstallation operations.

If, however, you do have databases under the installation directory, you can use the following general steps to move each database elsewhere:

  1. Use the ttBackup utility to back up the database.

  2. Use the ttDestroy utility to destroy the database.

  3. Update the DSN definition for the database so that the DataStore and LogDir attributes reference a location outside of the installation path.

  4. Use the ttRestore utility to restore the database to the new location.

In Oracle TimesTen In-Memory Database Reference, see "Utilities" for information about these utilities and "Connection Attributes" for information about these attributes.

Also see "Moving to a different directory".

Access control

Access control is mandatory in TimesTen beginning with release 11.2.1. If you have been using previous versions of TimesTen without access control and you do not want to initially secure your database objects after upgrading to the current release, you can grant the ADMIN system privilege to PUBLIC using the following SQL command:

GRANT ADMIN TO PUBLIC;

If you grant the ADMIN privilege to PUBLIC, all users have unrestricted access to all database objects and are able to perform all administrative tasks, except for those tasks that must be performed as the instance administrator. Granting the ADMIN privilege to PUBLIC should be viewed as a temporary workaround, for upgrade purposes only.

Note:

This is never recommended as a long-term approach, as it results in an inherently insecure system.

Utilities used when upgrading TimesTen

TimesTen includes three utilities that may be used during upgrades.

The ttBackup and ttRestore utilities can back up and restore, respectively, a copy of the TimesTen database. This database image is only compatible between patch releases of TimesTen, and it must be backed up and restored using the same bit-level of TimesTen (32-bit or 64-bit). You may use the ttBackup and ttRestore utilities to:

The ttMigrate utility, however, exports the TimesTen database to a release-neutral format that can be used to migrate the database across major releases and between 32-bit and 64-bit versions of TimesTen. You must use the ttMigrate utility to:

Use the ttMigrate utility in the older TimesTen version to save the tables of the original database to a disk file. Use the ttMigrate utility in the newer version to restore the file into the new database.

Note:

The ttMigrate utility cannot migrate databases across different hardware platforms. For example, you cannot migrate a Windows database to a Solaris database.

On Windows, these utilities use the ODBC driver manager.

On UNIX platforms, the utilities are directly linked with the TimesTen Data Manager ODBC driver.

For a full description of the syntax and usage of these and other utilities, see "Utilities" in the Oracle TimesTen In-Memory Database Reference.

Upgrade modes

The type of upgrade you can perform—in-place, online, or offline—depends on the level of upgrade—major or minor—as well as other factors. A major upgrade is one between different major releases of TimesTen, such as from 11.2.1.x.x to 11.2.2.x.x. By contrast, TimesTen databases from different patch releases of the same major release are structurally equivalent or identical, so upgrading to a new patch release, such as from 11.2.2.4.0 to 11.2.2.5.0, is considered a minor upgrade.

The types of upgrades are described in the following subsections:

For a minor upgrade, you are generally not required to migrate your existing databases and can perform an in-place upgrade (on UNIX systems only).

For a major upgrade, you can usually perform an online upgrade, depending on your situation.

Situations that require offline upgrades are noted in that section.

Important:

There are steps you should take before performing any upgrade:
  • While preparing for the upgrade, ensure that all databases are unloaded from memory before upgrading TimesTen. For a description of the procedures for unloading a database from memory, see "Unloading a database from memory".

  • During the installation of any new release, you should disconnect your application. The TimesTen daemon process from the prior release is stopped during uninstallation, effectively disconnecting all applications that were still connected to any databases in the instance.

In-place upgrades

In-place upgrades are available on UNIX systems for moving to a new patch release of TimesTen, such as from release 11.2.2.4.0 to release 11.2.2.5.0. There are also equivalent uninstallation and installation steps you can perform on Windows systems.

To perform an in-place upgrade, use the UNIX installer option to upgrade an existing instance. The uninstallation of the old version and installation of the new version take place in a single operation. New software libraries and binaries are installed in the same location as before. If you choose default responses, existing databases will be preserved (assuming they were not located under the install_dir directory) without the necessity of using the TimesTen backup and migration utilities.

During the in-place upgrade, all applications must disconnect from databases in the TimesTen instance being upgraded.

On Windows systems, you can perform equivalent steps to move between patch releases by first uninstalling TimesTen, keeping your DSNs when prompted, then installing the new version. As with an in-place upgrade on UNIX, this does not require use of the backup and migration utilities.

See "Performing an in-place upgrade".

Important:

Before upgrading, ensure that you do not have any databases or important files under the TimesTen installation directory. See "Considerations for locations of database files and other user files" and "Location of existing database files" for related information.

Offline upgrades

While an offline upgrade is in progress, databases are not available to applications. Offline upgrades usually require enough disk space for two copies of each database in the TimesTen instance being upgraded.

Offline upgrades are used to do the following:

  • Move to a new major release of TimesTen.

    Most major TimesTen upgrades do not require an offline upgrade, but some situations do (such as for active standby pairs with cache groups or managed by Oracle Clusterware, as discussed later in this chapter).

  • Move to a different directory or computer.

  • Reduce database size.

  • Move between 32-bit and 64-bit databases.

Offline upgrades require all applications to disconnect from TimesTen during the upgrade procedure. Databases must also be unloaded from shared memory. Offline upgrades require you to use TimesTen's ttMigrate or ttBackup utilities. (See "ttMigrate" and "ttBackup" in Oracle TimesTen In-Memory Database Reference.)

See "Performing an offline upgrade".

Online upgrades with replication

When upgrading to a new major release of TimesTen, you may have a mission-critical database that must remain continuously available to your applications. You can use TimesTen replication to keep two copies of a database synchronized, even when the databases are from different releases of TimesTen, allowing your applications to stay connected to one copy of the database while the TimesTen instance for the other database is being upgraded. When the upgrade is finished, any updates that have been made on the active database are transmitted immediately to the database in the upgraded TimesTen instance, and your applications can then be switched with no data loss and no downtime. For more information, see "Performing an online upgrade with replication".

The online upgrade process supports only updates to user tables during the upgrade. Data definition changes such as CREATE TABLE or CREATE INDEX are not replicated. In addition, all tables to be replicated must have a PRIMARY KEY or a unique index on non-nullable columns.

Because two copies of the database (or two copies of each database, if there are more than one) are required during the upgrade, you must have available twice the memory and disk space normally required, if performing the upgrade on a single system.

Notes:

  • Online major upgrades of active standby pairs with cache groups or managed by Oracle Clusterware are not supported.

  • Replication is not supported between 32-bit and 64-bit databases. Also, tables migrated using the ttMigrate -inline command should not be replicated with tables that do not have inline columns, as inline columns cannot be replicated with not inline columns.

Online upgrades with Client/Server

If you are upgrading a TimesTen Client/Server installation to a new major release, you can minimize downtime by performing a Client/Server online upgrade. During this process, TimesTen clients from the previous release are able to continue to communicate with a database in a TimesTen instance that has been upgraded to the new release. See "Performing a Client/Server online upgrade".

The Client/Server online upgrade process minimizes, but does not eliminate, the interruption of client application access to the database in the TimesTen instance being upgraded. To maintain nearly continuous availability of a database to all clients, you may use the approach discussed in the preceding section, "Online upgrades with replication". This procedure keeps an identical copy of the database available to the old release of TimesTen Server, while you perform the upgrade. Once the original database is available to the new release of TimesTen Server, you may stop the old release and start the new release, listening on the same port. The only interruption in availability using this method is the very brief period after the old server is stopped and before the new server is started.

Performing an in-place upgrade

You can perform an in-place upgrade of a TimesTen instance on a UNIX system if you are staying within the same major TimesTen release, such as upgrading from one 11.2.2.x.x version to a higher 11.2.2.x.x version. This does not require migrating the databases.

On Windows systems, there is no installer option for such an upgrade. Instead, even when just moving between patch releases, you must perform a separate uninstallation and installation of TimesTen. As with an in-place upgrade on UNIX, migrating the databases is not required.

Prior to the upgrade, for each database in the instance, all applications must disconnect from the database and the database must be unloaded from shared memory.

The following subsections discuss the process for performing an in-place upgrade or Windows equivalent:

Unloading a database from memory

A TimesTen database remains loaded in shared memory as long as any applications or TimesTen agents, such as the cache agent or replication agent, are connected to it. A database may also be kept in shared memory if the RAM policy of the database has been modified using the ttAdmin utility, even when no applications or agents are connected. (See "ttAdmin" in Oracle TimesTen In-Memory Database Reference.)

Use the following steps to unload a database from memory in a TimesTen instance being upgraded. All steps must be completed for each database in the TimesTen instance.

  1. Disconnect all applications from the database.

  2. If the replication agent is running on the database, set the replication state to pause and stop the replication agent. This example references an active standby pair, activedb and standbydb, where activedb belongs to the TimesTen instance being upgraded. The example sets the replication state from activedb to standbydb to pause, then stops the replication agent on activedb. Assume standbydb does not belong to the TimesTen instance being upgraded.

    ttRepAdmin -receiver -name activedb -state pause standbydb
    ttAdmin -repStop activedb
    
  3. If the cache agent is running on the database, stop the cache agent. This example references a database cachedb that uses IMDB Cache and belongs to the TimesTen instance being upgraded. (The example does not consider replication.)

    ttAdmin -cacheStop cachedb
    
  4. If the RAM policy is set to manual, unload the database from memory using ttAdmin. This example references a database upgradedb that belongs to the TimesTen instance being upgraded (and does not consider replication or cache):

    ttAdmin -ramUnload upgradedb
    

    If the RAM policy is set to always, change it to manual, then unload the database from memory. For example:

    ttAdmin -ramPolicy manual -ramUnload upgradedb
    

    If the RAM policy is inUse and a grace period is set, set the grace period to 0 or wait for the grace period to elapse. For example:

    ttAdmin -ramGrace 0 upgradedb
    
  5. Use the ttStatus utility to verify that the databases belonging to the TimesTen instance being upgraded have been unloaded from memory. (See "ttStatus" in Oracle TimesTen In-Memory Database Reference.)

Also see "Reloading a database into memory", following shortly.

Note:

The activedb, cachedb and upgradedb databases, for example, can be the same database. A TimesTen database can have both replication and cache configured, as well as a RAM policy other than manual.

Performing the upgrade

To perform an in-place upgrade on a UNIX system, use the TimesTen installer option to upgrade an existing instance (not install a new instance). UNIX installer options are covered in "Installing TimesTen".

The uninstallation of the old version and installation of the new version take place in a single process. New software libraries and binaries are installed in the same location as before. You are prompted whether to remove files in install_dir/info and install_dir/network/admin/samples. Presuming you choose the default "no" responses, existing databases will be preserved (assuming they were not located under the install_dir directory) without the necessity of using the TimesTen backup and migration utilities.

On Windows systems, there is no installer option for such an upgrade. Instead, when moving between patch releases, you must perform an uninstallation of TimesTen followed by an installation of the new version. Uninstallation on Windows is covered in "Uninstalling TimesTen on Windows systems". Presuming you choose to save your DSNs while uninstalling, existing databases will be preserved (assuming they were not located under the install_dir directory) without the necessity of using the TimesTen backup and migration utilities. Installation on Windows is covered in "Installing TimesTen".

Important:

Before upgrading, ensure that you do not have any databases or important files under the TimesTen installation directory. See "Considerations for locations of database files and other user files" and "Location of existing database files" for related information.

Reloading a database into memory

After unloading the databases from memory (as shown in "Unloading a database from memory") and upgrading the TimesTen instance, use commands such as the following to reload a database into memory. (These examples are independent of each other.) Such steps must be performed, as applicable, for each database in the instance that was upgraded.

To restart replication (assuming activedb of an active standby pair was in the TimesTen instance being upgraded):

ttRepAdmin -receiver -name activedb -state start standbydb
ttAdmin -repStart activedb

To restart IMDB Cache (assuming cachedb uses cache and was in the TimesTen instance being upgraded):

ttAdmin -cacheStart cachedb

To reload the database into memory (assuming RAM policy was set to manual for the database upgradedb, which was in the TimesTen instance being upgraded):

ttAdmin -ramLoad upgradedb

If you changed the RAM policy from always to manual when you unloaded the database from memory, change it back to always. For example:

ttAdmin -ramPolicy always upgradedb

If the RAM policy was inUse before you unloaded the database from memory and you changed the grace period to 0, change it back to its original setting. For example:

ttAdmin -ramPolicy inUse -ramGrace 300 upgradedb

Performing an offline upgrade

You can do an offline upgrade by exporting any database into an external file and then importing the database with the desired changes. These update procedures require that all applications be disconnected from the database and that the database be unloaded from shared memory. For applications that require continuous availability, see "Performing an online upgrade with replication".

Note:

If the database in a TimesTen instance to be upgraded is replicated, you must use ttMigrate to move the database between releases.

For simple upgrades that do not require any changes to the size or structure of the database, such as moving between patch releases, you can use the ttBackup and ttRestore utilities. For upgrades that require structural changes to the database, such as major release upgrades, you must use the ttMigrate utility. The ttMigrate utility exports the database in a release-neutral format that is more flexible, while the ttBackup utility exports an image copy of the database that is only compatible across patch releases. The ttBackup utility may be used to move the database to a different computer or directory. The ttMigrate utility must be used if you want to do the following:

The general steps in an offline upgrade include:

  1. Disconnect all applications from the database and unload the database from memory. For more information, see "Unloading a database from memory".

  2. Use either ttMigrate with the -c and -relaxedUpgrade options or ttBackup to back up the database.

  3. Destroy the old database, as applicable. This step is required if the new database will be in the same location as the old database, and is noted for applicable scenarios in the subsections that follow.

  4. Uninstall the old release and install the new release of TimesTen. For more information, see Chapter 1, "TimesTen Installation".

  5. Use either ttMigrate with the -r and -relaxedUpgrade options or ttRestore to restore the backed up database to the new TimesTen release.

  6. Reconnect applications to the database after the TimesTen upgrade.

Note:

After ttMigrate has been used, all autorefresh cache groups in a destination database that is not part of an active standby pair have AUTOREFRESH STATE set to OFF, no matter how it was set on the source database. Reset AUTOREFRESH STATE to ON by using the ALTER CACHE GROUP statement.

For additional information about your particular scenario, see the following subsections as applicable:

Moving to a different directory

The TimesTen daemon identifies a database by the full path name of the database checkpoint files. To move a TimesTen database to a different directory, back up the database using the ttBackup utility, create a new DSN definition that specifies the new database path name, then restore the database into its new location using the ttRestore utility. When you have verified that the database functions properly in the new location, free up the disk space by using ttDestroy to remove the old database.

For example, to move a database from /old/SalesData/sales with a database name SalesData to /new/SalesData/sales with database name NewSalesData, using the /tmp/dump directory for temporary storage, use the following commands:

  1. mkdir /tmp/dump

  2. ttBackup -dir /tmp/dump -fname salesdata SalesData

  3. Create a DSN definition for the NewSalesData database and specify the new database path: /new/SalesData/sales/NewSalesData.

  4. ttRestore -dir /tmp/dump -fname salesdata NewSalesData

    (Verify that NewSalesData is operational.)

  5. rm -r /tmp/dump

  6. ttDestroy /old/SalesData/sales/SalesData

  7. Remove the DSN definition for the SalesData database.

This example is for UNIX systems. Do the equivalent on a Windows system.

Note:

You must reconfigure replication if the moved database has been configured to replicate.

Moving to a different computer

You can also use the ttBackup and ttRestore utilities to move a database between two computers that have the same CPU architecture and are running the same operating system.

Note:

Before moving a replicated database to another computer, you should be experienced with TimesTen replication. It is advisable to call TimesTen customer support for help with this procedure.

To copy a database from one system to another with the same CPU architecture and operating system:

  1. Back up the database on the original system using ttBackup.

  2. Move the backup to the new system.

  3. Reconfigure the replication scheme on any databases that replicate to the moved database to specify the new host computer. (See "Reversing the roles of the master databases" in Oracle TimesTen In-Memory Database Replication Guide for information relevant in specifying a host in a replication scheme.)

  4. Restore the backup using ttRestore.

Following is an example to move a database /ds/Sales/Data/salesdata on the source system to a database /data/Sales/View/salesview on the destination system. The example uses the -o flag of ttBackup to use standard output for the backup. Using the -o flag, the backup is stored in a single file, which is easily copied over the network to the other system. Once you have copied the database to the other system, you must create a DSN for access to the new database copy.

This example is for UNIX systems. Do the equivalent on a Windows system.

Step On the source system On the destination system
1. ttBackup -o SalesData > /tmp/salesbackup  
2. ftp /tmp/salesbackup to the destination system as /tmp/salesbackup

Note: Use the ftp command in binary mode.

 
3.   ttRestore -i SalesView < /tmp/salesbackup
4.   rm /tmp/salesbackup
5. rm /tmp/salesbackup  

Reducing database size

Once a database has been defined with a particular size for the permanent partition (indicated by the PermSize DSN attribute), it cannot be loaded at a smaller size, even if tables or rows are deleted. A copy of the database made with ttBackup also has the permanent partition size of the database embedded in it.

To reduce the allocated size of the permanent partition of a database, save a copy using the ttMigrate utility with the -relaxedUpgrade option. Then re-create the database with a smaller permanent partition size and restore the data.

Note:

The permanent partition size of a database cannot be reduced below the size that is actually required by the data currently stored in the database. This value can be determined by querying the perm_in_use_size column of the table sys.monitor.

Perform these steps to reduce the permanent partition size of a database:

  1. Back up the old database, using the ttMigrate -c and -relaxedUpgrade options.

  2. Create a new DSN definition for the new copy of the database with a smaller PermSize value.

  3. Restore the backup, using the ttMigrate -r and -relaxedUpgrade options.

Note:

To modify the original DSN rather than create a new one in step 2, then you must destroy the original database files using the ttDestroy utility before restoring from the backup.

Here are steps to reduce the allocated size of a database from 400 MB to 100 MB. The database is in /ds/Sales/Data and has the DSN salesdata.

  1. ttMigrate -c -relaxedUpgrade salesdata /tmp/salesbackup

  2. ttDestroy salesdata

  3. Modify the DSN salesdata to have a size of 100 MB.

  4. ttMigrate -r -relaxedUpgrade salesdata /tmp/salesbackup

Note:

The temporary partition size of a database may be changed by modifying the TempSize attribute of the DSN, unloading the database from memory, and then reconnecting to it. See "Unloading a database from memory" for the steps to unload a database from memory.

Moving between 32-bit and 64-bit databases

The internal format of a 32-bit TimesTen database differs from that of a 64-bit database. On UNIX systems, you can use the following procedure to convert a 32-bit database to a 64-bit database:

  1. From the 64-bit system, use ttMigrateCS to connect in client/server mode to the 32-bit database and create a data file for the 32-bit database on the 64-bit system. Use the -relaxedUpgrade option. (The ttMigrateCS utility is the client/server version of ttMigrate.)

  2. On the 64-bit system, create a DSN for the 64-bit database. See "Creating a Data Manager DSN on UNIX" or "Creating a Data Manager DSN on Windows" in Oracle TimesTen In-Memory Database Operations Guide.

  3. On the 64-bit system, import the file created in step 1 into the 64-bit database using the ttMigrate utility, again with the -relaxedUpgrade option.

For example, if the 32-bit database is salesdata1 and the 64-bit database is salesdata2 (with all steps performed on the 64-bit system):

  1. ttMigrateCS -c -relaxedUpgrade salesdata1 salesdata.dat

  2. Create a DSN for salesdata2.

  3. ttMigrate -r -relaxedUpgrade salesdata2 salesdata.dat

The ttMigrateCS version of ttMigrate is UNIX-only. On Windows systems, you can do the equivalent by using ttMigrate to connect to the 32-bit database from the 64-bit system through a defined TimesTen client DSN.

Note:

TimesTen does not support replication between a 32-bit database and a 64-bit database.

Moving to a different major release of TimesTen

You can have multiple TimesTen major releases installed on a system at the same time. However, TimesTen databases created by one major release cannot be accessed directly by applications of a different major release. To migrate data between TimesTen major releases, for example from TimesTen 7.0 to 11.2.2, you must export the data using the ttMigrate utility from the old release and import it using the ttMigrate utility from the new release. The procedure for this upgrade is similar to the steps outlined in "Moving between 32-bit and 64-bit databases".

If you are upgrading TimesTen instances that have two or more databases that are replicating to each other, you must perform a few extra steps to ensure that replication continues to operate during and after the upgrades. For example, to migrate two replicating databases, master1 on host computer masterhost and subscriber1 on host computer subscriberhost, from TimesTen release 7.0 to TimesTen release 11.2.2, perform the steps that follow.

Note:

TimesTen 11.2.1 introduced the cache grid feature. By default, this feature is enabled and requires additional configuration before cache groups can be created on a database. If you are upgrading a database containing cache groups from a release preceding 11.2.1, you should set the CacheGridEnable attribute to 0 in each DSN definition before beginning. For more information, see "Create a cache grid" in Oracle In-Memory Database Cache User's Guide.
  1. Configure the replication scheme on both databases to use static TCP/IP ports for replication. This is necessary because the intermediate result of this procedure is that replication occurs between two different releases of TimesTen. Each release does not necessarily know how to find the main daemon of the other to have the replication ports assigned dynamically. See "Port assignments" in the Oracle TimesTen In-Memory Database Replication Guide for more information.

  2. On the computer masterhost, use the ttAdmin utility of the 7.0 release to stop the replication daemon on the database:

    ttAdmin -repStop master1
    
  3. Next, use the ttMigrate utility of the 7.0 release with the -c option to back up database master1 to a binary file:

    ttMigrate -c master1 master1.bak
    
  4. Use the ttDestroy utility of the 7.0 release to destroy database master1, where the database files are located in the directory data_store_path:

    ttDestroy /data_store_path/master1
    
  5. Use the ttMigrate utility of the 11.2.2 release with the -r option to restore database master1 from the binary file. Restoring the database automatically upgrades it from release 7.0 to release 11.2.2. If you are restoring a very large database, you should use the -C (capital "C") option to tell ttMigrate to perform a checkpoint operation on the database periodically. This saves time if the restore fails at some point before the operation has been completed. For more information, see "Checkpoint operations" in the Oracle TimesTen In-Memory Database Operations Guide.

    ttMigrate -r -C 20 master1 master1.bak
    
  6. Use the ttAdmin utility of the 11.2.2 release to start the replication daemon:

    ttAdmin -repStart master1
    

    Replication is now occurring between the database master1 on release 11.2.2 and the database subscriber1 on release 7.0.

    Now upgrade the TimesTen instance for database subscriber1 from release 7.0 to release 11.2.2. Perform the steps that follow.

  7. On the computer subscriberhost, use the ttAdmin utility of the 7.0 release to stop the replication daemon:

    ttAdmin -repStop subscriber1
    
  8. Use the ttDestroy utility of the 7.0 release to destroy database subscriber1, where the database files are located in the directory data_store_path:

    ttDestroy data_store_path/subscriber1
    
  9. If you are upgrading from a TimesTen version prior to 11.2.1, when access control was introduced, you must create a user with ADMIN privileges to duplicate a database using replication. (If you are upgrading from 11.2.1 or higher, you can presumably use an ADMIN user that was migrated over by ttMigrate.) For example, to create the user pat with the password patpwd on the standby master database:

    CREATE USER pat IDENTIFIED BY patpwd;
    GRANT ADMIN TO pat;
    
  10. Use the ttRepAdmin utility of the 11.2.2 release with the -duplicate option to duplicate database subscriber1 from database master1 using replication.

    ttRepAdmin -duplicate -from master1 -host masterhost -uid pat -pwd patpwd
     -setMasterRepStart subscriber1
    
  11. Use the ttAdmin utility of the 11.2.2 release to start the replication daemon:

    ttAdmin -repStart subscriber1
    

The upgrade is now complete and the databases are replicating to each other.

For additional information about particular scenarios where an offline upgrade is required for a major TimesTen upgrade, see "Offline major upgrades for an active standby pair with cache groups" and "Performing an offline TimesTen upgrade when using Oracle Clusterware".

Performing an online upgrade with replication

"Performing an offline upgrade" discussed how to perform various maintenance operations on TimesTen databases that require that all applications be stopped. This section describes how to use the TimesTen replication feature to perform online upgrades for applications that require continuous data availability.

Typically, applications that require high availability of their data use TimesTen replication to keep at least one extra copy of their databases up to date. An online upgrade works by keeping one of these two copies available to the application while the other is being upgraded. The procedures described in this section assume that you have a bidirectional replication scheme configured and running for two databases, as described in "Unidirectional or bidirectional replication" Oracle TimesTen In-Memory Database Replication Guide.

Be aware of the following:

The following sections describe how to perform an online upgrade with replication.

Procedural overview

Upgrading a database from an older TimesTen release to a newer release is performed by disconnecting all applications from one of two replicated copies of a database, making a backup of the database with the ttMigrate utility from the older release, loading the backup into a newer release database using the ttMigrate utility from the newer release, and then reconnecting all applications to the database in the upgraded TimesTen instance.

The general steps in an online upgrade include:

  1. Disconnect all applications from the database in the TimesTen instance being upgraded.

  2. Shut down replication in the TimesTen instance being upgraded.

  3. Back up the database residing in the TimesTen instance being upgraded using the older release's ttMigrate with the -c option.

  4. Install the newer release of TimesTen on the system being upgraded.

  5. Restore the replicated database in the upgraded TimesTen instance using the newer release's ttMigrate with the -r option.

  6. Restart replication on the upgraded TimesTen instance.

  7. Reconnect all applications to the database in the upgraded TimesTen instance.

Note:

After ttMigrate has been used, all autorefresh cache groups in post-upgrade database that is not part of an active standby pair have AUTOREFRESH STATE set to OFF, no matter how it was set on the database before the upgrade. Reset AUTOREFRESH STATE to ON by using the ALTER CACHE GROUP statement.

To maintain continuous availability, applications continue to run on one copy of the database while the upgrade is performed on the TimesTen instance of the disconnected copy of the database. TimesTen replication retains updates made to the active copy of the database during the upgrade period, and then transfers and applies the updates to the post-upgrade database when replication is restarted. When the replicated updates have been completely applied, the applications may be reconnected to the post-upgrade database.

Limitations

Online upgrades can be performed only with databases for which all the user tables meet the replication requirements. All the user tables must contain either a PRIMARY KEY declaration or have a unique index declared over non-nullable columns.

Requirements

To perform online upgrades with replication, replication must be configured to use static ports. See "Port assignments" in Oracle TimesTen In-Memory Database Replication Guide.

If you are performing an online upgrade on a single system where a bidirectional replication configuration does not exist, you must ensure that enough memory and disk space are available to support two copies of the database where the upgrade is being performed. Both the original database and its copy remain active for the duration of the upgrade. To maintain the performance of your production applications, you may want to create the copy of the database on a second system.

Additional disk space must be allocated to hold a backup copy of the database made by the ttMigrate utility. The size of the backup copy is typically about the same as the in-use size of the database. This size may be determined by querying the sys.monitor table, using ttIsql:

Command> SELECT perm_in_use_size FROM sys.monitor;

Upgrade steps

The following timeline illustrates the steps for performing an online upgrade while replication is running. The upgrade system is the system on which the database upgrade is being performed, and the active system is the system containing the database to which the application remains connected.

Note:

The following steps are for a standard upgrade. Upgrading from a database in TimesTen 11.2.1 that has the connection attribute ReplicationApplyOrdering set to 0, or from a database in TimesTen 11.2.1 or TimesTen 11.2.2 that has ReplicationParallelism set to <2, requires that you re-create the database, even if the version is the same or only the minor version has changed.
Step Upgrade system Active system
1. Configure replication to replicate to the active system using static ports. Configure replication to replicate to the upgrade system using static ports.
2.   Connect all applications to the active database, if they are not connected.
3. Disconnect all applications from the upgrade database.  
4.   Set replication to the upgrade system to the PAUSE state.
5. Wait for updates to propagate to the active system.  
6. Stop replication.  
7. Back up the database with ttMigrate -c.  
8. Stop the TimesTen daemon for the old release of TimesTen.  
9. Install the new release of TimesTen.  
10. Create a DSN for the post-upgrade database for the new TimesTen release, using the ODBC Data Source Administrator on Windows or the .odbc.ini file on UNIX. Adjust parallelism options for the DSN.  
11. Restore the database from the backup with ttMigrate -r.  
12. Clear the replication bookmark and logs using ttRepAdmin -receiver -reset and by setting replication to the active system to the stop and then the start state.  
13. Start replication.  
14.   Set replication to the upgrade system to the start state, ensuring that the accumulated updates propagate once replication is restarted.
15.   Start replication.
16.   Wait for all of the updates to propagate to the upgrade system.
17. Reconnect all applications to the post-upgrade database.  

After the above procedures are carried out on the upgrade system, the active system can be upgraded using the same steps.

Online upgrade example

This section describes how to perform an online upgrade in a scenario with two bidirectionally replicated TimesTen databases, using a specific example.

Note:

TimesTen 11.2.1 introduced the cache grid feature. By default, this feature is enabled, and requires additional configuration before cache groups may be created on a database. If you are upgrading an environment containing cache groups from a release preceding 11.2.1, you should set the CacheGridEnable attribute to 0 in each DSN definition before beginning. For more information, see "Create a cache grid" in Oracle In-Memory Database Cache User's Guide.

In the following discussion, the two TimesTen systems are referred to as the upgrade system, on which the TimesTen instance (with its databases) is being upgraded, and the active system, which remains operational and connected to the application for the duration of the upgrade. After this procedure is completed, the same steps can be followed to upgrade the active system. However, you may prefer to delay conversion of the active system to first test the upgraded TimesTen instance.

The upgrade system in this example consists of the database upgrade on the server upgradehost. The active system consists of the database active on the server activehost.

Follow the steps listed here in the order they are presented. The online upgrade procedures are as follows.

Step Upgrade system Active system
1. Use ttIsql to alter the replication scheme repscheme, setting static replication port numbers so that the databases can communicate across releases:

Command> call ttRepStop;

Command> ALTER REPLICATION repscheme ALTER STORE upgrade ON upgradehost SET PORT 40000 ALTER STORE active ON activehost SET PORT 40001;

Command> call ttRepStart;

Use ttIsql to alter the replication scheme repscheme, setting static replication port numbers so that the databases can communicate across releases:

Command> call ttRepStop;

Command> ALTER REPLICATION repscheme ALTER STORE upgrade ON upgradehost SET PORT 40000 ALTER STORE active ON activehost SET PORT 40001;

Command> call ttRepStart;

2. Disconnect all production applications connected to the database. Any workload being run on the upgrade system must start running on the active system instead. Use the ttRepAdmin utility to pause replication from the database active to the database upgrade:
ttRepAdmin -receiver -name upgrade
 -state pause active

This command temporarily stops the replication of updates from the database active to the database upgrade, but it retains any updates made to active in the database transaction log files. The updates made to active during the upgrade procedure are applied later, when upgrade is brought back up. For details on setting the replication state, see "Setting the replication state of subscribers" in Oracle TimesTen In-Memory Database Replication Guide.

3. Wait for all replication updates to be sent to the database active. You can verify that all updates have been sent by applying a recognizable update to a table reserved for that purpose on the database upgrade. When the update appears in the database active, you know that all previous updates have been sent.  
4. Stop the replication agent with ttAdmin:
ttAdmin -repStop upgrade

From this point on, no updates are sent to the database active.

Stop the replication agent with ttAdmin:
ttAdmin -repStop active

From this point on, no updates are sent to the database upgrade.

For details on starting and stopping replication agents, see "Starting and stopping the replication agents" in Oracle TimesTen In-Memory Database Replication Guide.

5. Use ttRepAdmin to stop replication from the database upgrade to the database active:
ttRepAdmin -receiver -name active
  -state stop upgrade

This step prevents active from accumulating updates to send to upgrade and resets some of the replication bookmarks.

 
6. Use ttMigrate to back up the database upgrade. If the database is very large, this step could take a significant amount of time. If sufficient disk space is free on the /backup file system, use the following ttMigrate command:
ttMigrate -c upgrade /backup/upgrade.dat
 
7. If the ttMigrate command is successful, destroy the database upgrade.

To destroy a permanent database (Temporary=0), use ttDestroy:

ttDestroy upgrade

To destroy a temporary database (Temporary=1), use ttAdmin:

ttAdmin -ramUnload upgrade
Restart the replication agent on the database active:
ttAdmin -repStart active
8. Install the new release of TimesTen. Resume replication from active to upgrade by setting the replication state to start:
ttRepAdmin -receiver -name upgrade
 -start start active
9. Use ttMigrate to load the backup created in step 6. into the database upgrade for the new release of TimesTen:
ttMigrate -r upgrade /backup/upgrade.dat

If the database is temporary (Temporary=1), first use ttAdmin -ramLoad:

ttAdmin -ramLoad upgrade

Note: In this step, you must use the ttMigrate utility supplied with the new release of TimesTen to which you are upgrading.

 
10. Use ttRepAdmin to clear the replication bookmark and logs by resetting the receiver state for the database active and then setting replication to the stop state and then the start state:
ttRepAdmin -receiver -name active
   -reset upgrade
ttRepAdmin -receiver -name active
   -state stop upgrade
sleep 10
ttRepAdmin -receiver -name active
   -state start upgrade
sleep 10

Note: The sleep command is to ensure that each state takes effect, as the state change can take up to 10 seconds depending on the resources and operating system of the computer.

 
11. Use ttAdmin to start the replication agent on the new database upgrade and to begin sending updates to the database active:
ttAdmin -repStart upgrade
 
12. Verify that the database upgrade is receiving updates from the database active. You can verify that updates are sent by applying a recognizable update to a table reserved for that purpose in the database active. When the update appears in upgrade, you know that replication is operational. If the applications are still running on the database active, let them continue until the database upgrade has been successfully migrated and you have verified that the updates are being replicated correctly from active to upgrade.
13.   Once you are sure that updates are replicated correctly, you can disconnect all of the applications from the database active and reconnect them to the database upgrade. After verifying that the last of the updates from active are replicated to upgrade, the TimesTen instance with active is ready to be upgraded.

Note: You may choose to delay upgrading the TimesTen instance with active to the new TimesTen release until sufficient testing has been performed with the database upgrade in the new TimesTen release.


Performing an upgrade with active standby pair replication

Active standby pair replication provides high availability of your data to your applications. With active standby pairs, unless you want to perform an upgrade to a new major release of TimesTen in a configuration that also uses cache groups, you can perform an online upgrade to maintain continuous availability of your data during an upgrade of TimesTen. This section describes the following procedures:

Note:

Only asynchronous writethrough or read-only cache groups are supported with active standby pairs.

Online upgrades for an active standby pair with no cache groups

This section includes the following topics for online upgrades in a scenario with active standby pairs and no cache groups:

Also see "Performing an online upgrade with replication" for an overview, limitations, and requirements.

Online minor upgrade for standby master and subscriber

To perform an online minor upgrade to a new TimesTen patch release for the standby master database and subscriber databases, complete the following tasks on each database. For this procedure, assume there are no cache groups.

  1. Stop the replication agent on the database using the ttRepStop built-in procedure or the ttAdmin utility. For example, to stop the replication agent for standby database master2, you may use:

    ttAdmin -repStop master2
    
  2. Install the new TimesTen patch release. See "Performing an in-place upgrade".

  3. Restart the replication agent using the ttRepStart built-in procedure or the ttAdmin utility:

    ttAdmin -repStart master2
    

Online minor upgrade for active master

To perform an online minor upgrade to a new TimesTen patch release for the active master database, you must first reverse the roles of the active and standby master databases, then perform an in-place upgrade. For this procedure, assume there are no cache groups.

  1. Pause any applications that are generating updates on the active master database.

  2. Execute the ttRepSubscriberWait built-in procedure on the active master database, using the DSN and host of the standby master database. For example, to ensure that all transactions are replicated to the standby master master2 on the host master2host:

    call ttRepSubscriberWait( null, null, 'master2', 'master2host', 120 );
    
  3. Stop the replication agent on the current active master database using the ttRepStop built-in procedure or the ttAdmin utility. For example, to stop the replication agent for the active master database master1:

    ttAdmin -repStop master1
    
  4. Execute the ttRepDeactivate build-in procedure on the current active master database. This puts the database in the IDLE state:

    call ttRepDeactivate;
    
  5. On the standby master database, set the database to the ACTIVE state using the ttRepStateSet built-in procedure. This database becomes the active master in the active standby pair:

    call ttRepStateSet( 'ACTIVE' );
    
  6. Resume any applications that were paused in step 1, connecting them to the database that is now acting as the active master (in this example, database master2).

    Note:

    At this point, replication will not yet occur from the new active database to subscriber databases. Replication will resume after the host for the new standby database has been upgraded and the replication agent of the new standby database is running.
  7. Upgrade the TimesTen instance of the former active master database, which is now the standby master database. See "Performing an in-place upgrade".

  8. Restart replication on the database in the upgraded TimesTen instance, using the ttRepStart built-in procedure or the ttAdmin utility:

    ttAdmin -repStart master2
    
  9. To make the database in the newly upgraded TimesTen instance the active master database again, see "Reversing the roles of the active and standby databases" in Oracle TimesTen In-Memory Database Replication Guide.

Online major upgrade for active standby pair

When you perform an online upgrade for an active standby pair to a new major release of TimesTen, you must explicitly specify the TCP/IP port for each database. If your active standby pair replication scheme is not configured with a PORT attribute for each database, you must use the following steps to prepare for the upgrade. For this procedure, assume there are no cache groups. (Online major upgrades of active standby pairs with cache groups are not supported.)

  1. Stop the replication agent on every database using the call ttRepStop built-in procedure or the ttAdmin utility. For example, to stop the replication agent on the database master1:

    ttAdmin -repStop master1
    
  2. On the active master database, use the ALTER ACTIVE STANDBY PAIR statement to specify a PORT attribute for every database in the active standby pair. For example, to set a PORT attribute for the databases master1 on the host master1host, master2 on the host master2host, and subscriber1 on the host subscriber1host:

    ALTER ACTIVE STANDBY PAIR
     ALTER STORE master1 ON "master1host" SET PORT 30000
     ALTER STORE master2 ON "master2host" SET PORT 30001
     ALTER STORE subscriber1 ON "subscriber1host" SET PORT 30002;
    
  3. Destroy the standby master database and all of the subscribers using the ttDestroy utility. For example, to destroy the database subscriber1:

    ttDestroy subscriber1
    
  4. Follow the normal procedure to start an active standby pair and duplicate the standby and subscriber databases from the active master. See "Setting up an active standby pair with no cache groups" in Oracle TimesTen In-Memory Database Replication Guide.

To upgrade the TimesTen instances of the active standby pair, first upgrade the instance of the standby master. While this node is being upgraded, there is no standby master database, so updates on the active master database are propagated directly to the subscriber databases. Following the upgrade of the standby node, the active and standby roles are switched and the new standby node is created from the new active node. Finally, the subscriber nodes are upgraded.

  1. Instruct the active master database to stop replicating updates to the standby master by executing the ttRepStateSave built-in procedure on the active master database. For example, to stop replication to the standby master database master2 on host master2host:

    call ttRepStateSave( 'FAILED', 'master2', 'master2host' );
    
  2. Stop the replication agent on the standby master database using the ttRepStop built-in procedure or the ttAdmin utility. For example, to stop the replication agent for the standby master database master2:

    ttAdmin -repStop master2
    
  3. Use the ttMigrate utility to back up the standby master database to a binary file.

    ttMigrate -c master2 master2.bak
    

    For information about ttMigrate, refer to Oracle TimesTen In-Memory Database Reference

  4. Destroy the standby master database, using the ttDestroy utility.

    ttDestroy master2
    
  5. Uninstall the old version and install the new version of TimesTen on the standby master host, master2host. See "Installing TimesTen on UNIX systems" or "Installing TimesTen on Windows systems".

  6. In the new TimesTen instance on master2host, use ttMigrate to restore the standby master database from the binary file created earlier. (This example performs a checkpoint operation after every 20 megabytes of data has been restored.)

    ttMigrate -r -C 20 master2 master2.bak
    
  7. Start the replication agent on the standby master database using the ttRepStart built-in procedure or the ttAdmin utility.

    ttAdmin -repStart master2
    

    When the standby master database in the upgraded TimesTen instance has become synchronized with the active master database, this standby master database moves from the RECOVERING state to the STANDBY state. The standby master database also starts sending updates to the subscribers. You can determine when the standby master database is in the STANDBY state by calling the ttRepStateGet built-in procedure.

    call ttRepStateGet;
    
  8. Pause any applications that are generating updates on the active master database.

  9. Execute the ttRepSubscriberWait built-in procedure on the active master database, using the DSN and host of the standby master database. For example, to ensure that all transactions are replicated to the standby master master2 on the host master2host:

    call ttRepSubscriberWait( null, null, 'master2', 'master2host', 120 );
    
  10. Stop the replication agent on the active master database using the ttRepStop built-in procedure or the ttAdmin utility. For example, to stop the replication agent for the active master database master1:

    ttAdmin -repStop master1
    
  11. On the standby master database, set the database to the ACTIVE state using the ttRepStateSet built-in procedure. This database becomes the active master in the active standby pair.

    call ttRepStateSet( 'ACTIVE' );
    
  12. Instruct the new active master database (master2, in our example) to stop replicating updates to what is now the standby master (master1) by executing the ttRepStateSave built-in procedure on the active master database. For example, to stop replication to the standby master database master1 on host master1host:

    call ttRepStateSave( 'FAILED', 'master1', 'master1host' );
    
  13. Destroy the former active master database, using the ttDestroy utility.

    ttDestroy master1
    
  14. Uninstall the old version and install the new version of TimesTen on master1host.

  15. If you are upgrading from a TimesTen version prior to 11.2.1, when access control was introduced, you must create a user with ADMIN privileges on the new active master database to duplicate that database. (If you are upgrading from 11.2.1 or higher, you can presumably use an ADMIN user that was migrated over by ttMigrate.) For example, to create the user pat with the password patpwd on the standby master database:

    CREATE USER pat IDENTIFIED BY patpwd;
    GRANT ADMIN TO pat;
    
  16. Create a new standby master database by duplicating the new active master database, using the ttRepAdmin utility. For example, to duplicate the database master2 on the host master2host to the database master1, use the following on the host containing the database master1:

    ttRepAdmin -duplicate -from master2 -host master2host -uid pat -pwd patpwd
     -setMasterRepStart master1
    
  17. Start the replication agent on the new standby master database using the ttRepStart built-in procedure or the ttAdmin utility.

    ttAdmin -repStart master1
    
  18. Stop the replication agent on the first subscriber database using the ttRepStop built-in procedure or the ttAdmin utility. For example, to stop the replication agent for the subscriber database subscriber1:

    ttAdmin -repStop subscriber1
    
  19. Destroy the subscriber database using the ttDestroy utility.

    ttDestroy subscriber1
    
  20. Uninstall the old version and install the new version of TimesTen on the subscriber host.

  21. Create the subscriber database by duplicating the new standby master database, using the ttRepAdmin utility, as follows.

    ttRepAdmin -duplicate -from master1 -host master1host -uid pat -pwd patpwd
     -setMasterRepStart subscriber1
    
  22. Start the replication agent for the duplicated subscriber database using the ttRepStart built-in procedure or the ttAdmin utility.

    ttAdmin -repStart subscriber1
    
  23. Repeat step 18 through step 22 for each other subscriber database.

Online minor upgrades for an active standby pair with cache groups

This section includes the following topics for online minor upgrades in a scenario with active standby pairs and cache groups:

Also see "Performing an online upgrade with replication" for an overview, limitations, and requirements.

Online minor upgrade for standby master and subscriber (cache groups)

To perform an online minor upgrade to a new TimesTen patch release for the standby master database and subscriber databases, in a configuration with cache groups, complete the following tasks on each database (with exceptions noted).

  1. Stop the replication agent on the database using the ttRepStop built-in procedure or the ttAdmin utility. For example, to stop the replication agent for standby database master2:

    ttAdmin -repStop master2
    
  2. Stop the cache agent on the standby database using the ttCacheStop built-in procedure or the ttAdmin utility:

    ttAdmin -cacheStop master2
    
  3. Install the TimesTen patch. See "Performing an in-place upgrade".

  4. Restart the cache agent on the standby database using the ttCacheStart built-in procedure or the ttAdmin utility:

    ttAdmin -cacheStart master2
    
  5. Restart the replication agent using the ttRepStart built-in procedure or the ttAdmin utility:

    ttAdmin -repStart master2
    

Note:

Steps 2 and 4, stopping and restarting the cache agent, are not applicable for subscriber databases.

Online minor upgrade for active master (cache groups)

To perform an online minor upgrade to a new TimesTen patch release for the active master database, in a configuration with cache groups, perform the following steps. Note that you must first reverse the roles of the active and standby master databases, then perform an in-place upgrade.

  1. Pause any applications that are generating updates on the active master database.

  2. Execute the ttRepSubscriberWait built-in procedure on the active master database, using the DSN and host of the standby master database. For example, to ensure that all transactions are replicated to the standby master master2 on the host master2host:

    call ttRepSubscriberWait( null, null, 'master2', 'master2host', 120 );
    
  3. Stop the replication agent on the current active master database using the ttRepStop built-in procedure or the ttAdmin utility. For example, to stop the replication agent for the active master database master1:

    ttAdmin -repStop master1
    
  4. Stop the cache agent on the current active master database using the ttCacheStop built-in procedure or the ttAdmin utility:

    ttAdmin -cacheStop master1
    
  5. Execute the ttRepDeactivate build-in procedure on the current active master database. This puts the database in the IDLE state:

    call ttRepDeactivate;
    
  6. On the standby master database, set the database to the ACTIVE state using the ttRepStateSet built-in procedure. This database becomes the active master in the active standby pair:

    call ttRepStateSet( 'ACTIVE' );
    
  7. Resume any applications that were paused in step 1, connecting them to the database that is now acting as the active master (in this example, database master2).

  8. Upgrade the TimesTen instance for the former active master database, which is now the standby master database. See "Performing an in-place upgrade".

  9. Restart the cache agent on the post-upgrade database using the ttCacheStart built-in procedure or the ttAdmin utility:

    ttAdmin -cacheStart master1
    
  10. Restart replication on the post-upgrade database using the ttRepStart built-in procedure or the ttAdmin utility:

    ttAdmin -repStart master1
    
  11. To make the post-upgrade database the active master database again, see "Reversing the roles of the active and standby databases" in Oracle TimesTen In-Memory Database Replication Guide.

Offline major upgrades for an active standby pair with cache groups

Performing a TimesTen major upgrade in a scenario with an active standby pair with cache groups requires an offline upgrade. This is discussed in the subsection that follows.

Offline major upgrade for active standby pair (cache groups)

Complete the following steps to perform a TimesTen major upgrade from an 11.2.1.x.x version to an 11.2.2.x.x version in a scenario with an active standby pair with cache groups. You must perform this upgrade offline.

Note:

This procedure is not supported for upgrading from a 7.0.x or earlier version of TimesTen. For that case, an alternative is to exclude cache groups from your replication scheme prior to the upgrade, use the procedure for upgrading without cache groups, then include the previously excluded cache groups into the replication scheme after the upgrade. For an upgrade without cache groups, see "Online major upgrade for active standby pair".

These steps assume an active master database master1 on host master1host and a standby master database master2 on host master2host.

  1. Stop any updates to the active database before you upgrade.

  2. From master1, call the ttRepSubscriberWait built-in procedure to ensure that all data updates have been applied to the standby database, where numsec is the desired wait time.

    call ttRepSubscriberWait(null, null, 'master2', 'master2host', numsec);
    

    For information about ttRepSubscriberWait, refer to Oracle TimesTen In-Memory Database Reference.

  3. From master2, call ttRepSubscriberWait to ensure that all data updates have been applied to the Oracle database.

    call ttRepSubscriberWait(null, null, _ORACLE, null, numsec);
    
  4. On master1host, use the ttAdmin utility to stop the replication agent for the active database.

    ttAdmin -repStop master1
    

    For information about ttAdmin, refer to Oracle TimesTen In-Memory Database Reference.

  5. On master2host, use ttAdmin to stop the replication agent for the standby database.

    ttAdmin -repStop master2
    
  6. On master1host, call the ttCacheStop built-in procedure or use ttAdmin to stop the cache agent for the active database.

    ttAdmin -cacheStop master1
    
  7. On master2host, call ttCacheStop or use ttAdmin to stop the cache agent for the standby database.

    ttAdmin -cacheStop master2
    
  8. On master1host, use the ttMigrate utility to back up the active database to a binary file.

    ttMigrate -c master1 master1.bak
    

    For information about ttMigrate, refer to Oracle TimesTen In-Memory Database Reference

  9. On master1host, use the ttDestroy utility to destroy the active database. You must either use the -force option or first drop all cache groups. If you use -force, run the script cacheCleanup.sql afterward.

    ttDestroy -force /data_store_path/master1
    

    The cacheCleanup.sql script is a SQL*Plus script, located in the TimesTen_install_dir/oraclescripts directory, that you run after connecting to the Oracle database as the cache user. It takes as parameters the TimesTen host name and the TimesTen database name (with full path). For information, refer to "Dropping Oracle objects used by automatic refresh cache groups" in Oracle In-Memory Database Cache User's Guide.

    For information about ttDestroy, refer to Oracle TimesTen In-Memory Database Reference.

  10. Uninstall the old and install the new TimesTen major release on master1host. For details, see "Installing TimesTen on UNIX systems" or "Installing TimesTen on Windows systems".

  11. Create a new database in 11.2.2.x.x using ttIsql with DSN connection attribute setting AutoCreate=1. In this new database, create a cache user. The following example is a sequence of commands to execute in ttIsql to create this cache user and give it appropriate access privileges. Note that the cache user requires ADMIN privilege in order to execute the next step, ttMigrate –r. Once migration is complete, you can revoke the ADMIN privilege from this user if desired.

    Command> CREATE USER cacheuser IDENTIFIED BY cachepassword;
    Command> GRANT CREATE SESSION, CACHE_MANAGER, CREATE ANY TABLE, DROP ANY TABLE
     TO cacheuser;
    Command> GRANT ADMIN TO cacheuser;
    
  12. In the new TimesTen instance on master1host, use the ttMigrate utility as the cache user to restore master1 from the binary file created earlier. (This example performs a checkpoint operation after every 20 megabytes of data has been restored, and assumes the password is the same in the Oracle database as in TimesTen.)

    ttMigrate -r -cacheuid cacheuser -cachepwd cachepassword -C 20 -connstr
     "DSN=master1;uid=cacheuser;pwd=cachepassword;oraclepwd=cachepassword"
     master1.bak
    
  13. On master1host, use ttAdmin to start the replication agent.

    ttAdmin -repStart master1
    

    Note:

    This step also sets the database to the active state. You can then call ttRepStateGet (which takes no parameters) to confirm the state. For information about ttRepStateGet, refer to Oracle TimesTen In-Memory Database Reference.
  14. On master1host, call the ttCacheStart built-in procedure or use ttAdmin to start the cache agent.

    ttAdmin -cacheStart master1
    

    After this, you can use the ttStatus utility to confirm the replication and cache agents have started. For information about ttStatus, refer to Oracle TimesTen In-Memory Database Reference.

  15. Put each automatic refresh cache group into the AUTOREFRESH PAUSED state. This example uses ttIsql:

    Command> ALTER CACHE GROUP mycachegroup SET AUTOREFRESH STATE paused;
    
  16. From master1, reload each cache group, specifying the name of the cache group and how often to commit during the operation. This example uses ttIsql:

    Command> LOAD CACHE GROUP cachegroupname COMMIT EVERY n ROWS;
    

    You can optionally specify parallel loading as well. For information about the LOAD CACHE GROUP SQL statement, refer to Oracle TimesTen In-Memory Database SQL Reference.

  17. On master2host, use ttDestroy to destroy the standby database. You must either use the -force option or first drop all cache groups. If you use -force, run the script cacheCleanup.sql afterward (as discussed earlier).

    ttDestroy -force /data_store_path/master2
    
  18. Uninstall the old and install the new TimesTen major release on master2host.

  19. In the new TimesTen instance on master2host, use the ttRepAdmin utility with the -duplicate option to create a duplicate of active database master1 to use as standby database master2. Specify the appropriate administrative user on master1, the cache manager user and password, and to keep cache groups.

    ttRepAdmin -duplicate -from master1 -host master1host -uid pat -pwd patpwd 
    -cacheUid orcluser -cachePwd orclpwd -keepCG master2
    

    For information about ttRepAdmin, refer to Oracle TimesTen In-Memory Database Reference.

  20. On master2host, use ttAdmin to start the replication agent. (You could optionally have used the ttRepAdmin option -setMasterRepStart in the previous step instead.)

    ttAdmin -repStart master2
    
  21. On master2, the replication state will automatically be set to STANDBY. You can call the ttRepStateGet built-in procedure to confirm this. (This occurs asynchronously and may take a little time.)

    call ttRepStateGet();
    
  22. On master2host, call the ttCacheStart built-in procedure or use ttAdmin to start the cache agent.

    ttAdmin -cacheStart master2
    

    After this, you can use the ttStatus utility to confirm the replication and cache agents have started.

If you want to create read-only subscriber databases, on each subscriber host you can create the subscriber by using the ttRepAdmin utility -duplicate option to duplicate the standby database. The following example creates subscriber1, using the same ADMIN user as above and the -nokeepCG option to convert the cache tables to normal TimesTen tables, as appropriate for a read-only subscriber.

ttRepAdmin -duplicate -from master2 -host master2host -nokeepCG 
-uid pat -pwd patpwd subscriber1

To roll out disaster recovery subscribers, refer to "Rolling out a disaster recovery subscriber" in Oracle TimesTen In-Memory Database Replication Guide.

Performing an offline TimesTen upgrade when using Oracle Clusterware

This section discusses the steps for an offline upgrade of TimesTen when using TimesTen with Oracle Clusterware. You have the option of also upgrading Oracle Clusterware, independently, while upgrading TimesTen. (For an online upgrade, see "Performing an online TimesTen upgrade when using Oracle Clusterware".)

Notes:

  • These instructions apply for either a TimesTen minor version upgrade (11.2.2.x.x to higher 11.2.2.x.x) or a TimesTen major version upgrade (11.2.1.x.x to 11.2.2.x.x).

  • TimesTen 11.2.2 supports Clusterware versions 11.2.0.2 and 11.2.0.3 only. (TimesTen 11.2.1 supports Clusterware versions 11.1.0.7, 11.2.0.2, and 11.2.0.3.)

  • TimesTen does not support Clusterware on Windows platforms.

For this procedure, except where noted, you can execute the ttCWAdmin commands from any host in the cluster. Each command affects all hosts.

  1. Stop the replication agents on the databases in the active standby pair:

    ttCWAdmin -stop -dsn advancedDSN
    
  2. Drop the active standby pair:

    ttCWAdmin -drop -dsn advancedDSN
    
  3. Stop the TimesTen cluster agent. This removes the hosts from the cluster and stops the TimesTen daemon:

    ttCWAdmin -shutdown
    
  4. Upgrade TimesTen on the desired hosts.

    • To perform a TimesTen minor version upgrade, each node in the cluster must have TimesTen from the same major release (such as all 11.2.2.x.x releases). You can do an in-place upgrade as discussed in "Performing an in-place upgrade".

    • To perform a TimesTen major version upgrade, you must use ttMigrate as discussed in "Performing an offline upgrade".

  5. Upgrade Oracle Clusterware if desired. See Oracle Clusterware Administration and Deployment Guide.

    For use with TimesTen, you can upgrade from Clusterware version 11.1.0.7 to 11.2.0.3 or from 11.2.0.2 to 11.2.0.3, but not from 11.1.0.7 to 11.2.0.2.

  6. If you have upgraded Oracle Clusterware, use the ttmodinstall utility to configure TimesTen with Oracle Clusterware. On each host, enter:

    ttmodinstall -crs
    

    When ttmodinstall asks permission to overwrite the ttcrsagent.options file, choose yes (the default).

  7. Start the TimesTen cluster agent. This includes the hosts defined in the cluster as specified in ttcrsagent.options. This also starts the TimesTen daemon.

    ttCWAdmin -init
    
  8. Create the active standby pair replication scheme:

    ttCWAdmin -create -dsn advancedDSN
    

    Important: The host from which you run this command must have access to the cluster.oracle.ini file. (See "The cluster.oracle.ini file" in Oracle TimesTen In-Memory Database Replication Guide for information about this file.)

  9. Start the active standby pair replication scheme:

    ttCWAdmin -start -dsn advancedDSN
    

Performing an online TimesTen upgrade when using Oracle Clusterware

This section discusses how to perform an online rolling in-place minor version upgrade for TimesTen, from one TimesTen 11.2.2.x.x version to a higher 11.2.2.x.x version, in a configuration where active standby pairs are managed by Oracle Clusterware. (For an offline upgrade, see "Performing an offline TimesTen upgrade when using Oracle Clusterware".)

The following topics are covered:

Notes:

  • TimesTen 11.2.2 supports Clusterware versions 11.2.0.2 and 11.2.0.3 only. (TimesTen 11.2.1 supports Clusterware versions 11.1.0.7, 11.2.0.2, and 11.2.0.3.)

  • TimesTen does not support Clusterware on Windows platforms.

Supported configurations

The following basic configurations are supported for online rolling in-place upgrades for TimesTen. In all cases, the hosts are managed by Oracle Clusterware.

  • One active standby pair on two hosts.

  • Multiple active standby pairs with one TimesTen database on each host.

  • Multiple active standby pairs with one or more TimesTen database on each host.

(Other scenarios, such as with additional spare systems, are effectively equivalent to one of these scenarios.)

Restrictions and assumptions

Note the following assumptions for upgrading TimesTen when using Oracle Clusterware:

  • The existing active standby pairs are configured and operating properly.

  • Oracle Clusterware commands are used correctly to stop and start the standby database.

  • The in-place upgrade does not change the TimesTen environment for the active and standby databases.

  • The in-place upgrade is from a TimesTen 11.2.2.x.x release to a later TimesTen 11.2.2.x.x release. These instructions are for TimesTen minor version upgrades only. Online major version upgrades in configurations where active standby pairs are managed by Clusterware are not currently supported.

  • Oracle Clusterware is release 11.2.0.2 or 11.2.0.3.

  • The in-place upgrade applies to one TimesTen installation on each host.

  • There are at least two hosts managed by Oracle Clusterware.

    Multiple active or standby databases managed by Oracle Clusterware can exist on a host as long as there are at least two hosts in the cluster.

Important:

  • Upgrade Oracle Clusterware if desired, but not concurrently with an online TimesTen upgrade. When performing an online TimesTen minor version upgrade in configurations where active standby pairs are managed by Clusterware, you must perform the Clusterware upgrade independently and separately, either prior to or following the TimesTen upgrade. See Oracle Clusterware Administration and Deployment Guide for information about upgrading Clusterware.

    Be aware that for use with TimesTen, you can upgrade from Clusterware version 11.1.0.7 to 11.2.0.3 or from 11.2.0.2 to 11.2.0.3, but not from 11.1.0.7 to 11.2.0.2.

  • For upgrading TimesTen when using Oracle Clusterware, online rolling in-place upgrades are not supported when global cache groups are replicated by the active standby pairs.

Upgrade tasks for one active standby pair

This section describes the following tasks:

Note:

In examples in the following subsections, the host name is host2, the DSN is myDSN, the TimesTen instance name is upgrade2, and the instance administrator is terry.

Verify that the active standby pair is operating properly

Complete these steps to confirm that the active standby pair is operating properly.

  1. Verify the following.

    • The active and the standby databases are running a TimesTen 11.2.2.x.x release.

    • The active and standby databases are on separate hosts managed by Oracle Clusterware.

    • Replication is working.

    • If the active standby pair replication scheme includes cache groups, the following are true:

      • AWT and SWT writes from the standby TimesTen database to the Oracle database are working.

      • Refreshes from the Oracle database to the active TimesTen database are working.

  2. Enter the ttCWAdmin -status -dsn yourDSN command to verify the following.

    • The active database is on a different host than the standby database.

    • The state of the active database is 'ACTIVE' and the status is 'AVAILABLE'.

    • The state of the standby database is 'STANDBY' and the status is 'AVAILABLE'.

  3. Enter the ttStatus command on the active database to verify the following.

    • The ttCRSactiveservice and ttCRSmaster processes are running.

    • The subdaemon and the replication agents are running.

    • If the active standby pair replication scheme includes cache groups, the cache agent is running.

  4. Enter the ttStatus command on the standby database to verify the following.

    • The ttCRSsubservice and ttCRSmaster processes are running.

    • The subdaemon and the replication agents are running.

    • If the active standby pair replication scheme includes cache groups, the cache agent is running.

Shut down the standby database

Complete these steps to shut down the standby database.

  1. Enter an Oracle Clusterware command similar to the following to obtain the names of the Oracle Clusterware Master, Daemon, and Agent processes on the host of the standby database. It is suggested to filter the output through grep TT:

    crsctl status resource -n standbyHostName | grep TT
    
  2. Use Oracle Clusterware commands to shut down the standby database. The Oracle Clusterware commands stop the Master processes for the standby database, the Daemon process for the TimesTen installation, and the Agent process for the TimesTen installation.

    crsctl stop resource TT_Master_upgrade2_terry_myDSN_1
    crsctl stop resource TT_Daemon_upgrade2_terry_host2
    crsctl stop resource TT_Agent_upgrade2_terry_host2
    
  3. Stop the TimesTen main daemon.

    ttDaemonAdmin -stop
    

    If the ttDaemonAdmin -stop command gives error 10028, retry the command.

Perform an in-place upgrade for the standby database

Complete these steps for an in-place upgrade of the TimesTen instance for the standby database.

  1. Use the setup.sh script from the installation media of your current TimesTen release to do the in-place upgrade. The in-place upgrade uninstalls the previous 11.2.2.x.x installation for the standby database. The new installation for the current release must be installed into the same directory structure.

    The in-place upgrade must keep the following files on the standby database:

    • Standby database files (such as checkpoint files, transaction log files, and so on)

    • sys.odbc.ini

    • ttendaemon.options

    • cluster.oracle.ini

      See "The cluster.oracle.ini file" in Oracle TimesTen In-Memory Database Replication Guide for information about this file.

    • ttcrsagent.options

    • tnsnames.ora

    See "Sample in-place upgrade".

  2. Configure the new installation for Oracle Clusterware.

Start the standby database

Complete these steps to start the standby database.

  1. Enter the following ttCWAdmin command to start the TimesTen main daemon, the TimesTen Oracle Clusterware agent process and the TimesTen Oracle Clusterware Daemon process:

    ttCWAdmin -init -hosts localhost
    
  2. Start the Oracle Clusterware Master process for the standby database.

    crsctl start resource TT_Master_upgrade2_terry_MYDSN_1
    

Switch the roles of the active and standby databases

Use the ttCWAdmin -switch command to switch the roles of the active and standby databases to enable the in-place upgrade on the other master database.

ttCWAdmin -switch -dsn myDSN

Use the ttCWAdmin -status command to verify that the switch operation has completed before starting the next task.

Shut down the new standby database

Use the Oracle Clusterware crsctl status resource command to obtain the names of the Master, Daemon, and Agent processes on the host of the new standby database. This example assumes the host host1 and filters the output through grep TT:

crsctl status resource -n host1 | grep TT

Enter commands such as those in "Shut down the standby database". Use the appropriate instance name, instance administrator, DSN, and host name. For example:

crsctl stop resource TT_Master_upgrade2_terry_MYDSN_0
crsctl stop resource TT_Daemon_upgrade2_terry_host1
crsctl stop resource TT_Agent_upgrade2_terry_host1
ttDaemonAdmin -stop

Perform an in-place upgrade of the new standby database

Enter commands such as those in "Perform an in-place upgrade for the standby database".

Start the new standby database

See "Start the standby database", but use the Master process name obtained by the crsctl status resource command from "Shut down the new standby database", above.

ttCWAdmin -init -hosts localhost
crsctl start resource TT_Master_upgrade2_terry_MYDSN_0

Upgrades for multiple active standby pairs on many pairs of hosts

The process to upgrade the TimesTen instances for multiple active standby pairs on multiple pairs of hosts is essentially the same as the process to upgrade the instances for a single active standby pair on two hosts, discussed in the preceding section, "Upgrade tasks for one active standby pair". The best practice is to perform the upgrades for the active standby pairs one at a time.

Use the ttCWAdmin -status command to determine the state of the databases managed by Oracle Clusterware.

Upgrades for multiple active standby pairs on a pair of hosts

Multiple active standby pairs can be on multiple pairs of hosts, as discussed in the preceding section, "Upgrades for multiple active standby pairs on many pairs of hosts". Alternatively, multiple active standby pairs can be configured on a single pair of hosts. One scenario is for all the active databases to be on one host and all the standby databases to be on the other. A more typical scenario, to better balance the workload, is for each host to have some active databases and some standby databases.

Figure 3-1 shows two active standby pairs on two hosts managed by Oracle Clusterware. The active database called active1 on host1 replicates to standby1 on host2. The active database called active2 on host2 replicates to standby2 on host1. AWT updates from both standby databases are propagated to the Oracle database. Read-only updates from the Oracle database are propagated to the active databases.

Figure 3-1 Multiple active standby pairs on two hosts

Description of Figure 3-1 follows
Description of "Figure 3-1 Multiple active standby pairs on two hosts"

This configuration can result in greater write throughput for cache groups and more balanced resource usage. See the next section, "Sample configuration files: multiple active standby pairs on one pair of hosts", for sample sys.odbc.ini entries and a sample cluster.oracle.ini file for this kind of configuration. (See "The cluster.oracle.ini file" in Oracle TimesTen In-Memory Database Replication Guide for information about that file.)

The in-place rolling upgrade process for multiple active standby pairs on a single pair of hosts is similar in nature to the process of upgrading multiple active standby pairs on multiple pairs of hosts, discussed in "Upgrades for multiple active standby pairs on many pairs of hosts".

First, however, if the active and standby databases are mixed between the two hosts, switch all standby databases to one host and all active databases to the other host. Use the ttCWAdmin -switch -dsn DSN command to switch active and standby databases between hosts. Once all the active databases are on one host and all the standby databases are on the other host, follow the steps below in order to perform the upgrade for the entire "standby" host.

Be aware that in-place upgrades affect the entire TimesTen installation and associated databases on one host.

  1. Verify that the standby databases are running on the desired host. Use the ttCWAdmin -status -dsn DSN command and the ttCWAdmin -status command.

  2. Modify the Oracle Clusterware stop commands to stop all Master processes on the host where all the standby databases reside.

  3. Modify the Oracle Clusterware start commands to start all Master processes on the host where all the standby databases reside.

The following subsections contain related samples.

Sample configuration files: multiple active standby pairs on one pair of hosts

The following are sample sys.odbc.ini entries:

[databasea]
Driver=/scratch/terry/TimesTen/upgrade2/lib/libtten.so
DataStore=/scratch/terry/ds/databasea
PermSize=40
TempSize=32
PLSQL=1
DatabaseCharacterSet=WE8MSWIN1252
OracleNetServiceName=ORCL
 
[databaseb]
Driver=/scratch/terry/TimesTen/upgrade2/lib/libtten.so
DataStore=/scratch/terry/ds/databaseb
PermSize=40
TempSize=32
PLSQL=1
DatabaseCharacterSet=WE8MSWIN1252
OracleNetServiceName=ORCL

[databasec]
Driver=/scratch/terry/TimesTen/upgrade2/lib/libtten.so
DataStore=/scratch/terry/ds/databasec
PermSize=40
TempSize=32
PLSQL=1
DatabaseCharacterSet=WE8MSWIN1252
OracleNetServiceName=ORCL

[databased]
Driver=/scratch/terry/TimesTen/upgrade2/lib/libtten.so
DataStore=/scratch/terry/ds/databased
PermSize=40
TempSize=32
PLSQL=1
DatabaseCharacterSet=WE8MSWIN1252
OracleNetServiceName=ORCL

The following is a sample cluster.oracle.ini file:

[databasea]
MasterHosts=host1,host2
CacheConnect=Y
 
[databaseb]
MasterHosts=host2,host1
CacheConnect=Y
 
[databasec]
MasterHosts=host2,host1
CacheConnect=Y
 
[databased]
MasterHosts=host1,host2
CacheConnect=Y

Note that the cluster.oracle.ini file places one active database and one standby database on each host. This is accomplished by reversing the order of the host names specified for the MasterHost attribute.

Sample scripts: stopping and starting multiple standby processes on one host

Enter an Oracle Clusterware command similar to the following to obtain the names of the Oracle Clusterware Master, Daemon and Agent processes on the host of the standby database. It is suggested to filter the output through grep TT:

crsctl status resource -n standbyHostName | grep TT

The following script is an example of a "stop standby" script for multiple databases on the same host that is managed by Oracle Clusterware. The TimesTen instance name is upgrade2. The instance administrator is terry. The host is host2. There are two standby databases: databasea and databaseb.

crsctl stop resource TT_Master_upgrade2_terry_DATABASEA_0
crsctl stop resource TT_Master_upgrade2_terry_DATABASEB_1
crsctl stop resource TT_Daemon_upgrade2_terry_HOST2
crsctl stop resource TT_Agent_upgrade2_terry_HOST2
ttDaemonAdmin -stop

The following script is an example of a "start standby" script for the same configuration.

ttCWAdmin -init -hosts localhost
crs start resource TT_Master_upgrade2_terry_DATABASEA_0
crs start resource TT_Master_upgrade2_terry_DATABASEB_1

Sample in-place upgrade

This section provides a sample in-place upgrade.

$ ./setup.sh
 
There is 1 TimesTen instance installed locally :
 
1) sb1122 (TimesTen11.2.2.4)
 
Of the following options :
 
  [1] Install a new instance
  [2] Upgrade an existing instance
  [3] Display information about an existing instance
  [q] Quit the installation
 
Which would you like to perform? [ 1 ] 2
 
NOTE: There is only one instance which can be upgraded.
 
Instance Name          : sb1122
Product Installed      : TimesTen11.2.2.4
Installation Directory : /scratch/sboand/TimesTen/sb1122
BitLevel               : 64
Component Installed    : Client/Server and DataManager
Daemon Port            : 33333
 
NOTE: Upgrading will remove the selected instance (and any directories or files
      under its path) and then re-install into the same directory. You will
      have the option to retain configuration files in :
      /scratch/sboand/TimesTen/sb1122/info 
 
Would you like to upgrade this instance? [ yes ]
 
NOTE: <install_dir>/info contains information related to the data
   stores that have been created with this release. If you remove
   /scratch/sboand/TimesTen/sb1122/info
   you will no longer be able to access your data stores,
   nor would you be able to restore nor migrate your data. 
 
   Would you also like to remove all files in <install_dir>/info? [ no ]
   Would you like to remove the DemoDataStore directory in    
/scratch/sboand/TimesTen/sb1122/info/DemoDataStore? [ yes ] no
   Would you also like to remove all files in <install_dir>/network/admin/samples? [ no ]
   /scratch/sboand/TimesTen/sb1122 Removed (retained <install_dir>/info)
TimesTen uninstall completed.
 
Of the three components:
  [1] Client/Server and Data Manager
  [2] Data Manager Only
  [3] Client Only
 
Which would you like to install? [ 1 ]
Upgrading installation in /scratch/sboand/TimesTen/sb1122
Where would you like to create the daemon home directory? 
[ /scratch/sboand/TimesTen/sb1122/info ]
 
The daemon logs will be located in /scratch/sboand/TimesTen/sb1122/info
Would you like to specify a different location for the daemon logs? [ no ]
Installing into /scratch/sboand/TimesTen/sb1122 ...
Uncompressing ...
 
NOTE: For security, we recommend that you restrict access to the
      TimesTen installation to members of a single OS group. Only members of
      that OS group will be allowed to perform direct mode connections to
      TimesTen, and only members of that OS group will be allowed to perform
      operations that access TimesTen data stores, TimesTen files and shared
      memory. The OS group defaults to the primary group of the instance
      administrator. You can default to this group, choose another OS group
      or you can make this instance world-accessible. If you choose to make
      this instance world-accessible, all database files and shared memory
      are readable and writable by all users.
 
Restrict access to the the TimesTen installation to the group 'g900'? [ yes ]
 
NOTE: Enabling PL/SQL will increase the size of some TimesTen libraries.
 
Would you like to enable PL/SQL for this instance? [ yes ]
 
Do you want to replace the ttendaemon.options file in
/scratch/sboand/TimesTen/sb1122/info? [ yes ] no
 
NOTE: The existing daemon options file has been retained. The default options
      file was written as
      /scratch/sboand/TimesTen/sb1122/info/ttendaemon.options.sb1122. 
 
In order to use the 'In-Memory Database Cache' feature in any databases
created within this installation, you must set a value for the TNS_ADMIN
environment variable. It can be left blank, and a value can be supplied later
using <install_dir>/bin/ttModInstall.
 
A value for TNS_ADMIN (/scratch/sboand/TimesTen/sb1122/network/admin/samples) was
found in the previous daemon options file.
 
Please enter a value for TNS_ADMIN (s=skip)? 
[ /scratch/sboand/TimesTen/sb1122/network/admin/samples ] s
 
Installing server components ...
What is the TCP/IP port number that you want the TimesTen Server to listen on? 
[ 33334 ]
Do you want to install QuickStart and the TimesTen Documentation? [ no ]
Would you like to install the documentation (without QuickStart)? [ yes ] no
 
An existing cluster.oracle.ini file has been detected in
/scratch/sboand/TimesTen/sb1122/info.
 
Would you like to replace the existing cluster.oracle.ini file? [ no ]
 
The existing cluster.oracle.ini file will be used.
The sample cluster.oracle.ini file will be saved as
'/scratch/sboand/TimesTen/sb1122/info/cluster.oracle.ini.tt1122'.
 
An existing sys.odbc.ini file has been detected in
/scratch/sboand/TimesTen/sb1122/info.
 
NOTE: You may not be able to successfully run the demos if you keep your
      existing sys.odbc.ini file. If you choose to replace the existing
      file, a backup will be made automatically.
 
Would you like to replace the existing
/scratch/sboand/TimesTen/sb1122/info/sys.odbc.ini file ? [ no ]
 
The existing sys.odbc.ini file will be used.
The sample sys.odbc.ini file will be saved as
'/scratch/sboand/TimesTen/sb1122/info/sys.odbc.ini.sb1122'.
 
An existing tnsnames.ora file has been detected in
/scratch/sboand/TimesTen/sb1122/network/admin/samples.
 
Would you like to replace the existing
/scratch/sboand/TimesTen/sb1122/network/admin/samples/tnsnames.ora file ? [ no ]
 
The existing tnsnames.ora file will be used.
The sample tnsnames.ora file will be saved as
'/scratch/sboand/TimesTen/sb1122/network/admin/samples/tnsnames.ora.tt1122'.
 
Installing client components ...
 
An existing sys.ttconnect.ini file has been detected in
/scratch/sboand/TimesTen/sb1122/info.
 
NOTE: You may not be able to successfully run the Client/Server demos if you keep
      your existing sys.ttconnect.ini file. If you choose to replace the existing
      file, a backup will be made automatically.
 
Would you like to replace the existing
/scratch/sboand/TimesTen/sb1122/info/sys.ttconnect.ini file ? [ no ]
 
The existing sys.ttconnect.ini file will be used.
The sample sys.ttconnect.ini file will be saved as
'/scratch/sboand/TimesTen/sb1122/info/sys.ttconnect.ini.sb1122'.
 
Would you like to use TimesTen Replication with Oracle Clusterware? [ no ] yes
 
A Clusterware installation was detected in /scratch/oracle/crs/app/11.2.0/grid
 
Please provide the path to the Oracle Clusterware installation on this machine
(s=skip)? [ /scratch/oracle/crs/app/11.2.0/grid ]
 
NOTE: The TimesTen Clusterware agent port must be the same on all nodes
      of the cluster. Please refer to the TimesTen documentation for
      additional information.
 
Please enter a port number for the TimesTen Clusterware agent? [ 33339 ]
 
Executing '/scratch/oracle/crs/app/11.2.0/grid/bin/olsnodes' ...
Oracle Clusterware is currently configured on the following nodes :
 
1. host1
2. host2
3. host3
4. host4
5. host5
 
NOTE: By default, all of the nodes listed above will be added to the TimesTen
      Replication with Oracle Clusterware configuration. You can also
      specify your own list of nodes based on the list above.
 
Would you like to specify a node list for TimesTen Replication with Oracle
Clusterware? [ no ] yes
From the nodes above, please provide a list of nodes that you would like to add
(ex: 1,2 or skip)? [  ] 4,5
 
TimesTen Replication with Oracle Clusterware will be configured for the following nodes :
 
host4
host5
 
Are you sure? [ yes ]
Overwrite the existing TimesTen Clusterware options file? [ no ]
The new TimesTen Clusterware options file will be located here :
        /scratch/sboand/TimesTen/sb1122/info/ttcrsagent.options.tt1122.
 
NOTE: The TimesTen daemon startup/shutdown scripts have not been installed.
 
Run the 'setuproot' script :
        cd /scratch/sboand/TimesTen/sb1122/bin
        ./setuproot -install
This will move the TimesTen startup script into its appropriate location.
 
The startup script is currently located here :
  '/scratch/sboand/TimesTen/sb1122/startup/tt_sb1122'.
 
The documentation was not installed.
To manually install the documentation, run the command 'setup.sh -installDoc'
 
The 11.2.2.6 Release Notes are located here :
  '/scratch/sboand/TimesTen/sb1122/README.html'
 
Starting the daemon ...
TimesTen Daemon startup OK.
End of TimesTen installation.

Upgrades when using parallel replication

Automatic parallel replication is enabled by default beginning in TimesTen release 11.2.2.2.0. In previous releases of 11.2.2 and in releases of 11.2.1, user-specified replication was available, but automatic parallel replication was not available.

Note:

The values for the ReplicationApplyOrdering attribute have changed. Beginning in release 11.2.2.2.0, a value of 0 enables automatic parallel replication. Prior to release 11.2.2.2.0, a value of 0 disabled user-specified parallel replication.

You can perform an online or offline upgrade from a database that has not enabled parallel replication to a database of this release that has enabled parallel replication.

The rest of this section discusses additional considerations along with scenarios where an offline upgrade is required.

Considerations regarding parallel replication

Be aware of the following considerations when upgrading systems that use parallel replication:

  • Consider an active standby pair without parallel replication enabled. To upgrade the TimesTen instances to release 11.2.2.3.0 or higher and use automatic parallel replication (default value of 0 for the ReplicationApplyOrdering attribute), simply use the appropriate procedure for an active standby pair upgrade. See "Performing an upgrade with active standby pair replication".

  • You cannot replicate between databases that have the ReplicationParallelism attribute set to greater than 1 but have different values for the ReplicationApplyOrdering attribute.

Scenarios that require an offline upgrade

You must use an offline upgrade for these scenarios:

  • Moving from user-specified parallel replication to automatic parallel replication. For example, from a release preceding 11.2.2.3.0 to release 11.2.2.3.0 or higher with the ReplicationApplyOrdering attribute set to the default value (0).

  • Moving from an automatic parallel replication environment to another automatic parallel replication environment with a different number of tracks, as indicated by the value of the ReplicationParallelism attribute.

  • Moving between major releases (such as from 11.2.1.x.x to 11.2.2.x.x) and using asynchronous writethrough cache groups.

  • Moving from regular replication with asynchronous writethrough in 11.2.1.x.x to automatic parallel replication with asynchronous writethrough in 11.2.2.x.x.

For offline upgrades, you can use the procedure described in "Performing an offline upgrade". Alternatively, you can upgrade one side and use the ttRepAdmin -duplicate -recreate command to create the new database.

Record of upgrades with replication configured

If replication is configured on a database, a new set of tables with the prefix ttrep_schema_version- is created each time that the ttMigrate -r command is used. These tables provide a history of the replication scheme from release to release.

These tables do not take up much space and are helpful when debugging upgrade problems. However, you can drop these tables if you do not experience problems with replication after running ttMigrate.

For example, after two migrations, the database might contain tables like this:

TTREP_SCHEMA_VERSION_004.REPELEMENTS
TTREP_SCHEMA_VERSION_004.REPLICATIONS
TTREP_SCHEMA_VERSION_004.REPPEERS
TTREP_SCHEMA_VERSION_004.REPSTORES
TTREP_SCHEMA_VERSION_004.REPSUBSCRIPTIONS
TTREP_SCHEMA_VERSION_004.REPTABLES
TTREP_SCHEMA_VERSION_004.TTSTORES
TTREP_SCHEMA_VERSION_005.REPELEMENTS
TTREP_SCHEMA_VERSION_005.REPLICATIONS
TTREP_SCHEMA_VERSION_005.REPPEERS
TTREP_SCHEMA_VERSION_005.REPSTORES
TTREP_SCHEMA_VERSION_005.REPSUBSCRIPTIONS
TTREP_SCHEMA_VERSION_005.REPTABLES
TTREP_SCHEMA_VERSION_005.TTSTORES

Performing a Client/Server online upgrade

TimesTen Server can talk directly to all user applications linked with TimesTen Client ODBC driver release 6.0 or higher. There are at least two possible ways to upgrade a TimesTen Client/Server installation, depending on your requirements for client access to the database:

Client/Server online upgrade

To perform an online upgrade of a TimesTen Client/Server system to a new major release (such as from 11.2.1.x.x to 11.2.2.x.x) with minimal reconfiguration, perform the following steps:

  1. Stop the TimesTen Server on the old release of TimesTen. From this point until the TimesTen Server for the new release is started, your client applications do not have access to the database. Any attempted updates to the database by the clients fail, and you should stop user applications if necessary.

  2. Install the new release of TimesTen. At installation time, configure the server to listen on the same port as the old release of TimesTen.

  3. Use ttMigrate to migrate the database from the old release to the new release. See "Moving between 32-bit and 64-bit databases" for an example of this procedure.

  4. Start the new release of TimesTen Server. The client applications now have access to the post-upgrade databases.

Note:

Since both releases of TimesTen Server have been configured to listen on the same port in this procedure, if you want to restart the server for the old release you must first configure it to listen on a different port.

Client/Server online upgrade with continuous access to the database

The migration of a database using ttMigrate can be a long process if your databases are very large. If it is critical that your client applications have nearly continuous access to the database during the Client/Server online upgrade procedure, you may incorporate the procedure for performing an online upgrade with replication by following these steps:

  1. Install the new release of TimesTen, making sure to configure TimesTen Server to listen on the same port as the old release. The installation script asks whether you would like to start the new server. You must answer "no."

  2. Follow the steps in "Performing an online upgrade with replication" to upgrade the TimesTen instance for one copy of the database. The client applications remain connected to the other, non-upgraded copy of the database.

  3. Disconnect all clients from the old release of the database.

  4. Stop the old release of TimesTen Server.

  5. Wait for all updates to finish replicating from the old release of the database to the new release.

  6. Start the new release of TimesTen Server. It begins listening on the same port as the old release, and client applications may now connect to the new release of the database with no change to their configurations.