I would like to create a table in access via a sql ddl statement. The sql will be executed from a SQL Server DTS package. I have it working provided that I use varchar column types. The varchar matches to access's Text. But I am not sure how to specifiy an Access Yes/No data type for access. Please help!
CREATE TABLE `SAMPLE` (
`ID` VarChar (15) NULL,
`FLAG` YES/NO NULL
)
CREATE TABLE `SAMPLE` (
`ID` VarChar (15) NULL,
`FLAG` YES/NO NULL
)