Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Are there any drawbacks to such a configuration?

share|improve this question

4 Answers

up vote 3 down vote accepted

These two databases are totally separate entities and you should have no problems running both of them on the same machine.

Short story: I wanted to test Hibernate with various database dialects, so I ended up installing these databases on one machine:

  • MS SQL server
  • MySQL
  • PostgreSQL
  • Oracle
  • DB2

and I had no problems with all of them running at once. Yes, it was a test server and the poor thing was totally running out of memory, but everything did work.

Only imaginable problem you could run into: configuring the same port for multiple databases. But you wouldn't do that, so it's not a problem.

share|improve this answer
Bah! I ran out of votes for the day. I'll upvote later. – Giffyguy Dec 21 '10 at 21:51

No as far as I know.. I use both MS SQL and MySQL for my websites in the same box and no issues so far (2 years now!)

share|improve this answer

I have never run into an issue; they really don't step on each others' configurations at all.

share|improve this answer

Aside from the resources they would both consume (memory, disk, cpu); barring any purposeful conflicting configuration (by default they will listen on different ports), it would work fine.

share|improve this answer
3  
The MySQL default is 3306; SQL Server's is 1433... – OMG Ponies Dec 21 '10 at 21:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.