Date: Fri, 19 Jan 2007 11:00:27 +0100
Reply-To: Martin Gregory <gregorym@T-ONLINE.DE>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Martin Gregory <gregorym@T-ONLINE.DE>
Organization: T-Online
Subject: Re: Does anyone know the meaning of the following log note --is
In-Reply-To: <ed52c9100701181138n3c1f71danfa6a5e2d9021cc04@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
This might be why:
1? data _null_ ;
2? put '35'x ;
3? run ;
5
NOTE: DATA statement used:
real time 8.12 seconds
cpu time 0.00 seconds
This doesn't work for '19jan07'd, for instance, but maybe it will at
some point :-)
-Martin
Jake Bee wrote:
> Thank you, I found it. I was actually in one of my keys find
> 'ERROR:'icase. I changed it to
> find 'ERROR:' icase. I did not know that. Thank you very much!
>
> Jake
>
>
> On 1/18/07, data _null_; <datanull@gmail.com> wrote:
>> You place an character like C below immediately following a quoted
>> string. You should find it and put a space.
>>
>> 317 data _null_;
>> 318 c=1e14;
>> 319 put 'NOTE: 'c=;
>> --------
>> 49
>> NOTE 49-169: The meaning of an identifier after a quoted string may
>> change in a future SAS
>> release. Inserting white space between a quoted string
>> and the succeeding
>> identifier is recommended.
>>
>> 320 run;
>>
>> NOTE: c=1E14
>>
>>
>> On 1/18/07, Jake Bee <johbee@gmail.com> wrote:
>>> NOTE 49-169:
>>> The meaning of an identifier after a quoted string
>>> may change in a future SAS release.
>>> Inserting white space between a quoted string
>>> and the succeeding identifier is recommended.
>>>
>>> Thanks!
>>>
>>> Jake
>>>
|