SAS Institute. The Power to Know

SAS(R) Data Quality Server 9.2: Reference

Previous Page | Next Page

Functions and CALL Routines

DQLOCALEINFOLIST Function



Displays the names of the definitions in a locale and returns a count of those definitions.
Valid in: DATA step, PROC SQL, or SCL

Syntax
Details
Examples
See Also

Syntax

DQLOCALEINFOLIST('definition-type' <, 'locale'>)

definition-type

specifies the definitions that are displayed. Valid values are as follows:

  • ALL

  • CASE

  • GENDER

  • GUESS

  • IDENTIFICATION

  • MATCH

  • PARSE

  • PATTERN

  • STANDARDIZATION

locale

(optional) specifies the name of the locale. The value can be a name in quotation marks, the name of a variable whose value is a locale name, or an expression that evaluates to a variable name or to a quoted locale name.

The specified locale must be loaded into memory as part of the locale list.

Default: the first locale in the locale list.
Restriction: if no value is specified, the default locale is used.
See: Load and Unload Locales.

Details

The DQLOCALEINFOLIST function displays in the SAS log the names of the definitions of the specified type in the specified locale. The return value of the function is the total number of definitions that are displayed in the log.


Examples

The following example displays in the SAS log a list of all of the definition names in the first locale in the locale list:

num=dqLocaleInfoList('all');

The following example displays a list of the parse definitions in the DEDEU locale:

num=dqLocaleInfoList('parse', 'DEDEU');


See Also

Previous Page | Next Page | Top of Page