* CODE: Load Tab Delimited File v1 - Basic * AUTHOR: Blink 7 (http://www.blink7.com) * DATE: January 20, 2008 * REQUIREMENTS: * DESCRIPTION: Basic Loader for Tab-Delimited File * NOTES: You will probably need to change the location on * the INFILE statement to the location where you unpacked * namelist.txt ; DATA tab_v1_basic; /*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 : $16. party : $16.; RUN;