Chapter Contents |
Previous |
Next |
SAS Companion for the OpenVMS Operating Environment |
Nonnative data must be converted before it can be accessed. There are two ways to convert nonnative data:
data a; set b; run;
This code reads file B, which is in nonnative format, and creates a native version A.
A limitation of the one-time-only conversion is that the OpenVMS VAX platform supports a minimum numeric variable length of 2 bytes. The OpenVMS Alpha platform supports a minimum numeric variable length of 3 bytes. Therefore, using this method to move data from the VAX platform, which supports 2-byte numeric storage, to the Alpha platform, which supports 3-byte numeric storage, is not permitted. Instead, to move data from the VAX platform to an Alpha platform, you must use the VAXTOAXP procedure. Consequently, there is a potential loss of numeric precision when you move data from a VAX platform to an Alpha platform. For more information, see Data Representation. For more information about the VAXTOAXP procedure, see VAXTOAXP.
Note: In Version 8, the
VAXTOAXP procedure increases
VAX numeric variables of length two to seven characters by one character to
minimize loss of precision.
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.