How would you maintain separate production anddeveloper databases when working on one machine, which you can toggle transparently? I've seen some close subjects but none of them seem to match.
|
|
|||
|
|
|
Call one database prod and one dev. use a different set of username/password pair for production and development. |
||
|
|
|
|
I typically see this done one of two ways.
I personally prefer the second option, as I find that the first one makes it WAY too easy to accidentally be on the production database. |
||
|
|
|
|
Ideally the production environment shouldn't be on the same host as the development environment (so any accidentally long running or intensive queries don't take down production). One approach I've used in the past where I needed a QA environment and a development environment side-by-side, was to use different instances of SQL Server, which had the added advantage that inter-database queries were relatively "safe", and didn't need changing between environments; Then just have different config files as appropriate. |
||
|
|
