■複合主キーのデータ型
複合主キーはintで、
片方はidentityを使用。←これが要因?
create table [dbo].[tableA] (
applicationNo int identity not null
, version int not null
, memo nvarchar(512)
, primary key (applicationNo,version)
);
■SQL Serverのバージョン
Microsoft SQL Server Express Edition (64-bit)
10.0.1600.22 (2008)
■接続方式(専用接続、ADO、ODBC
接続モード:内蔵ライブラリによる直接接続
※OLE DB Providerを使わず直接接続するに☑
よろしくお願いします。