* FIPS Counties 2003.

VARIABLE LABELS
STATE "State"
FIPS "2-digit State + 3-digit County FIPS code (Federal Information Processing Standard). See also U.S. Census Bureau State & County QuickFacts."
MSA_NECH "Metropolitan Statistical Area (NCCS file) (list)"
CBSA2003 "Core Based Statistical Area"
cnty_name "County name"
TotPop06 "Census Total Population Estimate by County FIPS for 2006"
TotPop07 "Census Total Population Estimate by County FIPS for 2007"
UrbanInfluence "Urban Influence Code for measuring rurality (2003 U.S. Department of Agriculture)"
TotPop00 "Census Total Population by County FIPS in 2000"
TotPop01 "Census Total Population Estimate by County FIPS for 2001"
TotPop02 "Census Total Population Estimate by County FIPS for 2002"
TotPop03 "Census Total Population Estimate by County FIPS for 2003"
TotPop04 "Census Total Population Estimate by County FIPS for 2004"
TotPop05 "Census Total Population Estimate by County FIPS for 2005"
.

.
VALUE LABELS STATE
"AL" "Alabama"
"WV" "West Virginia"
"WA" "Washington"
"VA" "Virginia"
"VT" "Vermont"
"UT" "Utah"
"TX" "Texas"
"TN" "Tennessee"
"SD" "South Dakota"
"WI" "Wisconsin"
"AK" "Alaska"
"AZ" "Arizona"
"AR" "Arkansas"
"CA" "California"
"CO" "Colorado"
"CT" "Connecticut"
"DE" "Delaware"
"RI" "Rhode Island"
"WY" "Wyoming"
"AS" "American Samoa"
"GU" "Guam"
"PR" "Puerto Rico"
"VI" "Virgin Islands"
"PW" "Palau"
"MP" "Northern Mariana Isl."
"FM" "Fed.States of Micronesia"
"AO" "Foreign"
"FO" "Foreign/Other"
"AE" "Armed Forces Africa, Canada, Europe or Middle East"
"AA" "Armed Forces Americas (except Canada)"
"AP" "Armed Forces Pacific"
"ZZ" "Unknown"
"MH" "Marshall Islands"
"FL" "Florida"
"SC" "South Carolina"
"PA" "Pennsylvania"
"OR" "Oregon"
"OK" "Oklahoma"
"OH" "Ohio"
"ND" "North Dakota"
"NC" "North Carolina"
"NY" "New York"
"NM" "New Mexico"
"NJ" "New Jersey"
"NH" "New Hampshire"
"NV" "Nevada"
"NE" "Nebraska"
"MT" "Montana"
"MO" "Missouri"
"MN" "Minnesota"
"DC" "Dist. of Col."
"GA" "Georgia"
"HI" "Hawaii"
"ID" "Idaho"
"IL" "Illinois"
"IN" "Indiana"
"IA" "Iowa"
"KY" "Kentucky"
"LA" "Louisiana"
"ME" "Maine"
"MD" "Maryland"
"MA" "Massachusetts"
"MI" "Michigan"
"MS" "Mississippi"
"KS" "Kansas"
.
VALUE LABELS UrbanInfluence
"" ""
"12" "Noncore area not adjacent to metro or micro with no own town"
"11" "Noncore area not adjacent to metro or micro with own town"
"10" "Noncore area adjacent to micro with no own town"
"09" "Noncore area adjacent to micro with own town"
"08" "Micropolitan area not adjacent to a metro area"
"07" "Noncore area adjacent to small metro no own town"
"06" "Noncore area adjacent to small metro with own town"
"05" "Micropolitan area adjacent to small metro"
"04" "Noncore area adjacent to large metro"
"03" "Micropolitan area adjacent to large metro"
"02" "Small metropolitan area of less than 1 mill. residents"
"01" "Large metropolitan area of 1 mill. residents or more"
.

SPSS input statement lines

GET DATA
/TYPE=TXT
/FILE="c: emp.csv"
/DELCASE=LINE
/DELIMITERS=","
/ARRANGEMENT=DELIMITED
/FIRSTCASE=2
/IMPORTCASE=ALL
/VARIABLES
. CACHE.
EXECUTE.
DATASET NAME temp WINDOW=FRONT.
.