Vad betyder detta, vad har jag gjort för fel?
Warning: The table 'Articletbl' has been created but its maximum row size
(16042) exceeds the maximum number of bytes per row (8060).
INSERT or UPDATE of a row in this table will fail if the resulting
row length exceeds 8060 bytes.
CREATE TABLE [User].[Articletbl] (
[Articleid] [int] IDENTITY (1, 1) NOT NULL ,
[Title] [nvarchar] (4000) COLLATE Finnish_Swedish_CI_AS NULL ,
[Notes] [nvarchar] (4000) COLLATE Finnish_Swedish_CI_AS NULL ,
[Appear] [int] NOT NULL ,
[Active] [bit] NOT NULL ,
[Regdate] [datetime] NULL
) ON [PRIMARY]
GO