Greg - as always, thanks for your kind words.
Carstone: The problems with your CSV files could be caused by a lot of things and would have to be looked at closely to make a determination if it is DB related or not.
I will try to explain a bit. With all future releases of SQL2005 and SQL2008, Microsoft is turning off support for Text and Image datatypes (this includes ntext which the ProductCart Database uses a lot of). The big reason for the NText datatype is for backwards compatibility to SQL2000 and SQL7 and it allows for a very lengthy text entry (millions of characters). You might say whats the problem with that? Well, the big problem is that you cannot group, sort or query text and image datatypes (a DBA's nightmare if you are trying to cleanup corruption in a database)
Up until recently this was our our only option but after the release of SQL2005, Microsoft introduced the nvarchar(MAX) datatype and some others that allow for extended entry (millions of characters) and all but makes the old text and image datatypes obsolete. Now we can search group and sort on this new datatype and every character is index-able (a DBA's #1 wish comes true).
Now to back up that is not to say that SQL2008 cannot handle these old datatypes but it can be tricky getting it to work properly if it does not work out of the shoot (as I have learned). Running anything in compatibility mode is not the same as running it with the correct software it was designed for.
Do not get me wrong, however, SQL2008 is actually a wonderful Database Software and I think will end up overshadowing the fame of both SQL2000 and SQL2005 combined. BUT (you know there has to be a "but" in there), we are still working with several different versions of ProductCart that go back to SQL7 and we still have to maintain a common standard in the DB design.
I really hope my Geek-Speak did not confuse?
------------- Mark Shipp Cognecy Solutions, LLC Hosting/Design/Customization/Database Migration www.cognecy.com www.cognecy.co.uk
|