As featured in: Data Management Solutions Using SAS Hash Table Operations: A Business Intelligence Case Study , and built from this github repository.
importData.sas
1 /* due to github size restrictions, the code below will not work as the XPT
2  files were too big for the repo. Run bizarroball.sas instead.
3 */
4 /* "importData.sas" from the SAS Press book
5  Data Management Solutions Using SAS Hash Table Operations:
6  A Business Intelligence Case Study
7 
8  This program is used to create the three data libraries used in the book.
9  SAS transport format files are used in order to support Window, Unix,
10  and Linux (which includes the SAS University Edition).
11 */
12 
13 proc cimport lib = bizarro file = "&root/bizarro.xpt";
14 run;
15 
16 proc cimport lib = template file = "&root/template.xpt";
17 run;
18 
19 proc cimport lib = dw file = "&root/dw.xpt";
20 run;
21 
22