Previous Page | Next Page

Functions and CALL Routines

DQLOCALEINFOGET Function



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

Syntax
Arguments
Details
Example
See Also

Syntax

DQLOCALEINFOGET (<'info-type'>)

Arguments

info-type

(optional) is the value that is analyzed to determine the locales that are currently loaded into memory. If no parameter is specified, the default, LOADED is used. 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 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, ENUSA,ENGBR is returned. ENUSA is the default locale.


See Also

Function and autocall macro:

DQLOCALEINFOLIST Function

%DQPUTLOC AUTOCALL Macro

Previous Page | Next Page | Top of Page