Specifies how SAS automatically renames columns that contain characters that SAS does not allow, such as $, to valid SAS column names.
| Valid in: | LIBNAME statement |
| Default: | DBMS |
| Supports: | All |
specifies that the columns are renamed to valid SAS column names. Disallowed characters are converted to underscores. If a column is converted to a name that already exists, a sequence number is appended to the end of the new name.
specifies that DBMS columns are renamed to the format _COLn, where n is the column number (starting with zero). The LIBNAME option PRESERVE_COL_NAMES=YES and the global option VALIDVARNAME=ANY must also be specified.
Dept$Amt is
renamed to _COLn.
If you specify DBGEN_NAME=DBMS, the Dept$Amt column
is renamed to Dept_Amt.