What maximum row size means? When I tried to create the following test table,CREATE TABLE [dbo].[tblTest] ( [Col1] [varchar] (20) NOT NULL , [ID] [varchar] (10) NOT NULL , [Col2] [varchar] (8000) NULL , [Col3] [varchar] (8000) NULL ,) ON [PRIMARY]GO
I get a message that warns me that "the table has been created but its maximum row size (16030) 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."Does this mean that the total bytes of a record shouldn't exceed 8060 byte?Canada DBA