A schema defines the logical structure of the database that contains your data tables. By default, Connect includes four different schemas that serve most users’ needs: delta, xactly, xdms, and staging. (For definitions, see Show Schemas.)

To create a new schema, use CREATE:

1 SQL> create schema playground;

Screen Shot 2016-06-06 at 10.36.53 AM

Check that our new schema has been added:

1 SQL> show schemas;

Screen Shot 2016-06-06 at 10.37.00 AM

NOTE: While Connect allows you to create custom schemas, we recommend sticking to the four default schemas, and using the delta schema for custom tables.