Forum Replies Created

Viewing 15 posts - 106 through 120 (of 283 total)

  • RE: Innovation

    Marketing or innovation? Chicken or egg?

    Not so much "which came first?" as "which depends more on the other?" The answer, of course, is "yes."

    To give Microsoft and other such companies...

  • RE: Only Keep The First Occurance

    Given a table Courses, with columns CourseID ('CIS101', etc) and Description and a table Classes, with columns ClassID (111, 112, etc), CourseID (FK to Courses table) and BeginDate, this will...

  • RE: Putting all your data in one column of one table

    In rereading the original post, I have some questions. You mentioned that all the data would be

    in one large varchar column, of one huge table.

    I got the impression that this...

  • RE: Putting all your data in one column of one table

    Why?

    That's the question I would like to ask the guy who, um, designed this and also the guy who accepted it. The first one has to be the second...

  • RE: Query Request

    delete @Table

    from @Table t

    left join (

    select Max(EmpID) as MaxID, Category

    from @Table

    ...

  • RE: The multi-part identifier could not be bound.

    Simple errors like this can be eliminated by the widespread use of aliases.

    UPDATE c

    SET c.RxPrescriberLName = p.LastName

    FROM dbo.tblClmsRx c

    INNER JOIN dbo.tblPharmacyClaimTemp...

  • RE: Primary key vs NOT NULL unique key..

    If I am evaluating the soundness of a general rule, it doesn't bother me one bit that the rule would not be applicable to a 14 billion row MegaTable. At...

  • RE: Primary key vs NOT NULL unique key..

    GSquared (4/30/2008)


    In a big database, it could easily be a significant performance difference.

    In a very bit database... 😉

    However, such databases do exist and, truly, a numeric key would generally be...

  • RE: Primary key vs NOT NULL unique key..

    I don't who RonKyle is arguing with, but it is not me. I never proposed using SSN (or any country's equivalent) as a Primary Key. In fact, I first mentioned...

  • RE: Primary key vs NOT NULL unique key..

    Matt Miller (4/29/2008)

    The primary characteristic for a primary key (in addition to uniqueness) is immutability, specifically because of its "deisgnated use" in table relations. And that's where I think...

  • RE: Primary key vs NOT NULL unique key..

    GSquared (4/29/2008)


    The only reason I mention SSN as a problem is because SO many people think "oh, that's perfect!", and use it as a primary or unique key, and then...

  • RE: Primary key vs NOT NULL unique key..

    The problem with any candidate key is that someone can come in afterwards and "what if" it to death. You can take any attribute and keep expanding the context to...

  • RE: Nesting Transaction

    There is a little twist using nested transactions that can catch you. When you commit a transaction, you commit only the current level. When you rollback a transaction, you roll...

  • RE: Primary key vs NOT NULL unique key..

    A key is any attribute (column) or combination of attributes which uniquely identify the tuple (row). That is, there should not be more than one row with the same value(s)...

  • RE: A View Or a Stored Procedure?

    Ah, I get it. So you can get a NULL value if your string is NULL or an empty string. Cool.:cool:

    I think I remember NULLIF from years ago. I could...

Viewing 15 posts - 106 through 120 (of 283 total)