| Functions and CALL Routines |
| Valid in: | DATA step, PROC SQL, or SCL |
| Syntax | |
| Details | |
| Example | |
| See Also |
Syntax |
| DQLOCALEINFOGET(<`info-type'>) |
specifies the type of locale information that is to be returned. The only valid value is LOADED. If no parameter is specified, LOADED is used by default.
| 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 |
Copyright © 2007 by SAS Institute Inc., Cary, NC, USA. All rights reserved.