Skip to main content
Skip table of contents

Virtual Schema Management

SYSADMIN.createVirtualSchema

This procedure creates a virtual schema.

SQL
SYSADMIN.createVirtualSchema(IN name string NOT NULL, OUT id biginteger NOT NULL RESULT)

SYSADMIN.dropVirtualSchema

This procedure deletes a virtual schema. 

SQL
SYSADMIN.dropVirtualSchema(IN id biginteger NOT NULL)

You can get the ID of the virtual schema you want to drop by querying from the SYSADMIN.VirtualSchemas system table with the following statement:

SQL
SELECT "id", "name", "deletable", "creationDate", "lastModifiedDate", "creator", "modifier" FROM "SYSADMIN.VirtualSchemas";;

SYSADMIN.renameVirtualSchema

This procedure renames a virtual schema.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.