Specifies the number of rows in a block to be stored in or read from an SPD Server table.
Valid in: | SPD Server |
Default: | 8K compressed |
32K encrypted (uncompressed) | |
Interaction: | Use IOBLOCKSIZE= in conjunction with the COMPRESS= or ENCRYPT= table option. |
/* IOblocksize set to 64K */ data sport.maillist(ioblocksize=65536 compress=yes); input name $ 1-20 address $ 21-57 phoneno $ 58-69 sex $71; datalines; Douglas, Mike 3256 Main St., Cary, NC 27511 919-444-5555 M Walters, Ann Marie 256 Evans Dr., Durham, NC 27707 919-324-6786 F Turner, Julia 709 Cedar Rd., Cary, NC 27513 919-555-9045 F Cashwell, Jack 567 Scott Ln., Chapel Hill, NC 27514 919-533-3845 M Clark, John 9 Church St., Durham, NC 27705 919-324-0390 M ; run;