Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 17 » SQL Anywhere Server - SQL Reference » SQL statements » Alphabetical list of SQL statements

CREATE SYNCHRONIZATION PROFILE statement [MobiLink]

Creates a SQL Anywhere synchronization profile.

Syntax
CREATE [ OR REPLACE ] SYNCHRONIZATION PROFILE name string
Parameters
  • OR REPLACE clause

    Specifying CREATE OR REPLACE SYNCHRONIZATION PROFILE replaces the definition of the named synchronization profile if it already exists.

  • name

    Specifies the name of the synchronization profile to create. Each profile must have a unique name.

  • string

    Specify a valid option string as described below. Option strings are specified as semicolon delimited lists of elements of the form option-name=option-value. For example subscription=s1;verbosity=high.

Remarks

Synchronization profiles are named collections of synchronization options that can be used to control synchronization.

For options that take a Boolean value, setting the value to TRUE is equivalent to specifying the corresponding option on the command line.

The following values can be used to specify TRUE: TRUE, ON, 1, YES.

The following values can be used to specify FALSE: FALSE, OFF, 0, NO.

When setting extended options, use the following syntax:

CREATE SYNCHRONIZATION PROFILE myprofile 's=mysub;e={ctp=tcpip;adr=''host=localhost;port=2439''}'
Privileges

You must have the SYS_REPLICATION_ADMIN_ROLE system role.

Side effects

Automatic commit.

Standards
  • ANSI/ISO SQL Standard

    Not in the standard.