I have been working on porting some Oracle DB code to Postgres, and I am noticing some nomenclature differences (Schemas vs Databases) etc. What are some good resources for dealing with these gotchas? Any tips? What needs to be kept in mind?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Just take a look at the wiki What do you mean by "schemas vs databases" ? PostgreSQL does have schema's, just like databases. By default it doesn't have a schema for every user, but that's up to you.

link|improve this answer
Does Oracle have the concept of different databases in the same server instance? – dubdubdubdot Feb 25 '10 at 21:41
@Grasper. Oracle uses the following terminology -- a database is a set of files. An instance is the running software which manages the database. Multiple instances can access the same database (think Oracle's clustering), but no instance can manage multiple databases. – Adam Musch Feb 25 '10 at 21:59
It sounds to me like he is referring to the article I wrote about Pg vs MySQL on wikipedia years ago. en.wikipedia.org/wiki/… If he is, this is pretty specific to MySQL. The part in there about Oracle was not part of my original submission to wikipedia. – Evan Carroll Feb 26 '10 at 20:32
feedback

Your Answer

 
or
required, but never shown

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