Search Results

1
vote

How should you build your database from source control?

We have our Silverlight project with MSSQL database in Git version control. The easiest way is to make sure you've got a slimmed down database (content wise), and do a complete dump from f …
2
votes

How would you represent a relational entity as a single unit of retrievable data in BerkeleyDB?

You can always serialize (called marshalling in Ruby) the data as a string and store that instead. The serialization can be done in several ways. With YAML (advantage: human readable, multi …
3
votes

Non-Relational Database Design

I'm answering this with CouchDB in the back of my mind, but I would presume most would be true for other DBs also. We looked at using CouchDB, but finally decided against it since our data access i …