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 (May 2002, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 2 May 2002 03:52:13 -0700
Reply-To:     oeleboele <oeleboele@LYCOS.NL>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         oeleboele <oeleboele@LYCOS.NL>
Organization: http://groups.google.com/
Subject:      Re: writing in binary
Content-Type: text/plain; charset=ISO-8859-1

Hi David

I used this little piece of code: (don't mind what it does, its just a test)

//WRTBIN EXEC SAS6,WORK='5000,1000' //UITFILE DD DSN=BF0175.IVS.OUT,DISP=OLD

DATA INLEZEN; VAR1 = 10; RUN;

DATA _NULL_; FILE UITFILE; SET INLEZEN; PUT @1 VAR1 BINARY8.; RUN;

And this what I got from it:

Command ===> *********************** 00001010 ***********************

It writes the 00001010 as ebcidic text and not in binary, I mean that combination of 1's and 0's should be 1 byte.

Hans


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