Icon CREATE WORD GENERATOR

Creates a new word generator.

Syntax
CREATE WORD GENERATOR <Name>
MODULE <ExternalModuleName>
[DESCRIPTION <Description>]

Use this statement to create a new word generator. A word generator is used by ElevateDB to parse and extract the words from a column that are indexed via a text index on that column. The referenced external word generator module must already be created and available to the current session. Please see the Text Indexing topic for more information.

Examples
-- The following statement creates a word generator for
-- use with Pascal code.

CREATE WORD GENERATOR "Pascal"
MODULE "PascalWordGenerator"

Required Privileges
The current user must be granted the system-defined Administrators role in order to execute this statement. Please see the User Security topic for more information.

SQL 2003 Standard Deviations
This statement deviates from the SQL 2003 standard in the following ways:

DeviationDetails
ExtensionThis SQL statement is an ElevateDB extension
Image