LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (December 2004, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 9 Dec 2004 05:29:14 -0500
Reply-To:     ben.powell@CLA.CO.UK
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         ben.powell@CLA.CO.UK
Subject:      Re: Warning! A _real_ newbie question

On Wed, 8 Dec 2004 11:40:37 -0800, David L. Cassell <cassell.david@EPAMAIL.EPA.GOV> wrote (in part):

>Now look at the output. Do you have a line in the PROC SETINIT output >that >looks like SAS/ACCESS TO PC FORMATS ? If so, then you can use PROC >EXPORT >to create a .csv file or .dbf file that can be read right into MS SQL.

You can export to csv using plain vanilla SAS Base, e.g.

proc export data= work.test outfile= "P:\SAS\Projects\test.csv" dbms=csv replace; run;

Ben.


Back to: Top of message | Previous page | Main SAS-L page