July 13, 2009 at 8:20 am
Hello,
My company is going to upgrade SQL Server 2000 to 2008. I’ve successfully deployed SS2008 on test instance. During migration Upgrade Advisor was run which found few incompatibility errors in database’s objects, which actually were corrected.
Now we want to track all incompatibility issues on this instance from scripts enclosed in our applications. A trace which tracks errors has been run and later on I plan to filter those errors to only ones which point to incompatibility issues.
Do you now such lists of incompatibility errors?
The example of this error is:
Msg 1018, Level 15, State 1, Line 7
Incorrect syntax near 'index'. If this is intended as a part of a table hint, A WITH keyword and parenthesis are now required. See SQL Server Books Online for proper syntax.
which is printed when you execute query with index hint without “WITH” keyword.
Any help appreciated.
Cheers,
Bartek
July 13, 2009 at 10:18 am
There are some new events in Profiler/Trace to help with this. Otherwise, not sure there's a list. I'll post this around.
July 13, 2009 at 10:33 am
I've also seen this error when a column was named to be the keyword "index", and it raises that error.
check syscolumns where name='index' and see if that's the issue.
Lowell
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply