Use Create statements to create functions, indexes, procedures,
schemas, synonyms, tables, triggers, and views.
CREATE ALIAS
Creates an alias for a user-defined procedure result processor.
CREATE ASYNCEVENTLISTENER
Installs an AsyncEventListener implementation to GemFire XD peers in a specified server group.
CREATE DISKSTORE
Disk stores provide disk storage for tables and queues that need to overflow or persist (for instance when using an asynchronous write-behind listener).
CREATE FUNCTION
Create Java functions, which you can then use in an expression.
CREATE GATEWAYRECEIVER
Creates a gateway receiver to replicate data from a remote GemFire XD cluster.
CREATE GATEWAYSENDER
Creates a gateway sender to replicate data to a remote GemFire XD cluster.
CREATE GLOBAL HASH INDEX
Creates an index that contains unique values across all of the members that host a partitioned table's data.
CREATE HDFSSTORE
Creates a connection to a Hadoop name node in order to persist one or more tables to HDFS. Each connection defines the HDFS NameNode and directory to use for persisting data, as well as GemFire XD-specific options to configure the queue used to persist table events, enable persistence for the connection, compact the HDFS operational logs, and so forth.
CREATE INDEX
Creates an index on one or more columns of a table.
CREATE PROCEDURE
Creates a Java stored procedure that can be invoked using the CALL statement.
CREATE SCHEMA
Creates a schema with the given name which provides a mechanism to logically group objects.
CREATE SYNONYM
Provide an alternate name for a table or view.
CREATE TABLE
Creates a new table using GemFire XD features.
CREATE TRIGGER
A trigger defines a set of actions that are executed when a delete, insert, or update operation is performed on a table. For example, if you define a trigger for a delete on a particular table, the trigger's action occurs whenever someone deletes a row or rows from the table.