I have a table which have nvarchar(Max) field and it contains character approximately 50,0000 per record. When i insert data, it is OK but when update the data then Error occurred : "Timeout expired The timeout period elapsed prior to compilation of the operation or the server is not responding "
CREATE TABLE [dbo].[tblJudgementText]( [JudgementID] [int] NOT NULL,
[JudgementText] [nvarchar](max) NULL,
[Source] [nvarchar](500) NULL,
[UserID] [int] NULL,
[ModifiedDate] [datetime] NULL,
CONSTRAINT [PK_tblJudgementText] PRIMARY KEY CLUSTERED ( [JudgementID] ASC))
i also try for connection timeout to = 100
2nd way i tried delete first record and insert new one but for deleting recored it throw same error