Contents Index sa_migrate_create_tables system procedure sa_migrate_drop_proxy_tables system procedure

ASA SQL Reference
  System Procedures and Functions
    System and catalog stored procedures

sa_migrate_data system procedure


Function 

Migrates data from the remote database tables to the target Adaptive Server Anywhere database.

Syntax 

sa_migrate_data ( local_table_owner )

Permissions 

None

Side effects 

None

See also 

sa_migrate system procedure

sa_migrate_create_remote_table_list system procedure

sa_migrate_create_tables system procedure

sa_migrate_create_remote_fks_list system procedure

sa_migrate_create_fks system procedure

sa_migrate_drop_proxy_tables system procedure

Migrating databases to Adaptive Server Anywhere

Description 

The sa_migrate_data stored procedure is used with the other migration stored procedures. These procedures must be executed in the following order:

  1. sa_migrate_create_remote_table_list

  2. sa_migrate_create_tables

  3. sa_migrate_data

  4. sa_migrate_create_remote_fks_list

  5. sa_migrate_create_fks

  6. sa_migrate_drop_proxy_tables

This procedure migrates the data from the remote database to the Adaptive Server Anywhere database for tables belonging to the user specified by the local_table_owner argument.

When the tables on the target Adaptive Server Anywhere database do not all have the same owner, you must execute this procedure for each user whose tables have data that you want to migrate.

As an alternative, you can migrate all tables in one step using the sa_migrate system procedure.

Parameters 

local_table_owner    The user on the target Adaptive Server Anywhere database who owns the migrated tables. This user is created using the GRANT CONNECT statement. A value is required for this parameter.

For more information, see GRANT statement.

Example 

The following statement migrates data to the target Adaptive Server Anywhere database for tables that belong to the user local_a.

CALL sa_migrate_data( 'local_a' )

Contents Index sa_migrate_create_tables system procedure sa_migrate_drop_proxy_tables system procedure