Aug 11
22
MS SQL 2000 to MS SQL 2008 R2 Import Issues
Leave a comment »
These are just a quick list of things that I have noticed during imports from Microsoft SQL 2000 to Microsoft SQL 2008 R2 that, if you are doing this, you should watch for. This is probably not the complete list of issues, but one's that I have noticed so far:
- Stored Procedures do not get imported. You will need to deal with these manually.
- User-Defined Functions do not get imported. You will need to deal with these manually.
- Views get imported as tables instead of Views. I've imported these manually as well.
- There are much more strict rules in SQL 2008 R2, so some bad programming that may have passed in Stored Procedures and Functions in 2000 will not just come across, even manually to 2008 R2. You may have some programming to deal with.
If you have more you would like to add, please feel free and I'll update the list. I've found that this upgrade for a database is a royal pain unless it's a simple database to begin with.