Built-in System Procedures / WAN, Statistics, and User Configuration Procedures |
Start a configured gateway sender process.
SYS.START_GATEWAYSENDER( IN GATEWAYSENDER_ID VARCHAR(128) NOT NULL)
gfxd> call sys.start_gatewaysender ('CLUSTER-1-SENDER');
This example executes the procedure from a Java client:
java.sql.Connection conn = getConnection(); CallableStatement cs = conn.prepareCall("CALL SYS.START_GATEWAYSENDER(?)"); cs.setString(1, "cluster-1-sender"); cs.execute();