What are the technical considerations for running MSSQL and MySQL from the same Windows server?

Our application is running with MySQL, but the client has another application that requires SQL. We want to run them in one box. What are some technical considerations for this configuration ... is it really just a matter of no port conflicts?

0


source to share


1 answer


They will also compete for hard drive, memory and processor usage. The first two are larger than the last. If they are both actively used, they will both want to write / read from disk. You may want to put them on your disk if they are heavily used.



Test it and see how the plan works. For more information, open Performance Monitor and look at the disk and memory statistics.

+3


source







All Articles