Chapter Contents |
Previous |
Next |
TRANTAB= |
Valid in: | configuration file, SAS invocation, OPTIONS statement, Systems Options window |
Category: | Environment control: Language control |
PROC OPTIONS GROUP= | LANGUAGECONTROL |
Syntax | |
Syntax Description | |
Details | |
See Also |
Syntax |
TRANTAB=(catalog-entries) |
Details |
Translation tables are specified in a parenthesized list that has ten positions. The position in which a table appears in the list determines the type of translation table that is specified. Individual entries in the list are separated by commas. See the list of positions and types that follows:
Position | Type of translation table |
1st | local-to-transport-format |
2nd | transport-to-local-format |
3rd | lowercase-to-uppercase |
4th | uppercase-to-lowercase |
5th | character classification |
6th | scanner translation |
7th | delta characters |
8th | scanner character classification |
9th | DBCS system table |
10th | DBCS system table |
To change one table, specify null entries for the other tables. For example, to change the lowercase-to-uppercase table, which is third in the list, specify
options trantab = ( , , new-uppercase-table);
The other tables remain unchanged. The output from the OPTIONS procedure reflects the last specification for the TRANTAB= option and not the composite specification. Here is an example:
options trantab = ( , , new-uppercase-table); options trantab = ( , , , new-lowercase-table);PROC OPTIONS shows that the value for TRANTAB= is
( , , , new-lowercase-table), but both the new-uppercase and new-lowercase tables are in effect.
See Also |
SAS Procedures Guide | |
SAS/CONNECT Software: Usage and Reference |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.