Daehee published this entry on Monday 09 April, 2007 at 5:03 pm. It's been filed in the Database category. {Share Your Thoughts}
Normalization is one of the most important factors in database design. But the six steps of database normalization can elude many freshman students, which unfortunately includes me. I have consulted with many websites and, most importantly, our textbook (Richard Watson’s Data Management) to tame this stubborn beast.
The formal texts regarding normalization can be confusing and […]
Daehee published this entry on Wednesday 07 February, 2007 at 9:04 am. It's been filed in the Database category. {Share Your Thoughts}
Here’s an overlooked extension of the INSERT command. I used to write separate INSERT statements for each record set. By appending additional executions, you can run multiple INSERT operations with a single command. (This multiple insert syntax does not work for MS SQL. Fernando Pires shows a workaround for MS SQL multiple insert.)
INSERT INTO exampleTable […]