Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is it Postgres better?

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I want to create a db about 5,000,000 rows.
MySQL or Postgres...?
I want stability, speed.. and open source, or something really cheap
 
depends what you want to do with the data.

MySQL was built to be fast (really fast) for reading.
Postgres has more options, i.e. sub selects, transactions ...

my self, i'd prefer mysql as it's easier to admin and there seems to be more docs for mySQL.

but here's an article that compares the two.

cheers devnull22

--
Apparently if you play the Windows NT CD backwards you hear satanic messages. If you think that's bad, play it forwards and it installs Windows NT !
 
I recommend MySQL for smaller applications (not necessarily in size of data, but in complexity). If your application has some complex interactions that you need to maintain, then PostgreSQL is probably better, since it supports Foreign Key constraints, transactions (well MySQL now has transactions, if you want), and it really has almost all the "enterprise features" that you can find in Oracle or DB2.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top