21
votes
14answers
2k views
Good tool to visualise database schema?
Are there any good tools for visualising a pre-existing database schema? I'm using MySQL if it matters.
I'm currently using MySQL Workbench to process an SQL create script dump, but it's clunky, slow …
14
votes
15answers
701 views
How liberal should I be with NOT NULL columns?
I'm designing a database schema, and I'm wondering what criteria I should use for deciding whether each column should be nullable or not.
Should I only mark as NOT NULL only those columns that …
13
votes
7answers
612 views
Is there an agreed ideal schema for tagging
I have a photo website and i want to support tags as my original category bucketing is starting to fail (some pictures are family and vacations, or school and friends). Is there an agreed tagging db …
12
votes
10answers
795 views
What are XML namespaces for?
This is something that I always find a bit hard to explain to others:
Why do XML namespaces exist?
When should we use them and when should we not?
What are the common pitfalls when working with …
11
votes
10answers
2k views
How do you version your database schema?
How do you prepare your SQL deltas? do you manually save each schema-changing SQL to a delta folder, or do you have some kind of an automated diffing process?
I am interested in conventions for …
9
votes
8answers
592 views
Tips on refactoring an outdated database schema
Being stuck with a legacy database schema that no longer reflects your data model is every developer's nightmare. Yet with all the talk of refactoring code for maintainability I have not heard much …
9
votes
9answers
485 views
Migrating database changes from development to live
Perhaps the biggest risk in pushing new functionality to live lies with the database modifications required by the new code. In Rails, I believe they have 'migrations', in which you can …
8
votes
3answers
562 views
Laying out a database schema for a calendar application
I want to write a calendar application. It is really recurring items that throw a wrench in the works for the DB schema. I would love some input on how to organize this.
What if a user creates an …
7
votes
5answers
262 views
How to safely update a live website
We have a fairly simple Django-based website for doing CRUD operations. I've been doing testing and development locally and then checking out releases and database schema changes onto the live server …
7
votes
5answers
331 views
Best Database Change Control Methodologies
As a database architect, developer, and consultant, there are many questions that can be answered. One, though I was asked recently and still can't answer good, is...
"What is one of, or some of, …
7
votes
4answers
741 views
How to design a database schema to support tagging with categories?
I am trying to so something like Database Design for Tagging, except each of my tags are grouped into categories.
For example, let's say I have a database about vehicles. Let's say we actually don't …
6
votes
5answers
236 views
VERY huge SQL Database: How should the schema look like?
I have 2 files that I'd like to import into MS SQL. The first file is 2.2 GB and the second file is 24 GB worth of data. (if you are curious: this is a poker related look up table)
Importing them …
6
votes
3answers
2k views
How to update database table schemas with NHibernate schema generation?
I'm trying to figure out how to use NHibernate configuration with mapping to update table schemas, rather than dropping and recreating them.
Currently I'm using the …
6
votes
4answers
450 views
XML Schema Validation with RelaxNG
Which XML validation tools can you recommend for both performance and accuracy, each of which is a critical issue on our system? We have the following requirements:
It is not not xmllint (see …
5
votes
7answers
213 views
How would you design your database to allow user-defined schema
If you have to create an application like - let's say a blog application, creating the database schema is relatively simple. You have to create some tables, tblPosts, tblAttachments, tblCommets, …
