Forum Replies Created

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

  • RE: Database Commenting Guideline

    Develop a standard header for stored procedures, views and user-defined functions. Include details such as a brief description of the object, specification document, author, date created, change history, etc.

    Throughout the...

  • RE: An Is Null Gotcha

    On the other if you were to use COALESCE you code could look like this

    SELECT @PatientHospitalID = COALSESCE (LTRIM(RTRIM(@PatientHospitalID)), 0)

    shorter and eaiser to read imho

  • RE: An Is Null Gotcha

    Isn't Coalesce preferred over IsNull, being ansi standard and all? You wouldn't have had this problem anyway...

  • RE: select & string concatenation

    Aggregate concatenation... it's good to know what you are doing. So a big thank you for the links! And to the rest of for taking the time.

  • RE: select & string concatenation

    Sorry for being a tad unclear. It was this feature that I was wondering about. The function was just something I made to demonstrate it. When the select returns more...

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