I wand to upgrade my varchar(8000) to more data(I mean , I want to increase 8000) what I will do for this?
Hoping for your support.
I wand to upgrade my varchar(8000) to more data(I mean , I want to increase 8000) what I will do for this?
Hoping for your support.
On SQL Server 2005 and up, you can upgrade to VARCHAR(MAX) (up to 2 GB of data):
ALTER TABLE dbo.YourTable
ALTER COLUMN YourColumn VARCHAR(MAX)
That should do it.