Icon Collations Table

Structure
CREATE TABLE "Collations"
(
"Name" VARCHAR(40) COLLATE "ANSI_CI",
"Description" CLOB COLLATE "ANSI"
)

CREATE INDEX "Name" ON "Collations"
("Name")

Description
The collations in ElevateDB are dynamic and this table reflects the available installed collations (locales) in the operating system. See the Internationalization topic for more information on collations.

Related DDL Statements
StatementDescription
None
Image