Chapter Contents

Previous

Next
SAS/CONNECT User's Guide

Example 3. CEDA: Using the TRANTAB= Option in a LIBNAME Statement


Purpose

If you have a foreign data set that is named FOO.A, and you want SAS to apply the translation table MYTABLE to the data set to translate the characters from foreign encoding to local encoding, you would use the TRANTAB= option.


Program

LIBNAME FOO '.' TRANTAB=MYTABLE;
PROC PRINT DATA=FOO.A;
RUN;


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.