1.0

Table Of Contents
Syntax
SYS.START_GATEWAYSENDER(
IN GATEWAYSENDER_ID VARCHAR(128) NOT NULL)
GATEWAYSENDER_ID
The name of the gateway sender to start. This attribute cannot be null.
Example
This command starts all primary and secondary senders with the name cluster-1-sender:
java.sql.Connection conn = getConnection();
CallableStatement cs = conn.prepareCall("CALL
SYS.START_GATEWAYSENDER(?)");
cs.setString(1, "cluster-1-sender");
cs.execute();
SYS.STOP_GATEWAYSENDER
Stop a congured gateway sender process.
Syntax
SYS.STOP_GATEWAYSENDER(
IN GATEWAYSENDER_ID VARCHAR(128) NOT NULL)
GATEWAYSENDER_ID
The name of the gateway sender to stop. This attribute cannot be null.
Example
This command stops all primary and secondary senders with the name cluster-1-sender:
java.sql.Connection conn = getConnection();
CallableStatement cs = conn.prepareCall("CALL
SYS.STOP_GATEWAYSENDER(?)");
cs.setString(1, "cluster-1-sender");
cs.execute();
Data Types
The SQL type system determines the compile-time and runtime type of an expression. Each type has a certain
range of permissible values that can be assigned to a column or value of that type.
The special value NULL, denotes an unassigned or missing value of any of the types (columns that have been
assigned as non-nullable using NOT NULL clause or the primary key columns cannot have a NULL value). The
supported types are given below.
BIGINT
Provides 8 bytes storage for long integer values. An attempt to put a BIGINT value into another exact numeric
type with smaller size/precision (e.g. INT) fails if the value overows the maximum allowable by the smaller
type.
For behavior with other types in expressions, see Numeric type promotion in expressions, Storing values of one
numeric data type in columns of another numeric data type.
java.lang.LongEquivalent Java type
java.lang.Long.MIN_VALUE (-9223372036854775808 )Minimum value
573
SQL Language Reference