Date: Tue, 19 Dec 2000 12:45:01 -0500
Reply-To: "Michael S. Zdeb" <msz03@HEALTH.STATE.NY.US>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Michael S. Zdeb" <msz03@HEALTH.STATE.NY.US>
Subject: DSD and V8
Content-Type: text/plain; charset=us-ascii
In case you didn't know (there's so much new 'stuff' in V8)....
Just to add another note about DSD (and DLM=), in V8 they are also available on
the FILE statement to create delimited files. One quick shortcut to write all
variable values in a data set to a comma-separated flat file is....
data _null_;
file 'c:\test.csv' dsd;
set old;
put (_all_) (:);
run;
Mike Zdeb
New York State Department of Health
ESP Tower - Room 1811
Albany, NY 12237
P/518-473-2855 F/630-604-1475
|