80 likes | 220 Views
Permanent Formats and Working A cross Platforms. 32bit vs. 64 bit SAS. The different versions of SAS optimize datasets and formats to work as fast as possible. You can open a 32 bit SAS dataset with a 64 bit version of SAS but it is slower than necessary.
E N D
32bit vs. 64 bit SAS • The different versions of SAS optimize datasets and formats to work as fast as possible. You can open a 32 bit SAS dataset with a 64 bit version of SAS but it is slower than necessary. • Formats saved in permanent libraries (as catalogs) may have problems opening on different platforms/operating systems.
Formats Saved in Libraries * x "mkdir C:\Projects\hrp223\cportExample"; libnamecportex"c:\projects\hrp223\cportexample"; procformatlibrary = cportEx; valueisMale 0 = "Female" 1 = "Male" . = "Missing" other = "** bad **" ; run; Save the format here instead of in work. SAS is pushing this idea.
Where to Find Formats • SAS and EG look for formats in the work library. You can tell it to look in other libraries with a line like this: optionsfmtsearch = (cportEx work); Your library name goes here.
Sharing Files • If everyone on your team uses the same version of SAS you can send datasets and catalogs via encrypted email. Send both the files in the library and teach the recipient about optionsfmtsearch. datacportEx.stuff; format sex isMale.; input ID age sex; datalines; 1 83 1 2 82 0 ; run;
proccport • If you need to share datasets and formats across platforms (including 32 vs 64 bit Windows SAS), store the library in cport file and send that (via encrypted email). proccport library = cportEx file="C:\Projects\hrp223\cportExample\example.cport" memtype = all; run; Send this one.
proccimport • Use proccimport on the other machine: libnamecportEx"C:\Projects\hrp223\cportExample"; optionsfmtsearch = (cportEx work); proccimport library = cportEx file= "C:\Projects\hrp223\cportExample\example.cport" ; run;
No Formats… • If somebody forgets to send you the formats you can include this line and the data will display unformatted without errors: optionsnofmterr;