all groups > sql server programming > february 2005 >
You're in the

sql server programming

group:

Cannot create a row of size 8068 which is greater than the allowable maximum of 8060 when add/updating SQL 2000 on Win2003


Cannot create a row of size 8068 which is greater than the allowable maximum of 8060 when add/updating SQL 2000 on Win2003 Jack
2/20/2005 11:18:56 PM
sql server programming: Hello,

I am getting this error:

Cannot create a row of size 8068 which is greater than the allowable maximum
of 8060

When updating/added row to SQL 2000 on Windwos 2003.

Thanks for all you help,

Jack

Re: Cannot create a row of size 8068 which is greater than the allowable maximum of 8060 when add/updating SQL 2000 on Win2003 Dave Frommer
2/21/2005 12:41:12 AM
What is your question?

That error means you are trying to create a row that is longer than the
maximum for SQL Server.

[quoted text, click to view]

Re: Cannot create a row of size 8068 which is greater than the allowable maximum of 8060 when add/updating SQL 2000 on Win2003 Uri Dimant
2/21/2005 7:51:53 AM
Jack
CREATE TABLE #Test
(
col VARCHAR(9000)
)
SELECT * FROM #Test

If you want to stote more than 806 define the column AS TEXT datatype



[quoted text, click to view]

Re: Cannot create a row of size 8068 which is greater than the allowable maximum of 8060 when add/updating SQL 2000 on Win2003 Uri Dimant
2/21/2005 7:59:33 AM
Sorry
I meant more than 8060

[quoted text, click to view]

AddThis Social Bookmark Button