| Date: | Tue, 23 Sep 2003 13:20:55 -0400 |
| Reply-To: | Gerhard Hellriegel <ghellrieg@T-ONLINE.DE> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Gerhard Hellriegel <ghellrieg@T-ONLINE.DE> |
| Subject: | Re: displaying a char variable over 255 in length |
|---|
The max linesize seems to be 256. PROC PRINT cannot exceed taht. I don't
know, maybe PROC REPORT.
The simplest thing you can do:
data _null_;
set test;
file print;
put a $300.;
run;
That would split the line in 2 or more if necessary.
On Tue, 23 Sep 2003 13:03:21 -0400, Igor Kurbeko
<ikurbeko@ATHEROGENICS.COM> wrote:
>I have only one character variable in my dataset. It's 300 in length (we
>use SAS 8.02 so it's possible).
>
>But whenever I try to run proc print on it I see only the first 252
>characters out of 300.
>
>
>
>And here's my LOG:
>
>
>
>
>
>WARNING: Data too long for column "x"; truncated to 252 characters to
>fit.
>
>
>
>The question is how do I get to display all 300 characters?
>
>
>
>Thanks,
>
>
>
>Igor Kurbeko
>
>Clinical Programmer Analyst
>
>678 336 4328
>
>ikurbeko@atherogenics.com
>
>
>
>A waygoer will overcome the way
>
>
>
>
|