<fuego : migrateWE57to60>

Description

Migrates attachment data from ALBPM WE 5.7 to ALBPM 6.0. This task reads attachment information from 5.7 external Process DB and moves data to ALBPM 6.0 Engine DB.

It is assumed that Engine DB has been migrated prior to this task execution and ALBPM 5.7 projects have been republished.

WARNING: When projects are republished, you should not redeploy them. If the deployment version is changed, you will not be able to migrate your attachments.

Required parameters:

The following example shows how to migrate attachments from a ProcessDB in MS SQLServer.


      <fuego:migrateWE57to60 action="migrate_attachments" directoryFile="directory.xml" engineId="engine1">
              <msSqlServerConfiguration
                  host="hostname"
                  port="1433"
                  user="processdbuser"
                  password="password"
                  database="processdb"/>
      </fuego:migrateWE57to60>

 

The following example shows how to migrate attachments from a ProcessDB in Oracle.


      <fuego:migrateWE57to60 action="migrate_attachments" directoryFile="directory.xml" engineId="engine1">
              <oracleConfiguration
                  host="hostname"
                  port="1433"
                  user="processdb"
                  password="password"
                  sid="sidname"
          schema="processdb"/>
      </fuego:migrateWE57to60>

 

Note: Engine preset must exist in directory.xml file. It is defined by default.

Parameters

Attribute Description Type Required?
directorypreset Specify a "preset" for authentication to the BPM directory. String No Defaults to the "engine" preset.
engineid ID of the BPM Engine where processes are deployed String Yes
action Specify the action to take: to migrate attachments or mappings. String ["migrate_attachments", "migrate_mappings"] Yes
verbose Verbose output. boolean No Default is false
fuegobasedir Path to Oracle BPM Enterprise installation directory. File No Defaults to value of fuego.basedir property of your Ant script.
loaderref Reference to BPM classloader. Used internally. Reference No
directoryfile Path to the directory.xml configuration file, used to connect to the BPM directory. File No

Parameters accepted as nested elements

<mssqlserverconfiguration>

Attribute Description Type Required
port int ?
user String ?
password String ?
host String ?
database String ?

<oracleconfiguration>

Attribute Description Type Required
sid String ?
port int ?
user String ?
password String ?
host String ?
schema String No If not set, it takes the value specified by attribute "user"