vote up 2 vote down star
2

I'm looking to use either Firebird or Postgres in my next development project ... largely because both are available under a BSD-like license.

I found a great comparison of the two database at http://www.amsoftwaredesign.com/pg_vs_fb

But this comparison is a good 2+ years old and both databases have come a long ways since.

Does anyone mind updating the comparison table to be relevant for the current versions of both Firebird and Postgres ... or have a link to a site that does a good recent comparison between the two database?

flag

6 Answers

vote up 0 vote down

One more recent comparison (2008):

link|flag
vote up 2 vote down

I can comment on Firebird. The following changed since the first comparison:

Multi Threaded Architecture Available? Yes (super server)

Actually, Classic Server is the preferred server type for scalability. Starting from Firebird 2.5 (currently in beta) there is also an architecture called SuperClassic. I wrote a small post on the differences: SuperServer, ClassicServer or SuperClassic?

Stores Transaction Information in same file as data? Yes (in red)

I don't see how this could be a problem to be written in red. Firebird uses careful writes to ensure the database structure is always consistent.

Temporary Tables? No

Available in Firebird 2.1. Release Notes

Rich Built in Functions? No

Firebird 2.1 also improved this. Release Notes

Multiple authentication methods(i.e. LDAP) No

While there is no LDAP support, Firebird 2.1 allows Windows authentication. Release Notes

Create user defined types? No

I'm not sure what the author means here, but Firebird has had domains forever.

Require backup/restore to compact? Yes (in red)

Arguable. Database space is reused. I find it hard to imagine the need to shrink a database in production.

Use POSIX Regular Expressions in queries? No

Firebird 2.5 (beta) supports regular expressions. Release Notes

Database Monitoring? No

Yes, Firebird 2.1 supports database monitoring via system tables. Firebird 2.5 adds support to trace facilities.
I know at least one excellent database monitoring tool for Firebird. ;)

Ability to query databases on other servers local or remote. No

Firebird 2.5 (beta) can query remote databases. Release Notes

link|flag
vote up 0 vote down

AFAIK the each No in the Postgres column of the page you cited is still a No, although read-only databases can be effectively had by granting only select permissions on all tables in a database. However, there are many new features since 8.2. Some from 8.4:

  1. Windowing Functions
  2. Common Table Expressions and Recursive Queries
  3. Default and variadic parameters for functions
  4. Parallel Restore
  5. Column Permissions
  6. Per-database locale settings

...and some from 8.3:

  1. Full text search is integrated into the core database system
  2. Support for the SQL/XML standard, including new operators and an XML data type
  3. Enumerated data types (ENUM)
  4. Arrays of composite types
  5. Universally Unique Identifier (UUID) data type
  6. Add control over whether NULLs sort first or last
  7. Updatable cursors
  8. Server configuration parameters can now be set on a per-function basis
  9. User-defined types can now have type modifiers

...whether Firebird has these, I don't know.

link|flag
vote up 0 vote down

File System based backups possible
Yes(Postmaster must be stopped)

is not true. since 8.1 (if i remember correctly) it's possible to activate WAL archiving and then creating filesystem based backups without shutting down anything. Look for PITR (point-in-time-recovery) in the docs for more information

link|flag
vote up 0 vote down

I've been working with Firebird for a long time and recommend to NOT use it in any way. They have many fundamental problems that Postgres does not have. Not to say many, just say they don't still have 'alter view' command. To alter a view you must drop and recreate it and all views depending on it. This is one of many misfeatures of FB. It's not correct to compare these DB Engines at all. I've had many cases when Firebird database was corrupted even without power loss, with usual workloads, and so on. If you still deciding, don't use Firebird! If you already chose FB, you will remember my words some time later :)

link|flag
Firebird will have ALTER VIEW firebirdsql.org/rlsnotesh/…. I'm quite surprised with your database corruption ! – Hugues Van Landeghem Nov 6 at 21:38
alter view will be in 2.5 that in beta stage at present days, but i'm using firebird since 1.5 and very angry for this misfeature. 2.0 not solve this issue. Db corruption happens every day at my 1500 installations. – Alexey Sviridov Nov 9 at 13:52
vote up -1 vote down

One important thing is deployment:

  • Firebird doesn't perform well with ext3 on Linux, you should use XFS or something similar.
  • As far as I know, PostgreSQL still doesn't run on Windows servers.
link|flag
Actually since 8.2 (2006), PostgreSQL is a native citizen (no more ugly IPC hacks) on Windows, even with a native installer (.msi). – Steve Schnepp Nov 12 at 8:05

Your Answer

Get an OpenID
or

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