Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この問題を回避するにはどうすればよいですか:
値 NULL を列 'rowguid' に挿入できません。列は NULL を許可していません。INSERT は失敗します。
サンプル クエリは次のとおりです。
insert into tablename (col1, col2, col3) values('v1', 'v2', 'v3')
次の例に従います。
CREATE TABLE [dbo].[Files]( [id] [int] IDENTITY(1,1) NOT NULL, [IdFile] [uniqueidentifier] unique ROWGUIDCOL NOT NULL, [Title] [nvarchar](max) NULL, [File] [varbinary](max) FILESTREAM NULL, CONSTRAINT [PK_Table_1] PRIMARY KEY CLUSTERED ( [id] ASC ))