WAS v8.5 > Migrate, coexist, and interoperate > Migrating Data access resources > Migrating data sourcesUpgrading Apache Derby manually
During the upgrade of the application server, the migration tool attempts to upgrade instances of Apache Derby that are accessed through the embedded framework only. The automatic upgrade excludes Derby instances that transact with applications through the Network Server framework. This exclusion eliminates the risk of corrupting third party applications that access the same database instances as the application server. You must manually upgrade database instances that are accessed through the Network Server framework. Do the same for databases that fail the automatic migration.
WAS supports direct customer use of the Apache Derby database in test environments only. WAS v8.5 does not support direct customer use of Apache Derby database in production environments. For instances of Derby that are accessed through the embedded framework, determine which instances completely failed the automatic upgrade process and which ones were only partially upgraded. The topic on verifying the Derby automatic migration documents how to uncover database errors and diagnostic data from various migration logs. The log messages contain the exact old and new database path names that use to run the manual migration. Note these new path names precisely.
To minimize the risk of migration errors for databases that were only partially upgraded during the automatic migration process, delete the new database. Troubleshoot the original database according to the log diagnostic data, then perform manual migration on the original database.
The following section consists of steps to migrate Derby instances that are accessed through both the embedded framework as well as the Network Server framework. As a migration best practice, ensure the user ID has one of the following authorities:
- Administrator of the application server that accesses the Derby instance
- A umask that can access the database instance
Otherwise, you might see runtime errors about the database instance being read-only.
- Network Server framework only: Ensure that every client of the database can support Apache Derby. Application server clients of the database must run versions 6.02.x or later of the application server.
- Network Server framework only: Take the database offline. No clients can access it during the migration process.
- Examine a sample migration script the application server provides, either db2jmigrate.bat or db2jmigrate.sh. The path of both scripts is app_server_root\derby\bin\embedded. We can modify the script according to the requirements of the environment. For example, we can use the following option to specify the DDL file for the new database:
-DB2j.migrate.ddlFile=filename
- To generate database debug logs when we run the migration script, ensure the debug migration trace is active. By default, this trace function is enabled. Reactivate the debug trace if it is disabled.
- To set the trace options in the dmgr console, click Troubleshooting > Logging and Tracing in the console navigation tree.
- Select the application server name.
- Click Change Log Level Details.
- Optional: If All Components has been enabled, you might want to turn it off, and then enable specific components.
- Optional: Select a component or group name. For more information see the topic on log level settings. If the selected server is not running, you will not be able to see individual component in graphic mode.
- Enter a trace string in the trace string box. In this case, enter one of the following:
- all traces*=all
- com.ibm.ws.migration.WASUpgrade=all
For more information on tracing read the topic on working with trace.
- Select Apply, then OK.
- Specify your old database name and the full post-migration path of the new database name when we run the script. For example: E:\WebSphere\AppServer\derby\bin\embedded>db2jMigrate.bat myOldDB myNewDB The logs from the automatic migration provide the exact path names to specify for both the old database and the target database. You must use this target database name to specify the new database, because your migrated data sources (updated by the WAS migration utilities) now point to the target database name. The following sample text demonstrates how log messages display target database names:
DSRA7600E: Derby migration of database instance C:\temp\migration2\profiles\AppSrv01\ installedApps\ghongellNode01Cell\DynamicQuery.ear\EmployeeFinderDB to new database instance C:\WebSphere\AppServer\profiles\AppSrv01\databases\C__WAS602_AppServer_profiles_AppSrv01_ installedApps_ghongellNode01Cell_DynamicQuery.ear_EmployeeFinderDB failed, reason: java.sql.SQLException: Failure creating target dbFor instances of Derby that are accessed through the Network Server framework, input any name you want for the new database. Remember to modify your existing data sources to point to the new database name.
- When the migration process ends, examine the database migration log to verify the results. The path name of each database migration log is app_server_root/logs/derby/myFulldbPathName_migrationLog.log.
For a successful migration, the database migration log displays a message that is similar to the following text:
Check E:\WebSphere\AppServer\derby\myOldDB_migrationLog.log for progress Migration Completed Successfully E:\WebSphere\AppServer\derby\bin\embedded>Otherwise, the log displays error messages in the format of the following example:
Check E:\WebSphere\AppServer\derby\myOldDB_migrationLog.log for progress ERROR: An error occurred during migration. See debug.log for more details. ERROR XMG02: Failure creating target db java.sql.SQLException: Failure creating target db at com.ibm.db2j.tools.migration.MigrationState.getCurrSQLException(Unknown Source) at com.ibm.db2j.tools.migration.MigrateFrom51Impl.handleException(Unknown Source) at com.ibm.db2j.tools.migration.MigrateFrom51Impl.go(Unknown Source) at com.ibm.db2j.tools.migration.MigrateFrom51Impl.main(Unknown Source) at com.ibm.db2j.tools.MigrateFrom51.main(Unknown Source)...
- For more data about a migration error, consult the debug log that corresponds with the database migration log. The full path name of a debug log file is app_server_root/logs/derby/myFulldbPathName_migrationDebug.log.
The following lines are a sample of debug text.
sourceDBURL=jdbc:db2j:E:\WebSphere\myOldDB newDBURL=jdbc:derby:e:\tempo\myNewDB ddlOnly=false connecting to source db <jdbc:db2j:E:\WebSphere\myOldDB> connecting to source db <jdbc:db2j:E:\WebSphere\myOldDB> took 0.611 seconds creating target db <jdbc:derby:e:\tempo\myNewDB> creating target db <jdbc:derby:e:\tempo\myNewDB> took 6.589 seconds initializing source db data structures initializing source db data structures took 0.151 seconds recording DDL to create db <E:\WebSphere\myOldDB> recording DDL to create db <E:\WebSphere\myOldDB> took 5.808 seconds
Results
The database migration log displays either a Migration Completed Successfully message, or a message containing migration failure exceptions.
- For databases that fail migration, troubleshoot according to the logged error data. Then rerun the migration script.
- To access successfully upgraded databases through the embedded framework, modify your data sources to point to the new database names.
- To access successfully upgraded databases through the Network Server framework, we can use either the DB2 Universal JDBC driver or the Derby Client JDBC driver.
- If we want our existing JDBC configurations to continue to use the DB2 Universal JDBC driver, modify your data sources to point to the new database names.
- To use the Derby Client JDBC driver, which can support XA data sources, modify your JDBC providers to use the new Derby Client JDBC driver class and the new data source implementation classes. Then reconfigure every existing data source to use the correct Derby data source helper class, and to point to the new database name.
Consult the topic on data source minimum required settings, by vendor, for all of the new class names.
Related concepts:
Transaction type and connection behavior
Related
Verifying Apache Derby automatic migration
Work with trace
Reference:
Data source minimum required settings, by vendor
Log level settings
Related information:
IBM Cloudscape product web pages