* NTEE Codes (2007 draft update).

VARIABLE LABELS
CODE "Major Code"
TERM_NAME "Term name"
KEYWORDS "Keywords"
DEFINITION "Definition"
SEE_ALSO "See also"
Examples "Examples"
SCOPE_NOTE "Scope Notes"
changeDate "Date record changed or created"
notes "User notes"
NAICS "North American Industrial Classification System"
NAICS_pre2009 "North American Industrial Classification System (previous version)"
NAICS3_pre2009 "NAICS - 1st 3 digits (previous version)"
NaicsName "Name of NAICS code"
MAJGRP "Major group (1st character of NTEE code)"
MAJGRPNUM "Major group number (use for sorting)"
IrsSubsection "Corresponding IRS subsection code (used for only a small number of NTEE codes). For example, most (but not all) industry associations in the S3s or S4s will be exempt as 501(c)(6) trade associations."
NteeXP "Corresponding NTEE-XP code -- a slightly more detailed coding system used prior to late 1990s."
RandNum "Random number between 0 and 1 used for creating samples"
.

.

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.
.