mshubin's Avatar
mshubin 4
18 Asked
22 Answered
4 Best
0
No one has voted on this question yet :(
3 years, 5 months ago

What is your preferred database?

Do you use MySQL, MySQL-Cluster, PostgreSQL, Oracle, SQL-SERVER, etc?

Edit: I'd like to hear about all databases, relational and non-relational (bigtable, hbase).
Tip for best answer: M$1.00
Separate topics with commas, or by pressing return. Use the delete or backspace key to edit or remove existing topics.

You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.

M$

What is Your Answer?

0
0
0

10 Answers

2
pvera's Avatar
pvera | 3 years, 5 months ago
4
Is the customer Microsoft-centric? SQL Server all the way. No-brainer in Microsoft shops, ad it has fantastic developer tools. It has always been my favorite since the move from 6.5 to 7. 2005 and above is just tasty.

Is the customer filthy rich and the application has to serve ten gazillion people? Oracle is the way to go. Oracle is cool because the same RDBMS runs in all kinds of big iron servers. You can start with a small Windows server, then if the business takes off, move on to big Windows, then to Unix, etc. and still run the same RDBMS. If you try to do this with SQL Server you'll be moving from Windows to bigger Windows to lots of Windows.

The one thing that always drove me nuts about Oracle: the user tools were designed by morons. This forced people to get REALLY GOOD at using the CLI. The end result is a generation of Oracle ninjas, which as a by product meant that the first generation of GUI tools that came from Oracle were, well, crap. Java-based crap. We are talking over 200MB of crap to install on a machine simply so it can be a client. I have no clue how it is now, but as of 4-5 years ago I knew Oracle DBAs that would rather use the Data Transformation Services tool in SQL Server to transfer data between two Oracle data sources, since it was less painful than doing it through the Oracle provided GUI tools.

Of course, from the bad came the good. A company called Benthic came out of nowhere with a really decent set of tools, really cheap too, that put Oracle basically on par with SQL Server 7 and 2000. God bless them.

Is the customer cheap or would rather spend money on development than on licenses? Either MySQL or PostgreSQL.

Can't argue with cheap, and you can pay for commercial support for both databases. If you are dealing with the *nix world, odds are you will probably spend more time looking at MySQL and PG than anything else.

Also, PG is object oriented, this raises all sorts of interesting possibilities.

Do I hate my customer and I want to doom him and make his life hell? Filemaker. My previous employer had ten years of business contacts, leads, follow ups, etc. on one single lousy Filemaker database, which would get corrupted every few months. What doomed the database is that Filemaker lets you do whatever you want, even if it is stupid from the point of view of database design. The end result is ten years of duct-taped programming by people that don't know a thing about database programming concepts.

I imagine that in the hands of a qualified programmer you can do magic with Filemaker, but in the hands of a d*****s it has no limits. It has more potential for mayhem than Access.
source(s):
Too many years dealing with this issue.

You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.

M$
mshubin's Avatar
mshubin | 3 years, 5 months ago Report

I tend to agree that M$ SQL has some good developer tools. Maybe I'm just saying this because I prefer unix, but my issue with anything that has to do with doing web development with microsoft tools is you have to deal with the OS. C# isn't all-in-all a terrible language, but its been my experience that doing anything in windows server is like pulling teeth when doing the same thing on linux would take a single command... But you would probably say the same thing about any unix type os.

mshubin's Avatar
mshubin | 3 years, 5 months ago Report

Do you have an opinion on any non-relational databases?

Also, now that Sun Microsystems has purchased mysql the enterprise edition of mysql has support that might rival Oracle. They also give you lots and lots of choices when it comes to how you want to run it.

pvera's Avatar
pvera | 3 years, 5 months ago Report

My main beef with SQL Server is non-data related issues. Like the machine choking whenever any of the db files is bigger than the total amount of physical RAM in the machine. Or the stupid thing keeping a huge query running even if it knows there's less room in the logs drive than the minimum amount of space needed to log the transaction.

For example: you are doing an insert with 6 million rows, and it doesn't try to predict disk usage, so what it does is it fills the stupid drive, then it sits like an idiot until somebody wonders why the job takes forever to finish.

That kind of thing.

And yes, there are certain things in Windows that just take too much work, and we take them for granted in *nix environments. I am ambidextrous, I work fine regardless of OS, but it drives me nuts when I see that every single possible *nix in the universe running Apache knows how to do url rewrites, but you can't do this straight out of the box in Windows 2000 or 2003. It's just stupid.

As for non-relational databases, no, I haven't tried unless you want to count clunkers hacked together by duct taping Access and Excel.

Report Abuse

Post Reply Cancel
2
papuccino1's Avatar
papuccino1 | 3 years, 5 months ago
4
I like MySQL because it's free and perfect for my personal study use.

You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.

M$

Report Abuse

Post Reply Cancel
0
laudato's Avatar
laudato | 3 years, 5 months ago
4
The answer to this question really depends on what you want to use it for and what kind of background you have. Oracle and Microsoft SQLServer are very robust and scalable. I tend to favor SQLServer because of the flexibility of its stored procedures and the richness and ease-of-use of the Microsoft application development tools optimized for use (Visual Studio and .NET).

If your needs are more limited, Microsoft Access is hard to beat. It is a very inexpensive yet capable relational database management system, complete with easy-to-use wizards to create databases, create forms, applications, etc. It works really well as a user-friendly front end to a SQLServer back end.

Although all of the databases you mention are SQL "standard," they all have their own flavor and idiosyncrasies. Proficiency in one does not necessarily translate easily to the others, so choose wisely.

You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.

M$
mshubin's Avatar
mshubin | 3 years, 5 months ago Report

Actually I should have asked about other ways to store data. Here at mahalo we use mysql-cluster and Hbase. Hbase is really interesting and works very well for what we use it for.

In the past the answer to everything seemed to be a relational database and I always felt that in some cases it was just too structured whereas a column-family oriented structure just fits better. It's great that now there seems to be more choices out there.

Report Abuse

Post Reply Cancel
0
bhasky's Avatar
bhasky | 3 years, 5 months ago
4
If you have the money to spend for enterprise use
Oracle..no surprises..solid database..good support

You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.

M$

Report Abuse

Post Reply Cancel
0
justinluey's Avatar
justinluey | 3 years, 5 months ago
4
As a few others have mentioned it really depends on the project and the experience of the user. I do recommend that all web developers learn and use MySQL, it is free, very flexible and easy to use and is supported by almost all web hosting companies and CMS (Content Management Systems). It works great and is very easy to setup with packages like Wordpress (blogging) , PHPBB (forums), and MediaWiki (the software used for wikipedia).

phpMyAdmin is a great package for setting up and editing your MySQL databases and again its included with almost every hosting package you can buy online.

You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.

M$

Report Abuse

Post Reply Cancel
0
joeman's Avatar
joeman | 3 years, 5 months ago
4
SQLite
source(s):
personal use

You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.

M$

Report Abuse

Post Reply Cancel
0
merlin's Avatar
merlin | 3 years, 5 months ago
4
My preferred database is not necessarily a Relational Database. However, your question details specify a suite of relational database engines. Among them, I would have to say Postgre.

Postgre is just as fast as MySQL's InnoDB, even faster, and has traditionally been more densely featureful, which appeals to the Oracleists. If you require blazing fast full text search, then you should use MySQL with the MyISAM engine; however, you will be doing so at the risk of dataloss. In all other cases, postgre is superior.

You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.

M$
mshubin's Avatar
mshubin | 3 years, 5 months ago Report

I did put 'etc' in there, but I'm in agreement that out of the ones I named postgres is superior. @merlin, what is your favorite non-relational database?

merlin's Avatar
merlin | 3 years, 5 months ago Report

@mshubin : I have found a lot of use for Object Oriented model and Object-Relational models; however, there are a dizzying array of database models and aside from technological superiority, like many things, it kind of comes down to popularity. Right now, Relational is the most popular model, and it may be for a while, but it wasn't always, and it certainly won't be forever.

See http://www.unixspace.com/context/databases.html for more information about various database models.

Report Abuse

Post Reply Cancel
0
tomashugo's Avatar
tomashugo | 3 years, 5 months ago
4
I use MySQL database with PHP and it fills all my purposes and i like it too much.

Some time ago i was playing with Google Appengine Appstore that is an api to Google big table and it is very interesing too. With datastore we don't need to create tables and schema and we're able to create new table properties on the fly and the properties are also 'smart' types like "User, Date, Category" etc...

You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.

M$

Report Abuse

Post Reply Cancel
0
girldrummernw's Avatar
girldrummernw | 3 years, 5 months ago
4
The easiest most intuitive database by far is Filemaker Pro now in version 9.0. It comes with both Mac and Windows versions in the same box and is very flexible, fast, and intuitive. Though I use Access as needed my heart always wants to use Filemaker. Check it out and see if it will do what you need.

http://www.amazon.com/Filemaker-Inc-TL959LL-A-Pro/dp/B000SSRASO/ref=sr_1_1?ie=UTF8&s=software&qid=1230677391&sr=1-1

http://www.filemaker.com/products/index.html?homepage=fmp_product_line

http://www.softwarebrands.co.uk/images/FileMaker%20Pro%209.jpg


http://www.youtube.com/watch?v=uRnLWPJz37Y
source(s):
personal experience
Amazon.com
Youtube
Filemaker.com

You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.

M$

Report Abuse

Post Reply Cancel
-1
bvienneau's Avatar
bvienneau | 3 years, 5 months ago
4
MySQL its the most widely used free database. There will be some cases where products do not support postgreSQL. And well the others cost money.

You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.

M$

Report Abuse

Post Reply Cancel

Learn something new with our FREE educational apps!

Private lessons in the comfort of your own home. Get back in shape or finally pick up a guitar with our great experts guiding you the whole way!
Learn Guitar
Learn Hip Hop
Learn Pilates