Forum Replies Created

Viewing 15 posts - 301 through 315 (of 432 total)

  • RE: Database design question

    Grant Fritchey (2/10/2010)


    If you go with the arc, there's nothing inherently evil in it. It's not a good design, but the world won't come to an end if you use...

  • RE: Looking for recommendations for good data modeling books

    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.

  • RE: Looking for recommendations for good data modeling books

    "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,...

  • RE: Database design question

    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...

  • RE: Database design question

    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...

  • RE: Oracle RAC - SQL Server equivalent??

    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...

  • RE: Defining a Database

    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...

  • RE: Democratizing the Microsoft MVP Award

    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...

  • RE: Cursors

    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....

  • RE: Cursors

    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...

  • RE: Cursors

    mbender (2/4/2010)


    Basically i have a select statement that I need to pull some information from then run some logic against it then either run a update statement or insert statement...

  • RE: Database Design- IS NOT NULL always better choice?

    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...

  • RE: SQL future

    Another discussion on the future of SQL started by Matt Whitfield:

    http://ask.sqlservercentral.com/questions/3503/is-sql-on-the-way-out

  • RE: Database Design- IS NOT NULL always better choice?

    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...

  • RE: Database Design- IS NOT NULL always better choice?

    Matt Miller (#4) (1/30/2010)


    NULL isn't a value. Remember - it's a state, representing a lack of known value (which interestingly enough is what your flag idea was supposed to...

Viewing 15 posts - 301 through 315 (of 432 total)