SAS Institute. The Power to Know

SAS(R) Data Quality Server 9.2: Reference

Previous Page | Next Page

Functions and CALL Routines

DQLOCALEINFOGET Function



Returns information about locales.
Valid in: DATA step, PROC SQL, or SCL

Syntax
Details
Example
See Also

Syntax

DQLOCALEINFOGET(<'info-type'>)

info-type

specifies the type of locale information that is to be returned.

Restriction: if no parameter is specified, LOADED is used by default.
Restriction: The only valid value is LOADED.

Details

The DQLOCALEINFOGET function returns a comma-delimited list of locale names. The ordered list contains the names of the locales that are currently loaded into memory. These locales are the ones that are available for use in data cleansing.


Example

The following example returns the locales that are currently loaded into memory:

loadedLocales=dqLocaleInfoGet('loaded');
put loadedLocales;

If the locales ENUSA and ENGBR are loaded in that order, the return value is ENUSA,ENGBR, and ENUSA is the default locale.


See Also

Previous Page | Next Page | Top of Page