vote up 5 vote down star
2

I'm in graduate school and about to start a project related to databases. The professor has provided a list of topics for us to choose from, but we are also free to suggest something else we're personally interested in. The basic format of the project is quite simple:

  1. I'll study 2-3 research papers related to the area I end up choosing
  2. I'll prepare a presentation (where "presentation" is somewhat loosely defined)
  3. I'll prepare a 4-5 page summary of what I have learned

I really want to find a topic that is exciting and that would ideally make a good presentation (I would love some form of a "working demo"). So far my search has left me intrigued about the Stanford Entity Resolution Framework. I figured StackOverflow would be an excellent resource to tap for this. What are some exciting areas of database research that you know of? Thank you for taking the time to help me out.

flag

closed as subjective and argumentative by Shog9, Jeff Atwood Nov 7 at 7:10

5 Answers

vote up 1 vote down

Negative Databases

In a negative database, the negative image of a set of data records is represented rather than the records themselves.

link|flag
Interesting reads. I wonder what my effective U universe of fixed-length records would be on 4X trading :) – Xepoch Nov 7 at 2:55
vote up 3 vote down

Semantics-based storage issues (like the one SERF addresses, but also all kinds of semantic web related storage possibilities) are very hot in academia right now (a bit less so in industry, as the returns don't really promise to come anytime soon;-).

Non-relational, highly scalable databases are extremely hot in industry research, but not so much in academia. So, if you're looking mostly for academic successes, peer-reviewed journal publication opportunities, future thesis work, etc, they may not be your best bet (they might be in some cases, esp. if you're just going for a MS, not a PhD, and care about superb internship opportunities in industry research and development, hot near-future employment opportunities in the field, etc, etc).

A great place to research "what's hot right" in a mix of academia (mostly) and industry R & D (a reasonable amount) are the appropriate ACM SIGs. I'm sure you know about SIGMOD, but SIGIR, SIGKDD, and (for specialized areas of storage) several others of the SIGs, can very well be interesting, too.

link|flag
vote up 2 vote down

Might I suggest a couple:

  • Formal object-oriented entities. Entities (tables) that can naturally extend other entities,
  • Hash O(1) indexing,
  • Single-level-store (SLS) tablespaces
  • Kernel-level integration (think AS/400)
link|flag
Could you provide some links? Some of these are difficult to google for. – Lyudmil Nov 7 at 2:43
Most of these are commercial attempts, some successful, some not-so. SLS = en.wikipedia.org/wiki/Single-level_store | Hash indexing to word offsets. Formal inherited entities can be simulated but are not formalized in most relational models, food for thought as to what a few companies were R&Ding before being purchased or dismantled :) – Xepoch Nov 7 at 14:48
vote up 3 vote down

I think the main aim is in scalability.

Look at these industry real-life databases:

That should give you good background for presentation.

link|flag
Is there any background on scaling issues with relational DBs? I read a great blog post recently arguing that they were not "truly" scalable, but it would be nice to have a more academia-friendly source. – Lyudmil Nov 7 at 2:39
@Lyudmil: This might be of interest for you, nice reading: xaprb.com/blog/2008/… – Viliam Nov 7 at 3:28
@Viliam: The article it links to is fascinating and well written. Thank you. – Lyudmil Nov 7 at 11:50
vote up 6 vote down

NoSQL is getting a lot of attention. You can't seem to go on proggit or hacker news without some mention of MongoDB, CouchDB or something of the like.

http://en.wikipedia.org/wiki/NoSQL

link|flag
Nice. One idea I'm just had is I could combine this with ORM impedance mismatch (which is quite old as a research area) and try to argue some sort of transition in the developer community. – Lyudmil Nov 7 at 2:31
I am not familiar enough with either NoSQL (key value, document type databases) or ORM impedance mismatch, but it would seem at first glance that these types of databases might actually solve that problem? I am hoping someone with more experience them me can weigh in on this. – csunwold Nov 7 at 2:35
@csunwold I read a little more. They would not, I was babbling. – Lyudmil Nov 7 at 2:41

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