1
vote
What are the pros/cons of using a synonym vs. a view?
There are lots of considerations. In short, use the tool that works best for each situation.
With a view, I can
hide columns
add predicates (WHERE clause) to restri …
3
votes
Constituents of a good relational database design
For an OLTP system, the primary key for all Entity tables should be defined as:
simple (single column, basic datatype)
anonymous (meaningless, carries no semantic meaning) …
2
votes
Is this good membership payment database schema?
I concur with the previous answers from jtyost2 and Yishai.
One other note, our convention is to name Entity tables in the singular, matching the class name. That is, we name one row (we n …
