How do i do an update on a field of type 'ntext'. It basically is a field full of 1s and 0s spread over 14 rows and 300 columns. I need to do update a particular 0 to 1.
A normal update command is screwing up the whole application.
Why not use varchar field?
if you use SQL Server 2005 you could use varchar(MAX)
SQL Server 2000 you could use varchar(8000) which is enough for you -> 14*300 = 4200, so you could add 3800 chars more .
If you use varchar field ALL can be done more easily.
No no i just want to do an 'update' turn a 0 to a 1 on the existing value. It seems to be screwing up when i run a simple update. I am using SQL Server2000
Working with nText is very limiting. However, if you have less than 4000 characters in the data, there are some things you can do to make it a lot easier.
-George
"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.