create table CUSTOMERS (CUSTOMER char(8) not null, STATE char(2) null, ZIPCODE char(5) null, COUNTRY char(20) null, TELEPHONE char(12) null, NAME char(60) null, CONTACT char(30) null, STREETADDRESS char(40) null, CITY char(25) null, FIRSTORDERDATE datetime null);
DATE1
|
||
TIME1
|
||
1If a conflict might occur between the Sybase and SAS value for this data type, use SASDATEFMT= to specify the SAS format. | ||
2n specifies the current value for the Adaptive Server page size. |
data yourlib.newtable(bulkload=yes); set work.sasbigtext; run;