I'm trying to export tables from SQL Server into MS Access using the data import/export feature. Everything works well but for 2 things:
Primary key constraint is not being exported to MS Access and even the identity property. Ideally I wanted the
country_idcolumn to be anAutoNumber/ primary key column in MS access.bitcolumn is being converted toIntegerin MS access. I wanted it to be aYes/Nocolumn.
Can somebody help me with this?
This here is my SQL Server code:
CREATE TABLE country
(
id_country int IDENTITY PRIMARY KEY not null,
my_tinyint tinyint,
my_single real,
my_double float,
my_bit bit,
my_char char(7),
my_longchar text
);