Chapter Contents |
Previous |
Next |
Moving and Accessing SAS Files across Operating Environments |
Note: Because neither CMS hosts nor OS/390 hosts use
filename extensions, you must use PROC CONTENTS to determine the SAS base
engine that was used to create SAS files on these hosts.
Here is an example of using PROC CONTENTS on a data set in the OS/390 environment:
proc contents data=test.records; run;Here is an excerpt of the output:
The SAS System The CONTENTS Procedure Data Set Name: TEST.RECORDS Member Type: DATA Engine: V8
The output reports that the data set RECORDS is a member of type DATA that was created with the V8 engine.
You can also use PROC CONTENTS to find out whether a data set's host format is foreign or native to the accessing host. For more information, see Finding Out if You Can Update a File That Was Created with CEDA.
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.