SAS 9.1 Language Reference Concepts

Definition

column-binary data storage

How to Read Column-Binary Data

To read column-binary data with SAS, you need to know:

The following table lists and describes SAS column-binary informats.

Table 21.5: SAS Informats for Reading Column-Binary Data

Informat Name

Description

$CB w.

reads standard character data from column-binary files

CB w.

reads standard numeric data from column-binary files

PUNCH. d

reads whether a row is punched

ROW w.d

reads a column-binary field down a card column

To read column-binary data, you must set two options in the INFILE statement:

For example, to read column-binary data from a file, use an INFILE statement in the following form before the INPUT statement that reads the data:

infile file-specification or path-name recfm=f lrecl=160;

Note: The expansion of each column of column-binary data into two bytes does not affect the position of the column pointer. You use the absolute column pointer control @, as usual, because the informats automatically compute the true location on the doubled record. If a value is in column 23, use the pointer control @23 to move the pointer there.

Description of Column-Binary Data Storage

The arrangement and numbering of rows in a column on punched cards originated with the Hollerith system of encoding characters and numbers . It is based on using a pair of values to represent either a character or a numeric digit. In the Hollerith system, each column on a card has a maximum of two punches, one punch in the zone portion, and one in the digit portion. These punches correspond to a pair of values, and each pair of values corresponds to a specific alphabetic character or sign and numeric digit.

In the zone portion of the punched card, which is the first three rows, the zone component of the pair can have the values 12, 11, 0 (or 10), or not punched. In the digit portion of the card, which is the fourth through the twelfth rows, the digit component of the pair can have the values 1 through 9, or not punched.

The following figure shows the multi-punch combinations corresponding to letters of the alphabet.

row punch 12 X X X X X X X X X - - - - - - - - - - - - - - - - - zone 11 - - - - - - - - - - X X X X X X X X X - - - - - - - portion 10 - - - - - - - - - - - - - - - - - - - X X X X X X X 1 X - - - - - - - - X - - - - - - - - - - - - - - - - 2 - X - - - - - - - - X - - - - - - - X - - - - - - - 3 - - X - - - - - - - - X - - - - - - - X - - - - - - digit 4 - - - X - - - - - - - - X - - - - - - - X - - - - - portion 5 - - - - X - - - - - - - - X - - - - - - - X - - - - 6 - - - - - X - - - - - - - - X - - - - - - - X - - - 7 - - - - - - X - - - - - - - - X - - - - - - - X - - 8 - - - - - - - X - - - - - - - - X - - - - - - - X - 9 - - - - - - - - X - - - - - - - - X - - - - - - - X alphabetic character A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Figure 21.1: Columns and Rows in a Punched Card

SAS stores each column of column-binary data in two bytes. Since each column has only 12 positions and since 2 bytes contain 16 positions, the 4 extra positions within the bytes are located at the beginning of each byte. The following figure shows the correspondence between the rows of a punched card and the positions within 2 bytes that SAS uses to store them. SAS stores a punched position as a binary 1 bit and an unpunched position as a binary 0 bit.

Figure 21.2: Column-Binary Representation on a Punched Card

Категории