Yep, it looks like SELECT [pref_pk],[pref_prj_pk],[pref_sproj_pk],[pref_defaultlanguage],[pref_solution],[pref_ApplicationTheme],[pref_CustomThemeFullName],[pref_ShowFullBOName],[pref_created],[pref_Version] FROM [dbo].[DTEPreferences] WHERE pref_solution LIKE @pref_solution
is the one causing the problem. The @pref_solution parameter is a VarChar, but SQL Server 2000 allows conversion between Text and VarChar if you use LIKE. Very strange, I'll have to look into this one. The only workaround for now, Fabian, would be to install a SQL Server 2005 Express somewhere and use it as your SF database.