| Date: | Wed, 21 Mar 2007 11:17:59 -0400 |
| Reply-To: | "data _null_;" <datanull@GMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | "data _null_;" <datanull@GMAIL.COM> |
| Subject: | Re: Passing the SAS File name in a variable.. |
|
| In-Reply-To: | <200703211504.l2LAnAGk028200@malibu.cc.uga.edu> |
| Content-Type: | text/plain; charset=ISO-8859-1; format=flowed |
It is impossible to know what the "original poster" is calling a SAS
file. This is what SAS calls SAS Files.
SAS Files
When you work with SAS, you use files that are created and maintained
by SAS, as well as files that are created and maintained by your
operating environment, and that are not related to SAS. Files with
formats or structures known to SAS are referred to as SAS files. All
SAS files reside in a SAS data library.
On 3/21/07, Gerhard Hellriegel <gerhard.hellriegel@t-online.de> wrote:
> I seem to be the only one who does not understand what is meant with "SAS
> file". Everybody but me seems to understand NOT a "SAS" file, but a simple
> sequential flat-file. Is that right? Ben seems to be lucky with that, he
> does not say anything about it!
> Gerhard
>
>
> On Wed, 21 Mar 2007 10:25:58 -0400, ben.powell@CLA.CO.UK wrote:
>
> >%let path=C:\temp;
> >data a;
> >length filename nm $100.;
> >infile "&path\*.txt" filename=filename;
> >informat temp $20.;
> >input temp;
> >nm=filename;
> >run;
> >
> >HTH.
>
|