June 2010
Intermediate to advanced
328 pages
7h 51m
English
I want these things off the ship. I don’t care if it takes every last man we’ve got, I want them off the ship.
My wife worked for years as a programmer in Oracle PL/SQL and Java. She described a case that showed how a database design that was intended to simplify work instead created more work.
A table Customers used by the Sales division at her company kept data such as customers’ contact information, their business type, and how much revenue had been received from that customer:
| Metadata-Tribbles/intro/create-table.sql | |
| | CREATE TABLE Customers ( |
| | customer_id NUMBER(9) PRIMARY KEY, |
| | contact_info VARCHAR(255), |
| | business_type VARCHAR(20), |
| | revenue NUMBER(9,2) |
| | ); |
But the Sales division ...
Read now
Unlock full access