views:

60

answers:

2

Question, I am using Oracle 10g and my client wants me to create a Dynamic Database. Are there instructions that I can use to create one? What is the difference between a Relational Database and a Dynamic Database?

Thanks Wayne

+1  A: 

You should find out what your customer means by "Dynamic Database". Don't assume that they are clueless; they might have a specific requirement in mind when they use that term. Once you have figured out what they mean, then you will know if they are just looking for buzzword compliance or if this is an important requirement that you must understand and comply with.

Josh Yeager
They are wanting 'I do believe' Dyanamic Content. They want the data to be correlated as well. There is another division that claims to have a dynamic database.
Wayne
It sounds to me like they want to be able to add data to the database at any time and then display it to their users. You can use a standard "relational" database for that - I don't think that "Dynamic Database" is a separate technology.
Josh Yeager
A: 

Josh Yeager is probably right, but there another possible alternative here: that the customer wants the ability to change the schema of their database at any time.

Traditional Relational DBMSs (ie: the kind you use SQL with: Oracle, MS SQL Server, MySQL, etc) are fairly bad at this (or rather they do not have this as a design goal). You have to script the change in a specific way, apply it to the table (which can be time consuming on big databases), change the dependent code to support the new schema, have a plan to deal with preexisting data, etc.

If (and this is a really big IF: check with your client first) they want to be able to change the schema more frequently, then consider going to a "document" or "schemaless" database such as CouchDB or MongoDB. These sorts of databases assume that the data is heterogeneous (ie: different "records" contain different "fields" in the normal course of operations). In the same ballpark are XML-based data stores. These are a whole other paradigm compared to things like Oracle, but they may be well suited to your problem.

Also, there's an interesting article on using a RDBMS for schemaless data, though it seems like a lot of work to make an RDBMS work against itself.

Craig Walker