Icon Databases Table

Structure
CREATE TABLE "Databases"
(
"Name" VARCHAR(40) COLLATE "ANSI_CI",
"Description" CLOB COLLATE "ANSI",
"Attributes" CLOB COLLATE "ANSI",
"Path" VARCHAR(255) COLLATE "ANSI_CI",
"InMemory" BOOLEAN,
"EncryptedCatalog" BOOLEAN,
"CatalogCharacterSet" VARCHAR(30) COLLATE "ANSI_CI",
"CatalogVersion" DECIMAL(19,2),
"CreateSQL" CLOB COLLATE "ANSI_CI",
"DropSQL" CLOB COLLATE "ANSI_CI"
)

CREATE INDEX "Name" ON "Databases"
("Name")

Description
This table containes the defined databases in an ElevateDB configuration. Each database in ElevateDB is defined with path information that determines the folder where the database will store its catalog and table files.

The CatalogCharacterSet column represents the character set used by the database, and the values are as follows:

Character SetDescription
ANSIThe module database the ANSI character set
UnicodeThe database uses the Unicode character set

Information The CatalogCharacterSet and CatalogVersion columns are populated by reading the actual database catalog on disk. Please see your product-specific manual for the relevant settings that allow you to turn this feature on or off.

Related DDL Statements
StatementDescription
CREATE DATABASECreates a new database
ALTER DATABASEAlters an existing database
DROP DATABASEDrops an existing database
RENAME DATABASERenames an existing database
Image