April 24, 2012 at 5:10 am
What happens when I upgrde from sql2k to sql2k8 for text, ntext and image columns?
April 24, 2012 at 5:28 am
the data types remain as they were.
the data types text, ntext and image are still valid data types, but it is recommended to change them to the newer types like varchar(max),nvarchar(max), and varbinary(max);
they are much easier to work with, due to advances in the code and engine; you can use things likesubstrings, and appending stings togheter much easier than with a TEXT field.
Lowell
April 24, 2012 at 5:30 am
Nothing!
But it is recommended to use varchar(max), nvarchar(max) and varbinary(max) instead.
April 24, 2012 at 6:08 am
The others are 100% correct. Nothing happens to those data types. But, to be sure what is going to happen to your databases when upgrading from 2000, you should run the Upgrade Advisor. It's a free download from Microsoft. It will let you know if there are issues with your 2000 databases.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
April 27, 2012 at 11:39 pm
Thanks a lot for your advice
There was a warning on "Data Transformation Services"
Now, I checked what I had in "Data Transformation Services" >> "Meta Data Services Packages"
I removed all the objects there, since they were testee ones. Now there are no objects there, but I still get a warning from the upgrde advisor which says "Existing Meta Data Services Packages should be moved to SQL Server storage (in the msdb database) ..."
And it names them (the removed packages) in a list which says "Upgrade advisor may be unable to scan a package ..." {Although they are already removed)
Can anyone help?
April 30, 2012 at 8:00 am
If you have no DTS packages you want/need to migrate then don't worry about it. The packages you don't want/need will not be created. If that is your only warning you should be good to go. You are going to do this on a test box with a backup right??????? Test it out, then have a few apps hit your new test db and make sure everything is good to go.
_______________________________________________________________
Need help? Help us help you.
Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.
Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.
Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/
April 30, 2012 at 9:52 pm
Many thanks to you 🙂
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply