To deploy SQL Anywhere remote databases, you need to create the databases and add the appropriate publications and subscriptions. To do this, you can customize a prototype remote database.
When deploying a starter database to multiple locations, it is safest to deploy databases that have a null remote ID. If you have synchronized the databases to pre-populate them, you can set the remote ID back to null before deployment. This method ensures that the remote ID is unique because the first time the remote database synchronizes, a unique remote ID is assigned. Alternatively, the remote ID can be set as a remote setup step, but it must be unique.
See Setting remote IDs.
To deploy MobiLink remote databases by customizing a prototype
Create a prototype remote database.
The prototype database should have all the tables and publications that are needed, but not the data that is specific to each database. This information typically includes the following:
For each remote database, perform the following operations:
If the transaction log is held in the same directory as the remote database, the log file name does not need to be changed.
The SQL script can be a parameterized script. For information about parameterized scripts, see PARAMETERS statement [Interactive SQL], and Using SQL command files.
When you use the Create Synchronization Model Wizard to create your MobiLink client application, you can deploy your database using a wizard. See Deploying models.
The following SQL script is taken from the Contact sample. It can be found in samples-dir\MobiLink\Contact\customize.sql. (For information about samples-dir, see Samples directory.)
PARAMETERS ml_userid, db_id; go SET OPTION PUBLIC.global_database_id = {db_id} go CREATE SYNCHRONIZATION USER {ml_userid} TYPE 'TCPIP' ADDRESS 'host=localhost;port=2439' OPTION MEM='' go CREATE SYNCHRONIZATION SUBSCRIPTION TO "DBA"."Product" FOR {ml_userid} go CREATE SYNCHRONIZATION SUBSCRIPTION TO "DBA"."Contact" FOR {ml_userid} go commit work go |
The following command executes the script for a remote database with data source dsn_remote_1:
dbisql -c "dsn=dsn_remote_1" read customize.sql [SSinger] [2] |
Send feedback about this page via email or DocCommentXchange | Copyright © 2008, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.0 |