Question

[edit]
I should note that I need to do this on a live production server. The MS SQL Server is already attached to our website and supports a 3rd party ERP package. I want to set up a separate database that I can code against for some auxiliary pages and internal-use apps) which will be completely independent (mostly for security, but also because I prefer mySQL) from the ERP solution.
[end edit]

The MS SQL 2005 express db is already installed and in use, so I don't want to hose it.

Will this create problems, or have you done it successfully?

Was it helpful?

Solution

For a development machine this is safe to do. The two database servers listen on different ports, so there is no problem of running both at the same time.

I wouldn't recommend it though for a production system.

OTHER TIPS

Aside from performance issues, assuming they're both continuously used, there shouldn't be a problem.

Like Assaf said, the only thing you should worry about are possible performance issues with both database services getting run at the same time. Other than that you should have no worries concerning the integrity of the two. They are completely separate and should not have any sort of conflicts.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top