Hi,

ASFAIK "util_execute migrate" converts the catalog of the database from
ASCII to Unicode. But it has some limitations and is supposed to be used on
databases for SAP R/3. It's not universal.

For that reason it's better to export and import the data via loadercli
which can make this conversion for you. Note that this conversion will work
only from ASCCI to Unicode not vice versa.

You can use the loadercli from a 7.6 to export the data from a 7.3 (not
really shure, but that's the way I did for a 7.4).


bye
Chris

> -----Original Message-----
> From: Clovis Wichoski [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, July 18, 2007 4:04 PM
> To: maxdb@lists.mysql.com
> Subject: Re: Migration SapDB 7.3 to MaxDB 7.6 doubts and problems
> 
> 
> Hi,
> 
> i found a solution, drop all triggers on version SapDB 7.3 
> before create the
> backup for migration, then do backup, restore on 7.6, then 
> recreate manually
> the triggers, this is better, but anyone knows because the 
> triggers dont
> migrate, like tables and stored procedures?
> 
> On 7/17/07, Clovis Wichoski <[EMAIL PROTECTED]> wrote:
> >
> > Hi,
> >
> > I migrated from SapDB 7.3 version to MaxDB 7.6.2.10 using the follow
> > process:
> >
> > commands on dbmcli for version SapDB 7.3:
> >
> > db_offline
> > db_cold
> > util_execute migrate
> > util_connect
> > backup_start completeF
> > db_offline
> >
> > after copy the compleF media to MaxDB 7.6.2.10 directory and run the
> > follow commands on dbmcli in this new version:
> >
> > db_admin
> > util_execute migrate database
> > db_connect
> > db_activate RECOVER completeF
> > db_online
> > load_systab -u dba,pwd
> > sql_recreateindex
> > util_connect
> > backup_start completeF
> > db_offline
> > db_warm
> >
> > with these commands i can migrate from 7.3 to 7.6.2.10 all 
> data are in the
> > new database, but some problems occurs like:
> >
> > [-9205]: System error: AK Catalog information not
> > found:000000000000000000690001
> >
> > that occurs when i update one table that uses triggers on 
> old versions, in
> > mail lists i found the solution for this problem on the message
> > http://lists.mysql.com/maxdb/28223 that in resume says:
> >
> > RENAME T TO SUSPENDED
> > CREATE TABLE T LIKE SUSPENDED
> > INSERT INTO T SELECT * FROM SUSPENDED
> > DELETE SUSPENDED (if possible)
> > recreate all views, synonyms, triggers etc. based on T
> >
> >
> > but, this is a uggly solution and dont a better approach i 
> like to migrate
> > without get any errors of that kind, then the doubt is, 
> there is a another
> > way to migrate without getting this errors? exists any 
> sample using repmcli
> > (SapDB 7.3) and loadercli (MaxDB 7.6) ?
> >
> > thanks for any help.
> >
> > Clóvis
> >
> >
> >
> >
> 

--
MaxDB Discussion Mailing List
For list archives: http://lists.mysql.com/maxdb
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to