vote up 4 vote down star

What features do you often wish they had in a database?

I guess this would apply to the engine mostly, but some features may need support from client and developer libs.

flag

67% accept rate
This is not a real question. It is far too general to have any meaningful answers – Mitch Wheat Jul 2 at 0:25
maybe, but we have a lot of similar questions on other topics. – eschneider Jul 2 at 0:28
Are you asking for features that don't exist in any database or just not in one we use regularly or...? – docgnome Jul 2 at 0:40
I was thinking features that don't exist in all, but does it matter? – eschneider Jul 2 at 0:42

closed as not a real question by Mitch Wheat, Michael, Steven A. Lowe, Quassnoi, Shog9 Jul 4 at 22:04

16 Answers

vote up 0 vote down

A robust set of string and date functions standardized among RDMS vendors.

link|flag
vote up 0 vote down

I would like to have support for database constraints of arbitrary complexity.

Means I no longer would have to rely on programmers to keep my data at the level of integrity I need.

link|flag
vote up 0 vote down

My whishlist:

  • An advanced query filtering system. Just like the where clause, but with much more advanced capabilities. With the current functionality, I find myself getting all table contents from the database to the client, just to do the filtering in a real programming language. SQL is currently way to limited in functionality.
  • Custom datatypes. In current systems you have "date" and "currency", but I'd like a general type.
link|flag
The extensible DBMS allow you to add new types to the system. IBM Informix Dynamic Server does for one. – Jonathan Leffler Jul 2 at 15:00
vote up 1 vote down

Top desires:

  • A macro language and introspection. Code as data, data as code.
  • function and view variables (ie, something locally scoped)
  • a syntax for removing specific columns from the results set, rather than specifying all but one
  • dynamic database context

A capable macro language would be enough though, if the rest could be implemented with macros.

link|flag
vote up 1 vote down

I once created a SQL-92 DB engine and added the BOTTOM predicate. I found this really useful, and never understood why Microsoft & Sybase would add the TOP predicate, but not the opposite function BOTTOM.

The first response is usually you can get the bottom by changing your sort. Unfortunately, you app may not want the data reversed. For example, I might want to display the last ten messages I've received, with the newest one at end of the list. If I try:

SELECT TOP 10 * from messages ORDER BY message_time desc;

then I'll have to reverse the list in my application. The equivalent would be:

SELECT BOTTOM 10 * from messages ORDER BY message_time;

Most programming functions have a complement. If you have a 'head' method, you expect a 'tail'. If you have MIN, you also expect MAX. Given TOP, I would expect there to also be BOTTOM.

link|flag
vote up 9 vote down

An ALL keyword: if you leave off the WHERE clause on a DELETE or UPDATE query you have to add ALL at the front or else it's a syntax error.

> DELETE FROM pages
ERROR: Missing WHERE
> DELETE FROM pages WHERE url = '/blog/i-hate-you-all'
OK

> UPDATE users SET firstName = 'John', lastName = 'Kugelman'
ERROR: Missing WHERE
> UPDATE ALL users SET firstName = 'John', lastName = 'Kugelman' 
OK
link|flag
Are you going to specify that for DML only? To be consistent I would have to type SELECT ALL firstName, lastName FROM users. – SurroundedByFish Jul 2 at 2:02
Yeah. SELECT ALL would be unnecessary. – John Kugelman Jul 2 at 2:08
Standard SQL provides SELECT [DISTINCT | ALL] ... anyway; it simply isn't explicitly used very often (but it is the default). See: savage.net.au/SQL for instance. – Jonathan Leffler Jul 2 at 14:58
vote up 0 vote down

I would like to see the ability to put a WHERE on an CREATE INDEX and have the optomizer use this information intelligently.

CREATE INDEX ON things_to_do (ThingToDoPK, AllocatedServer) WHERE Done = 'N';

Only rows with Done = 'N' would go into this index. If they were updated to no longer meet the criteria then they would be removed as part of the update. The criteria would be limited to the table the index is on.

At the moment to achieve this one must use function based indexes, materialized views or perhaps partitions. It is not transparent to the query. Seems like it should be relatively easy to implement.

link|flag
Already exists on PostgreSQL: postgresql.org/docs/8.4/… – CesarB Jul 2 at 1:50
vote up 0 vote down

Packages. Oracle does them to one level but not more. Having a more robust way to organize code is always a plus.

Also, The ability to select from a list like: SELECT * FROM (1,2,3,4,5);

Oracle doesn't have that and, well, I wish they did.

Another one is a clean way to make copies of the DB that can also be modified systematically. For example, take a complete snapshow of the database structure and a 'Test' version of some of the data, only a sample of the records and some scrambling of the data.

I guess what I'm looking for in essence is a way to create diffs and patches in a git kind of way.

link|flag
vote up 3 vote down

Some way of being notified of data changes, without polling. Sort of like an Observer pattern for query results.

That way, changes to the underlying data in the database could be reflecting in an instance of a query result in your application.

You could also put query results into a cache that keeps itself refreshed, up to date with respect to the database.

This feature is probably impractical, considering issues like transaction isolation. Also you'd have to have every result set build a bitmap of which rows went into generating that result set. It's a very hard problem to solve in a general way.

link|flag
I think Sql Server 2005> has this? – eschneider Jul 2 at 0:49
"You could also put query results into a cache that keeps itself refreshed, up to date with respect to the database." Isn't this a view ? – Stefano Borini Jul 2 at 0:51
Sql Notification Services? microsoft.com/sqlserver/2005/… – eschneider Jul 2 at 0:53
@Stefano: No, not a view. I mean if you fetch a query result set, sometimes you want to update that result set in your app if the state of data in the database changes. But you don't want to query repeatedly to see if any changes have occurred, which you would have to do with a view just as you would with a base table. – Bill Karwin Jul 2 at 0:57
1  
Oralce can do this: oracle.com/technology/obe/… – WW Jul 2 at 1:02
show 2 more comments
vote up 3 vote down

i'd settle for the ability to organize stored procedures into folders ;-)

link|flag
In Oracle they have schemas which helps with this some, but it causes other issues... – eschneider Jul 2 at 0:46
Yes! Hungarian notation can only be stretched so far. – SurroundedByFish Jul 2 at 1:50
Oracle does not support casing of objects – eschneider Jul 2 at 3:07
vote up 0 vote down

A way to update multiple records at once, say from an array or similar structure.

link|flag
vote up 4 vote down

Actual standards that are consistently supported. Data types is one area where this drives me nuts. Also standard functions for common things (NOW(), SYSDATE, ...).

link|flag
1  
yes, Oracle and bit. – eschneider Jul 2 at 0:39
vote up 11 vote down

To me, the best feature I would love to have is a "fourth-dimension" (meaning time) relational database, meaning that I can perform a query on any snapshot in the past.

It seems overkill, but consider this scenario: you perform a scientific calculation out of a public database at a given time. When you publish, you have to say "we performed this computation with this database as of this date". No one will be able to reproduce your scientific finding (not even you) because the database contents will change with time, and the result you report on the article will no longer be reproducible.

Being able to perform the query on the db exactly as it was at that time would be perfect, and would solve this issue.

link|flag
Four-dimensional? You'd also need latitude, longitude and altitude. – le dorfier Jul 2 at 0:31
deh... fixed ;) – Stefano Borini Jul 2 at 0:33
Well you sort of have the three dimensions: the table, the column and the row. Fourth dimension means that you want to know what was the value at a given column of a given row in a given table at a given time. – Stefano Borini Jul 2 at 0:35
1  
Read the book Temporal Data and the Relational Model for a detailed review of the issues involved here. – Doug McClean Jul 2 at 0:45
Oracle can do this. See oracle.com/technology/deploy/… – WW Jul 2 at 1:01
show 2 more comments
vote up 1 vote down

Row number in query results that could be used to lazily implement pagination, only fetching the specified data. I believe Oracle has this, bue SQL Server does not.

link|flag
2  
as of SQL Server 2005, they do - see ROW_NUMBER msdn.microsoft.com/en-us/library/… – Steven A. Lowe Jul 2 at 0:43
vote up 0 vote down

For T-SQL real, supported custom aggregation functions, a pivot command that dynamically determines the columns and a real, reliable way to select random rows (not ORDER BY NewId).

link|flag
vote up 0 vote down

Obsolete support for database objects. Provide some notification when someone uses a object marked as obsolete. I'm not sure how all this could be done, but I would like to seem effort made. The ability to tag columns would be nice also. The ability to throw an error or a warning and provide a message.

link|flag

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