views:

21

answers:

1

Hi,

I am developing some stored procedures in SQL Server 2008. Some of our customers are running SQL Server 2000.

Is there a way to check whether my queries are compatible without having to install SQL Server 2000? Maybe a transact sql tester?

Regards,

Michel

+1  A: 

You could set the compatibility mode to 80 but it's not guaranteed

I would also suggest installing MSDE at least to validate your code and performance.$

Or simply install full SQL Server 2000 to develop with.

gbn