Search Results

1
vote

What’s wrong with foreign keys?

I echo the answer by Dmitriy - very well put. For those who are worried about the performance overhead FK's often bring, there's a way (in Oracle) you can get the query optimiser advantage …
0
votes

What’s the best way to handle one-to-one relationships in SQL?

I would create a supertype / subtype relationship. THINGS ------ PK ThingId ALPHAS ------ FK ThingId (not null, identifying, exported from THINGS) AlphaCol1 Alp …
0
votes

What if analysis on multi dimensional cubes (OLAP)

Andy - It depends on the tool you're using. Some, for example, set the hierarchies at cube build time. Others have dynamic hierarchies. What tool are you working in? …
4
votes

How many database indexes is too many?

Everyone else has been giving you great advice. I have an added suggestion for you as you move forward. At some point you have to make a decision as to your best indexing strategy. In the end thoug …