Creating Regions

Learn how to create a region in a Multi-Region Oracle NoSQL Database.

To create a region, use the CREATE REGION DDL statement. For example:
/* Create the region named us_east */
CREATE REGION us_east;

To drop a region from your application, you use the KVStore class to pass the DDL statement to the executeSync method. For example to create the us_east region:

KVStore.executeSync(“CREATE REGION us_east”);