H2 Create Schema

The H2 Create Schema tool allows users to use the RazorSQL GUI to generate the Create Schema DDL statement for H2 databases.

Options on the tool include the following:

Schema Name (the name of the schema to be created)
Authorization (the user that will own the new schema)

Listed below is an example H2 create schema DDL generated by the Create Schema Tool

CREATE SCHEMA TEST_SCHEMA AUTHORIZATION DBA;

H2 Create Schema