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 (March 2006, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Mon, 6 Mar 2006 12:58:22 -0800
Reply-To:   "Choate, Paul@DDS" <pchoate@DDS.CA.GOV>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "Choate, Paul@DDS" <pchoate@DDS.CA.GOV>
Subject:   Re: Importing SPSS file from a URL
Comments:   To: NScroggins <scroggins.nicole@GMAIL.COM>
Content-Type:   text/plain; charset="us-ascii"

Actually I could test it, and it worked great:

filename webpor url 'http://www.sscnet.ucla.edu/issr/da/earthquake/LOMAPRIETA90.POR';

filename porcopy temp;

data _null_; nbyte=-1; infile webpor nbyte=nbyte recfm=s; input; file porcopy recfm=n; put _infile_; run;

proc convert spss=porcopy out=spssdata; run;

hth

Paul Choate DDS Data Extraction (916) 654-2160

> -----Original Message----- > From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of > NScroggins > Sent: Monday, March 06, 2006 12:37 PM > To: SAS-L@LISTSERV.UGA.EDU > Subject: Importing SPSS file from a URL > > I am trying to import a .por file from a web address. > > filename test url 'http://www.a.com/test.por'; > proc convert spss=test out=temp; > run; > > Which did not run, I think I have to have SAS/ACCESS- which I do not > have. Is there any other solution?


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