Forum Replies Created

Viewing 15 posts - 16 through 30 (of 31 total)

  • RE: clustered index

    GilaMonster (4/16/2008)


    Primary key never affects the row order in data pages.

    *Snip*

    Does that help?

    A lot thanks I assumed that was what primary key implied.

    I understand the index page id doesn't...

  • RE: clustered index

    It would help to know what he thought multiple clustered indexes would help with ...

    I never would have guessed that the primary key did not effect the row order in...

  • RE: clustered index

    Why would you want to ?

    The primary clustering is designed to limit the number of index pages that need to change each time a row updates onto a...

  • RE: Name value pair (EAV) model

    I would suggest that the EAV is where the types are taken out of the database entirely and only the application context would be able to decipher the significance of...

  • RE: Name value pair (EAV) model

    Aren't you just normalizing the question type out of the client-question-response ?

    consider finding a client that has

    have no Risk of a fall

    have low Risk to client or caregivers...

  • RE: Name value pair (EAV) model

    I can see the flexibility demands that a rapidly changing data model requires. But I will argue strongly against abstracting the data model away from the database layer.

    All these...

  • RE: Not In v Not Equal

    as an aside set base generation is a tad quicker

    set statistics io on

    set statistics time on

    CREATE TABLE tbl_IN_VS_AND (filterCriterion_sv int PRIMARY KEY CLUSTERED NOT NULL)

    Insert tbl_IN_VS_AND

    SELECT 100000 *...

  • RE: Indexes, Querys and sparse data ?

    OK so only the first column in the index is the only one that statistics are calculated on. Which answers my original question

    And Adding an UPDATE STATISTICS B.B_FK_A had...

  • RE: More RBAR and "Tuning" UPDATEs

    I am surprised (being introduced to other DBMS before SS) that the location of the predicate relating the summarised aggregate sub query and the table for update had any effect...

  • RE: The Identity Debate

    Imho identities are fine keys when order of insert is close to order needed on select.

    (minimum bits to define uniqueness and order)

    If the natural key predicates of the majority selects...

  • RE: Hidden RBAR: Triangular Joins

    Good Explanation of the implication of the Cartesian product (in some communities called cross join ;))

    Predicates can limit the cardinality of the table(vector) inputs to the product but the complexity...

  • RE: Question of the Day for 13 Sep 2007

    Awfully semantic distinction.

    The non-trivial extraction of implicit, previously unknown, and potentially useful information from data can be achieved by the first three languages. Whether in a structured form by...

  • RE: Data Quality

    Consisting all most entirely of truisms, No quantification, expected norms or constructive methodology for cleansing discussed.

    Very unsatisfying read.

  • RE: The Indian Yes

    Unfortunately communication is only half of the picture. The cultural bias to avoiding conflict predisposes that problems are picked up later rather than in a timely manner. If...

  • RE: Free-Text Search "AND NOT" Wrong results - HELP, please!

    Don't you need to give relative waiting to each of the keywords towards the fuzzy match with two words in the search pattern ?

    The left joins are ugly in...

Viewing 15 posts - 16 through 30 (of 31 total)