MicroStrategy ONE

Create language statement

Creates a language that is based on another language.

Copy
CREATE LANGUAGE "language_name" BASE ON LANGUAGE "base_language" [AVAILABLE FOR (METADATA | DATA)]

where:

  • LANGUAGE "language_name" is the name of the new language.

  • BASE ON LANGUAGE "base_language" is the name of the language to base the new language on, of type string.

  • METADATA indicates that the language can be used for metadata objects.

  • DATA indicates that the language can be used for data.

Example

Copy
CREATE LANGUAGE "Polish Sales" BASE ON 
 LANGUAGE "Polish";