I got a SQL Server PriceLists table:
CREATE TABLE [dbo].[PriceLists](
[PriceListId] [tinyint] IDENTITY(1,1) NOT NULL,
[PLName] [varchar](20) NULL,
CONSTRAINT [PK_PriceLists] PRIMARY KEY NONCLUSTERED
When I link it into Access 2007, Access sets the PriceListId to Long Integer (which is incorrect).
When I link other tables where the TinyInt is not "AutoNumber" (in Access jargon), it links correctly as a Byte field.
Any clue about properly attaching the table to have the PriceListId as an AutoNumber, Byte field?