Forum Replies Created

Viewing 10 posts - 16 through 25 (of 25 total)

  • RE: Rolling Back Migrations

    And all this stuff really works well if all releases happen in sequential order, and you don't have someone come in halfway through a development phase screaming for a patch...

  • RE: Check your default constraints

    allinadazework - Monday, September 17, 2018 4:47 AM

    Perhaps this seems a bit simplistic!? I just thought it would be useful to share...

  • RE: Stored Procedure

    Nqobilemoyo - Monday, July 9, 2018 2:15 AM

    Hi there again sorry to be a pain but do you think you could break...

  • RE: Performance Question

    ah0996 - Thursday, May 10, 2018 10:53 AM

    Hi there, 
    I have a performance question here:

    how can I rewrite below highlighted area?  I am...

  • RE: Best way to perform calculation stored as varchar

    There are some work-arounds, but best not to try.  Rewrite it as a stored procedure, and return the result as either the return value if integer, or as an output...

  • RE: Index Selection and Overreading of Rows

    Actually folks, don't worry about this one.  I didn't figure out why it was happenning, but I managed to get around it by splitting the complex query up into segments...

  • RE: Sort comma separated value in SQL Table

    Jason A. Long - Tuesday, February 6, 2018 1:25 PM

    Add the fact that many people have 2 (or more) middle names...

  • RE: brain freeze on exists

    Duplicate of previous answer - apologies.

  • RE: Like / Contains

    Short answer - what you want to do is not supported using Contains. You can get around it by doing a reverse search, but that would be a hack.

    Read...

  • RE: Triggers on identity column

    Drop the IF Update(...

    (Also drop the temp table.)

    Try something like this (untested as you didn't provide data...)

    DROP TRIGGER Sales.trig_Calculate_OrderProcessed;

    GO

    CREATE TRIGGER Sales.trig_Calculate_OrderProcessed ON Sales.Orders

    AFTER INSERT, DELETE

    AS

    ...

Viewing 10 posts - 16 through 25 (of 25 total)