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 (February 2003, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 25 Feb 2003 12:01:42 -0600
Reply-To:   Tomás Cámara <tchx0507@PMICIM.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Tomás Cámara <tchx0507@PMICIM.COM>
Subject:   Re: Reading data from Reuters via any method
In-Reply-To:   <OFA86877E3.BC9CEA1E-ON88256CD8.0060E87F@rtp.epa.gov>
Content-type:   text/plain; charset=iso-8859-1

Thanks for answering, David.

The Reuters data I am trying to access are embedded in a real-time data rendering software called “Kobra”, which is a Visual Basic tool provided by Reuters. Evidently I have no access to the tables feeding the data, but through this tool. Hence, my efforts of trying a DDE approach. Problem is: It seems that SAS recognizes the objects I want to read, but reads it in too fast (my guess) and only reads in an error (“N/A”) instead of the data (a sleep call doesn’t make a difference, since the problem appears the moment SAS tries to read the data and reads them too fast). The following code is the one I tried.

filename info DDE "reuter|idn!'PGA126,IRGcol 9'"; data lesen;INFILE info;input beobachtung $;RUN;

The folks at SAS Techsupport mailed me a solution today, that might work, but I haven’t tried it out yet and it seems not very simple (the nicest proof (code) of a theorem (programming problem) has always been the shortest one). So if there are any additional suggestions out there, I’d thank them.

-----Original Message----- From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of David L. Cassell Sent: Tuesday, February 25, 2003 11:28 AM To: SAS-L@LISTSERV.UGA.EDU Subject: Re: Reading data from Reuters via any method

Tomás Cámara <tchx0507@PMICIM.COM> wrote (again): > I asked this before, but restricted to DDE methods. Since I haven't had any > success reading in data from Reuters to SAS with DDE: Does someone have any > type of experience reading data from Reuters to SAS?

Perhaps you could write back to the list and tell a little more about *how* you are getting the Reuters data. As far as I know, there are several ways to acquire it. Are you getting it through the SSL layer of SAP? If so, SAS has a way to access SAP data. Are you getting it through a URL? If so, SAS has a way to access URLs using the url engine of the LIBNAME statement. Are you getting it in yet another way?

Without a little clearer idea of your access method, the list may have trouble helping you more.

HTH, David -- David Cassell, CSC Cassell.David@epa.gov Senior computing specialist mathematical statistician


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