Looks like this will work great ...excep, I must have a larger than normal dataset as I am receiving the following error:
Server: Msg 1701, Level 16, State 2, Line 1
Creation of table 'stuff1' failed because the row size would be 8239, including internal overhead. This exceeds the maximum allowable table row size, 8060.
a row in SQL server can onlyb be 8060 bytes (not including text and other BLOBs)
your view is a combination of several tables all these column combined are to wide to fit on a 8K page
Eliminate some columns by using a column list instead of *
Sounds about right...I'm thinking I'm not getting the right error though because I have exacly 24 columns in the query most of wich are number fields, but even if I apply a 255 average size to all columns that's still only around 6200. Could it be something else?
well, I found the problem...but not the solution yet.. I have a field that is for some reason being set to varchar 8000 when it creates the table. Any ideas on how to fix, what is causing this?
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.