Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Different Development environment than Test & Production environments?

What would you say if a developer wanted to implement a sql2008 dev environment, but we were still forced to use a sql2000 test and sql2000 production environment?

Would there be anything wrong with using sql2008 on a dev server? Of course you'd need to know what functionality you couldn't use, so you didn't have problems migrating your work from the sql2008 servers to sql2000.

like image 472
Jeremy Avatar asked Dec 08 '25 10:12

Jeremy


2 Answers

I'd strongly avoid developing on a different local version than the dev/qa/prod environments. Most of the time nothing will happen, but when it does it can take forever to track down the issue. Not only that, you may never be able to replicate it locally since you have a different environment.

like image 92
Stephane Grenier Avatar answered Dec 11 '25 00:12

Stephane Grenier


Using Basic SQL features - you'll do OK.

I have no idea why you use this environment, but it is best to use as similar environment and DEV, QA and Production as possible, to avoid surprise when going on production.

I think that SQL 2000 uses OLEDB and SQL 2008 you can use ADO.NET provider, And there might be many more differences that you might bump into. so the best advise it NOT TO DO SO.

like image 42
Dani Avatar answered Dec 11 '25 00:12

Dani