• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Oracle PL/SQL and MySQL

 
Ranch Hand
Posts: 173
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Folks...

Currently in my system I have installed Oracle PL/SQL. In addition to this, I am now thinking of installing MySQL. Is there any known issue in running both these databases on the same machine? I hope someone can advise or share their experience. Thanks.

regards
John
 
Bartender
Posts: 2407
36
Scala Python Oracle Postgres Database Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"PL/SQL" is simply the proprietary procedural extension to SQL that runs inside Oracle's RDBMS i.e. it is a programming language, not the database.

You should have no problems running MySQL and Oracle on the same machine, although it will depend on your RAM and processor. Oracle and MySQL listen on different standard ports for connections, so it is perfectly possible to have separate sessions running against each database without conflict.
 
John Paterson
Ranch Hand
Posts: 173
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Chris..
reply
    Bookmark Topic Watch Topic
  • New Topic