Viewing 15 posts - 301 through 315 (of 432 total)
Grant Fritchey (2/10/2010)
February 10, 2010 at 4:35 am
Another book I highly recommend: "Data and Reality" by William Kent. Not much about how to design a database but lots about understanding the problems of data and data models.
February 10, 2010 at 12:42 am
"Information Modeling and Relational Databases" by Terry Halpin
"Practical Issues in Data Management" by Fabian Pascal
C.J.Date's "Relational Database Writings" series of books are all very good on database problems and concepts,...
February 10, 2010 at 12:36 am
Sorry, my blog is temporarily offline.
This is my example of a disjoint subtype pattern:
CREATE TABLE Products
(SKU INT NOT NULL PRIMARY KEY,
ProductType CHAR(1) NOT NULL
CHECK (ProductType...
February 9, 2010 at 2:27 pm
Dave,
Very loosely speaking you probably have the right understanding of normalization - although it would certainly help you to understand it in more formal terms if you don't already. Normalization...
February 9, 2010 at 10:29 am
Nice Marmot (2/8/2010)
Hi JHD,Oracle RAC (Real Application Clusters) corresponds to SQL Server Clustering.
No it doesn't. Windows clusters are failover-only for resilience and availability, whereas RAC is a MPP technology for...
February 8, 2010 at 3:29 pm
Tom.Thomson (2/8/2010)
David Portas (12/21/2009)
A tuple is a set. How can you turn a set on its side? I think you need to adjust your two dimensional thinking 🙂
Not in any...
February 8, 2010 at 5:33 am
I was a SQL Server MVP for 5 years, 2004-2008.
I think that "democratizing" MVP selection online would devalue the programme. Online elections are too fickle and open to influences that...
February 7, 2010 at 1:00 pm
I think this might be close to what you want. Not sure about the INSERT bit. I probably haven't interpreted your requirements perfectly but maybe you will get the idea....
February 5, 2010 at 12:56 pm
Try not to think of it in terms of steps or repeating things X number of times. Instead think in sets. Think about the joins and end results you want.
The...
February 5, 2010 at 3:48 am
mbender (2/4/2010)
February 4, 2010 at 4:25 pm
Matt Miller (#4) (1/31/2010)When I say X is NULL, it means I know nothing about it: I don't even know if it's something that can HAVE a value.
Does that mean...
January 31, 2010 at 12:31 pm
Another discussion on the future of SQL started by Matt Whitfield:
http://ask.sqlservercentral.com/questions/3503/is-sql-on-the-way-out
January 31, 2010 at 10:21 am
Jeff Moden (1/30/2010)
Heh... no, I'm not missing the point. I said virtually the same thing in the first paragraph of my last post.
The thing that made me doubt it...
January 31, 2010 at 1:59 am
Matt Miller (#4) (1/30/2010)
January 31, 2010 at 1:50 am
Viewing 15 posts - 301 through 315 (of 432 total)