Search Results

12
votes

Working without stored procedures or triggers

Stored Procedures and Triggers are tools -- very specific tools for use within a database management system. Triggers have a number of uses, from greatly simplifying the maintenanc …
12
votes

Database Design - Hard Coded Row ID

Don't do that. ;-) If you have static rows, values that never change, in a table that has user data that is transactional or at least mutable, then I'd say you have at least a normalization …
8
votes

Sql Data Type for Primary Key - SQL Server?

Generally, int. bigint if you think you'll have more rows than there are atoms in the universe. uniqueidentifier is useful if you need glo …
2
votes

Data Model for Boolean Expressions

This type of expression is most usually expressed as a tree (a hierarchy), which are notoriously annoying to query in SQL. We'll assume that a and b are numeric fo …
1
vote

Good (== fast) storage strategy for facts with dynamically evolving dimensions?

For options 1 & 3 you need a really good idea of what your most frequent queries are going to be. Use the 80/20 rule, don't try to make all queries perform at the same level. …
3
votes

Best practices for storing postal addresses in a database (RDBMS)?

Adding to what @Jonathan Leffler and @Paul Fisher have said …
1
vote

How to optimize access of this Data ?

A misquote of someone: Rules of Optimization Don't do it. For EXPERTS only: Don't do it yet. If the question is "... do I leave it alone or do I …