Upgrading SQL Server 2000 to 2005—Say Goodbye to Access 2003 ADP Files!

Flippantly, it appears to be this:

CREATE DATABASE TestDb

ON (FILENAME = 'C:\Test.mdf'), (FILENAME = 'C:\Test.ldf') FOR ATTACH; GO What’s more is that SQL 2005 does not play well with Access *.ADP files. Access Data Projects are not forward-compatible with SQL Server 2005. The current guidance from Microsoft is, “Delete the data connection to the newer SQL Server, and connect only to SQL Server 2000 or earlier versions.”

rasx()