1
vote
Stored procedures/DB schema in source control
Couple different perspectives from my experience. In the Oracle world, everything was managed by "create" DDL scripts. As ahockley mentioned, one script for each object. If the object needs to c …
3
votes
What’s wrong with foreign keys?
This is an issue of upbringing. If somewhere in your educational or professional career you spent time feeding and caring for databases (or worked closely with talented folks who did), then the fu …
1
vote
How do you manage “pick lists” in a database.
Two tables. If you try to cram everything into one table then you break normalization (if you care about that). Here are examples:
LIST
---------------
LIST_ID (PK)
NAME
DESCR
LIST_O …
0
votes
Does field size affect query time?
Very rarely will column width affect query performance. Certainly if you're using larger objects (BLOBs, LONGBLOBs, TEXTs, LONGTEXTs), there is the potential for a lot of data to get pulled. That …
