vote up 5 vote down star
3

There have been recommendations to use Firebird as a enterprise alternative to Oracle, MSSQL, MySQL, PostGre.

I'm planning to move some our SQL Server databases to viable alternatives and I'm interested in Firebird as a possibility (alongside Postgres and MySQL).

Question

Why shouldn't I use Firebird? What problems do you usually encounter while using Firebird?

NB: Please include version number.

flag

PostGresql is a really great alternative for MSSQL. In a project few years ago we have chosen PostGresql over MSSQL cause of money and I have appreciate it. – Daok Sep 17 at 12:43
On Firebird Web Site : Is there a feature you would like to request ? tracker.firebirdsql.org/secure/Dashboard.jspa/… – Hugues Van Landeghem Sep 17 at 17:50

6 Answers

vote up 6 vote down check

There are many obstacles to adopting Firebird in an enterprisey environment:

  • Sysadmins / DBAs aren't familiar with it, and therefore may ban it outright. Admittedly, this is a chicken-and-egg problem.
  • Dearth of up-to-date and searchable technical documentation.
  • Lack of proper auditing support.
  • Lack of DDL triggers.
  • Deficient authorization support.
  • Narrow range of built-in functions (although this has improved recently). Developers frequently need to develop user-defined functions (UDFs), which must be in a native dll installed in the database server's installation tree. This complicates deployment.
  • Incomplete SQL language support for BLOBs.
  • No built-in support for bulk data import/export (it's possible, but convoluted).
  • It's needlessly complicated to deploy databases remotely.

The above is as of version 2.1

link|flag
"Sysadmins / DBAs aren't familiar with it" True, but probably because you don't need them with Firebird – Hugues Van Landeghem Sep 17 at 17:30
"Lack of proper auditing support." ibphoenix.com ib-aid.com ibexpert.com can do this... I have more than 500 Firebird server used by client of software I made but never need them. – Hugues Van Landeghem Sep 17 at 17:35
"Lack of DDL triggers" Scheduled for version 3.0. But I know Oracle have, SQL Server too but I don't know which open source database have ? – Hugues Van Landeghem Sep 17 at 17:40
@Hughes: In an enterprise environment, the sysadmins/DBAs decides which RDBMS is used, not the developer. I work on an application in the medical field, to which HIPAA-like requirements apply. This explains my focus on relatively obscure topics such as auditing and DDL triggers. – Paul Lalonde Sep 17 at 18:08
@Paul: for auditing, perhaps you can get what you want here upscene.com/products.audit.iblm_main.php/…. – Hugues Van Landeghem Sep 17 at 21:02
show 1 more comment
vote up 1 vote down

No Scalable (SMP/multi-core friendly) engine with the shared page cache

Actually we have this : Firebird ClassicServer or SuperServer

You can also check Firebird tracker

Nothing is perfect :P

Firebird 2.1

link|flag
It's more an improvement than a failure story :P – Hugues Van Landeghem Sep 9 at 18:28
vote up 1 vote down

Unrestorable backups, for example.

link|flag
You can try the "-no_validity" switch with gbak More here : destructor.de/firebird/gbak.htm – Hugues Van Landeghem Sep 9 at 22:13
vote up 4 vote down

The Firebird website makes it difficult to find technical information quickly. There's no search feature, for example.

The documentation itself was clearly designed for PDF and print media, not the web, which makes it very hard to navigate from one section to another.

You'll also find that much of the documentation assumes you're familiar with older versions of the Interbase database.

The quantity and quality of technical information is an important consideration for enterprise databases. More popular or more mainstream databases have larger communities and tend to have better technical resources.

link|flag
vote up 1 vote down

Sometimes the corporate environment doesn't look at open source with good eyes, usually because of "corporate culture". I know this is changing, but we still have some companies with this mentality.

Fact is I haven't seen many corporations (at least in the market we usually work) using Firebird. But I have seen a lot using MySQL and PostreSQL. This doesn't mean it's bad, but it's a fact people consider: When you see that "nobody" uses something, specially in the corporate world, you usually don't trust it.

What you should be asking is: what advantages are people saying to you to use Firebird? Do the other options (MySQL, PostgreSQL) have it? If so, choose which one is more used and have better documentation and user base.

EDIT: Out of curiosity, why is my answer with -1? If an answer is off-topic or not useful, I understand the negative comment even without justification, but why set simply set -1, specially when the last paragraph says almost the same as the most voted question in this thread?

link|flag
vote up 1 vote down

Right now, all I can find are these problems:

  • Firebird doesn't support many indices (unlike PostgreSQL)

  • Firebird doesn't support many partitioning methods (unlike PostgreSQL and MySQL).

  • Firebird doesn't integrate with LDAP (for Windows Active Directory and other SSO/central management systems), unlike PostgreSQL.

These are from Wikipedia's Comparison of RDBMS's:

http://en.wikipedia.org/wiki/Comparison%5Fof%5Frelational%5Fdatabase%5Fmanagement%5Fsystems

I looked into Firebird for one of its strongly hyped releases in case it was an idea to replace PostgreSQL or MySQL with it, but found fundamental problems that made it sounds like a toy by comparison. Unfortunately I can't remember exactly what these were now, and it was only documented in the intranet of a company I used to work for, to which I no longer have access. Could be that I got it wrong back then, or that the problems are fixed. However, my advice would be to do a LOT of research before banking on Firebird.

link|flag
1  
"Firebird doesn't support many indices" -- what does it mean? "Firebird doesn't integrate with LDAP" -- starting with FB 2.1 there are three authentication methods: 1) native, 2) trusted -- uses Windows Active Directory 3) mixed – Andrei Sep 18 at 10:58
"However, my advice would be to do a LOT of research" This is a general rule for choosing database : I think ! – Hugues Van Landeghem Sep 18 at 21:44
Andrei: see the linked page for what it means. There are clear comparisons with postgresql etc. there. – Lee B Sep 18 at 23:21

Your Answer

Get an OpenID
or

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