DLXS Database Upgrade Utility

From DLXS Documentation

Jump to: navigation, search

Main Page > Working with DLXS Components > Working with DLXS Utilities and Applications > DLXS Database Upgrade Utility

These instructions assume you are upgrading from a version N MySQL database to a version N+1 database.

Contents

[edit] Overview

This document describes the upgrade process for the dlxs database. This document assumes you are upgrading from a version N MySQL database to a version N+1 database. See the table Database Versions.

Each version of the database is meant to be run with a specific version of DLXS. For example, version 5 of the database works only with versions 12 and 12a of DLXS. If you need to have two or more versions of DLXS running, you will need to set up a database with the appropriate version for each DLXS installation. If this is of interest to you, contact DLXS Help for guidance in doing this.

Below is a series of steps to follow to upgrade your database. You should upgrade the database after installing the DLXS middleware since the upgrade script is part of the installation and depends on values you supply during installation.

[edit] Step 1. Dump a copy of your version N MySQL database

Use the mysqldump command line client to dump a copy of your current version 6 MySQL DLXS database. For example:

   % mysqldump -u dlxsadm -p dlxs_vN > dlxs_vN_dump.sql

[edit] Step 2. Create an empty MySQL database

Create an empty MySQL database specifying the name you want it to have for your new DLXS installation, e.g. dlxs_vN+1. Please refer to this section of the installation instructions for information on creating a MySQL database.

[edit] Step 3. Populate the empty MySQL database with the dump

Use the mysql command line client to load the dump of your version N DLXS database into the empty database that will become a version N+1 DLXS database after you upgrade it.

   % mysql -u dlxsadm -p dlxs_vN+1 < dlxs_vN_dump.sql

[edit] Step 4. Run the upgrade_N_N+1 script

NOTE: When running upgrade scripts from the command line make sure your DLXSROOT environment variable is set to the root of the correct install tree for the given script. For example, to run upgrade_7_8 for release 15, if the root of your release 15 install tree is /usr/local/dlxs15 your DLXSROOT value should be /usr/local/dlxs15. On the other hand, if you are running upgrade_6_7 you would set DLXSROOT to /usr/local/dlxs14, assuming that that is the root of your 14 install tree.

Bring the database into which you loaded the dump up to version N+1 using the $DLXSROOT/bin/db/upgrade_N_N+1 script. There are no command line parameters to the script. It reads the server name, database name, username, and password out of $DLXSROOT/lib/LibGlobals.cfg as supplied by you at install time.

    % cd $DLXSROOT/bin/db; ./upgrade_N_N+1

IMPORTANT NOTE
Due to schema changes to the dynamic browse tables (ItemBrowse, ItemBrowseCounts, ItemColl) that are not backward compatible, the upgrade process will create new empty versions of these tables. Following the upgrade process it will be necessary to re-generate the data rows for these tables for collections other than the sample data collections sampletc_utf8, sampleic, and samplefa. Please consult the dynamic browse database building documentation


Once the upgrade is completed you will have a version N+1 DLXS database compatible with you new installation of DLXS middleware.

[edit] Release 15 changes

Release_15 database changes that would be applies to a release 14 version 7 database to upgrade it to version 8:
ALTER TABLE ImageClass ADD `field_rel_weight` textADD
UPDATE ImageClass set `field_rel_weight`= WHERE class='image'UPDATE
ALTER TABLE GroupData ADD `hold` varchar(250)ADD
UPDATE GroupData set `hold`= WHERE class='bib'UPDATE
UPDATE GroupData set `hold`= WHERE class='text'UPDATE
UPDATE GroupData set `hold`= WHERE class='findaid'UPDATE
UPDATE GroupData set `hold`= WHERE class='image'UPDATE
ALTER TABLE Collection ADD `hlbtop` textADD
UPDATE Collection set `hlbtop`= WHERE class='bib'UPDATE
UPDATE Collection set `hlbtop`= WHERE class='text'UPDATE
UPDATE Collection set `hlbtop`= WHERE class='findaid'UPDATE
UPDATE Collection set `hlbtop`= WHERE class='image'UPDATE
ALTER TABLE Collection ADD `hlbsecond` textADD
UPDATE Collection set `hlbsecond`= WHERE class='bib'UPDATE
UPDATE Collection set `hlbsecond`= WHERE class='text'UPDATE
UPDATE Collection set `hlbsecond`= WHERE class='findaid'UPDATE
UPDATE Collection set `hlbsecond`= WHERE class='image'UPDATE
ALTER TABLE Collection DROP `hlb2nd`DROP
ALTER TABLE ImageClass ADD `searchtypes` textADD
UPDATE ImageClass set `searchtypes`= WHERE class='image'UPDATE
ALTER TABLE ImageClass ADD `valuelistflds` textADD
UPDATE ImageClass set `valuelistflds`= WHERE class='image'UPDATE
ALTER TABLE TextClass ADD `imagedisplaysizes` textADD
UPDATE TextClass set `imagedisplaysizes`= WHERE class='text'UPDATE
ALTER TABLE TextClass DROP `imagedisplaysizes`DROP
ALTER TABLE Collection ADD `customfallbackwebdirs` textADD
UPDATE Collection set `customfallbackwebdirs`= WHERE class='bib'UPDATE
UPDATE Collection set `customfallbackwebdirs`= WHERE class='text'UPDATE
UPDATE Collection set `customfallbackwebdirs`= WHERE class='findaid'UPDATE
UPDATE Collection set `customfallbackwebdirs`= WHERE class='image'UPDATE
ALTER TABLE TextClass ADD `quickbrowse` varchar(250)ADD
UPDATE TextClass set `quickbrowse`= '1' WHERE class='text'UPDATE
CREATE TABLE `ItemUsage` (`itemid` varchar(255) NOT NULL default , `collid` varchar(50) NOT NULL default , `class` varchar(64) NOT NULL default , `dt` datetime default NULL, `sid` varchar(32) NOT NULL default , PRIMARY KEY (`class`,`collid`,`itemid`(63),`sid`)) ENGINE=MyISAM DEFAULT CHARSET=utf8CREATE

[edit] OAI Database Upgrade

DLXS_15 This section describes a manual upgrade procedure for DLXS OAI functionality.
Prior to release 15 this functionality was based on two tables (oai, oaisets) in the dlxs database.

As of release 15, several new tables have been added and are part of the oai database instead of the dlxs database:

  • oai_backup
  • oai_marc
  • oai_marc_or
  • oai_mods
  • oai_test
  • oaisets_backup

To upgrade the OAI database from release 14 to 15 follow these steps:

  1. Create the oai database with the same permissions as the dlxs database
  2. Dump oai, oaisets from the dlxs database
  3. Create empty tables using $DLXSROOT/misc/db/db-dump-OAI-release15.sql
  4. Load the dump of oai, oaisets into the oai database
  5. Drop oai, oaisets from the dlxs database


Top

Personal tools