Icon WordGenerators Table

Structure
CREATE TABLE "WordGenerators"
(
"Name" VARCHAR(40) COLLATE "ANSI_CI",
"Description" CLOB COLLATE "ANSI",
"ModuleName" VARCHAR(255) COLLATE "ANSI_CI",
"CreateSQL" CLOB COLLATE "ANSI_CI",
"DropSQL" CLOB COLLATE "ANSI_CI"
)

CREATE INDEX "Name" ON "WordGenerators"
("Name")

Description
This table contains the defined word generators in an ElevateDB configuration. Word generators are used by the full-text indexing functionality in ElevateDB to parse text and separate the text into distinct words. This is important when you wish to parse the text in a different fashion than the default in ElevateDB. You can find out more about text indexing in the Text Indexing topic.

Related DDL Statements
StatementDescription
CREATE WORD GENERATORCreates a new word generator
ALTER WORD GENERATORAlters an existing word generator
DROP WORD GENERATORDrops an existing word generator
RENAME WORD GENERATORRenames an existing word generator
Image