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.
|
|
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.
|
||||||||
|
closed as not a real question by Mitch Wheat, Michael, Steven A. Lowe, Quassnoi, Shog9 Jul 4 at 22:04 |
|
|
A robust set of string and date functions standardized among RDMS vendors. |
||
|
|
|
|
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. |
||
|
|
|
|
My whishlist:
|
||
|
|
|
Top desires:
A capable macro language would be enough though, if the rest could be implemented with macros. |
||
|
|
|
|
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:
then I'll have to reverse the list in my application. The equivalent would be:
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. |
||
|
|
|
|
An
|
||||||
|
|
|
I would like to see the ability to put a WHERE on an CREATE INDEX and have the optomizer use this information intelligently.
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. |
||
|
|
|
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. |
|||
|
|
|
|
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. |
||||||||||||
|
|
|
i'd settle for the ability to organize stored procedures into folders ;-) |
||||||
|
|
|
A way to update multiple records at once, say from an array or similar structure. |
||
|
|
|
|
Actual standards that are consistently supported. Data types is one area where this drives me nuts. Also standard functions for common things (NOW(), SYSDATE, ...). |
||||
|
|
|
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. |
||||||||||||
|
|
|
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. |
||||
|
|
|
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). |
||
|
|
|
|
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. |
||
|
|