vote up 0 vote down star
1

I'm a bit frustrated with my MySQL database at the moment, so I've been thinking about all the things I'd like to see in the database of the future. But I thought it would be fun to hear other people's thoughts too--I'm not a pro by any means.

flag
What's your frustration with mySQL? – don.neufeld Sep 17 '08 at 5:25
I started explaining in more detail, but I felt like describing the specific pain points I see would basically be begging answers to the question. – Danny Sep 17 '08 at 5:30
You might want to consider posting your problems as a question, and seeing what discussions arise... Could give you some insight into better ways of asking this. ;-) – Shog9 Sep 17 '08 at 5:33
I don't like questions like this, they aren't specific enough to lead to a meaningful answer. – spoon16 Sep 17 '08 at 5:36

15 Answers

vote up 1 vote down

The future is not with SQL, the lowest common denominator with a crippled functional language. Okay, at least it is somewhat standardized.

Try object prevalence (cl-prevalence, Hibernate) or on-disk object databases (e.g. Elephant).

link|flag
vote up 0 vote down

What the database of the future is depends a lot on your need. I think we will see a broader landscape with more options than using the classical relational databases. New technology like data stream management systems for contigous real time queries, xml databases for storing document-centric documents, column stores, data warehouses etc.

But the relational model is far from dead yet. It would be best if you could give more details about your frustrations so we could find a future for your problem, not just the whole broad scope of databases.

link|flag
vote up 0 vote down

I prefer Oracle and consider MySQL to be a toy database, although MySQL has got (few) useful features that don't exist in Oracle.

My favourite feature is PL/SQL, a very powerful programming language that can be used for Stored Procedures, triggers and "Packages", units of procedures and other stuff inside of the DB. Meanwhile I tend to writing code that does mass data processing mostly inside of the database without costly interaction between Db and app.

I don't believe that we will see a switch to object-oriented databases soon because relational databases do quite well what's sufficient for 90% of all applications and can be made working for the rest.

By the way, Oracle supports flat files, like requested by Shog9 here. You can mount them as "external tables". I've used that for mass data import yet, works quite nicely.

link|flag
vote up 1 vote down

A temporal database would be nice. No more having to do time joins by hand anymore. Automatic auditing too. Sigh.

For progress prediction/reporting.... wouldn't that be nice.

I have an open bug to implement something like an accurate progress bar myself. I'm going to record command object execution times. We'll have a reference system's command execution times recorded as well, so users can see if there "seems to be a problem" or not.

All I have to do is work a a neat way to parametize the query to predict execution tiem for the GUI. Maybe a polynominal. In a perfect world it could be self-fitting to the actual data.

(I already do something like this to predict print progress rates.)

link|flag
vote up 0 vote down

I wish I could say OODB, but no OODBs have really made a break in the market.

link|flag
vote up 0 vote down

Depending on the application you could get away with using a full text search engine (apache lucene / apache solr) to store your data. With this solution you can configure which "columns" or data fields are indexed and simply search all fields with one call. No more generating sql statements based on attribute values in a data object.

Also, if you want to add additional fields to your data index (or storage) you can simply add the field and re-index. It's likely you won't need to change any code to add an additional field to your search.

It's also handy that these full text search engine's usually have some type of paging system built in.

link|flag
vote up 2 vote down

The largest problem with current database systems (imho) is the fact that you have to think in terms of the tables and structures of the database system. You can't work in objects or save them directly (yes you can build abstractions above and around them). I think the future of databases is probably going to a more object-centric view (think like serialization). I would love to spend more time thinking in terms of my problem space objects rather than how should this normalize to a relational system...

link|flag
You should try db4o. – jfar Apr 25 at 5:22
vote up 0 vote down

decibel: Which ORMs and frameworks are you specifically talking about when you say that they don't know how to interact with the database? I'd be very interested to hear your opinions as I work with a number of them.

link|flag
vote up 6 vote down

abandoning SQL and implementing the relational model correctly!

link|flag
It would be nice, but I'm quite pessimistic about it – Andrew from NZSG Dec 22 '08 at 15:09
vote up -4 vote down

WebCould is another new technology. Cloud computing is going to change the way we deal with Backend systems, or in most of the cases we might not need a database for the next generation(Cloud aware) applications.

Of course I am not talking about enterprise level business applications.

link|flag
I voted up, then voted down. Although I've never worked on enterprise level business applications I'm unsure where Cloud != them. – jfar Apr 25 at 5:21
vote up 8 vote down

I think much of what's missing in current database usage isn't in the database itself; it's in the ORMs, frameworks and applications that are interacting with the databases. It's extremely common to see code that just doesn't know how to interact with a database in a way that leverages the capabilities of the database.

To turn that around and try and answer your question; what I think is missing from databases is an easy way to create an actual API between a database and the applications using it. SQL isn't really an API that's useful here, because it means intimately tying the application in with the structure of the database. An example of a useful API is creating stored procedures/functions for every action that the applications need to perform, but that currently requires a lot of extra work in the application.

What I'd also like to see is more powerful procedural languages in the database that still make it very easy to interact with the database. Postgres allows you to use languages like Perl and Python inside the database, but the interaction between the language and the database is nowhere near as clean and easy as it is in plpgsql. On the other hand, plpgsql is not a very powerful language; it's only real benefit is how easy it is to interact with the database. Having something like a more powerful plpgsql would make it easier to create a database API, at least on the database side.

link|flag
vote up 2 vote down

Some solution like SQL Server Data Services could be the future of storage paradigm

link|flag
vote up 1 vote down

Flat files!

link|flag
How do you replace joins with flat files? E.g. For somewhere like on Google App Engine's datastore? – Danny Sep 17 '08 at 5:31
You denormalize to the point where joins are unnecessary. – Shog9 Sep 17 '08 at 5:39
This, I think, is a somewhat valid answer. I've been saying for years that developers are overly dependent on databases. I've seen single a column*row table to store an admin pwd, people try to stuff large content files into a DB, etc. Does hierarchical data need to be in a RDMBS? Maybe no – Stu Thompson Sep 17 '08 at 6:19
I agree with Stu: A lot of people (esp. in the startup community) immediately jump into using SQL, even though it is often not the best solution. I'm hoping GAE will start engineers thinking about their storage design again, instead of just tossing it all into SQL. – 0124816 Sep 17 '08 at 6:26
Heh... This is one of my least-popular answers, but shucks, Flat Files are always the future... Just like COBOL, you can't kill an "ok" idea. :-p – Shog9 Oct 10 '08 at 3:37
vote up 3 vote down

What are you frustrated with? Performance? I think if you were more clear on what you find wrong with a current Relational Database, we might be able to have a discussion (although that isn't really what stackoverflow is about, so maybe a better question would be "What one feature is the most lacking in current relational databases?")

link|flag
vote up 0 vote down

Cloud computing might be interesting and Object Database (ODBMS)

link|flag

Your Answer

Get an OpenID
or

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