* CODE: Load Tab Delimited File V2 - Data Types * AUTHOR: Blink 7 (http://www.blink7.com) * DATE: January 20, 2008 * REQUIREMENTS: * DESCRIPTION: Loader for Tab-Delimited File * Change from V1: Changed Input Specification * -Age now loaded as a number * -Party Affiliation field now longer * NOTES: You will probably need to change the location on * the INFILE statement to the location where you unpacked * namelist.txt ; DATA tab_v2_datatypes; /*specify location of text file and set loading properies*/ INFILE 'r:\namelist.txt' DLM='09'x DSD; /*define how input fields in text file should be loaded*/ INPUT firstname : $16. lastname : $16. city : $16. province : $16. age : 3. party : $32.; RUN;