Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)

  • RE: Start Fixing Your DB with Better Code

    But how do you know if your code is right or wrong when the examples to learn from don't scale or are not complete? Most articles I find on writing...

  • RE: data and log files for test db

    AH nevermind. It looks like it is just the Logical Name that has PROD in it. The actual filename has TEST. That is very confusing when you first look at...

  • RE: Case Statement in Order By

    I would turn it into a column and order by it. Cleaner this way.

    SELECT

    (CASE WHEN AddDt > UpdateDt

    THEN AddDt

    ELSE ISNULL(UpdateDt, AddDt)

    END) AS MaxDt,

    Id, Name, OnHand, AddDt,...

  • RE: Guess the RTM Build

    13.0.2000.00

  • RE: Nested Types

    I ran this and got the below error.

    The base type "email" is not a valid base type for the alias data type.

    Never had a reason personally to create types, but...

Viewing 5 posts - 1 through 5 (of 5 total)