Home Forums SQL Server 2008 T-SQL (SS2K8) Help me see why my trigger is failing - should be simple, but can't see the answer.... RE: Help me see why my trigger is failing - should be simple, but can't see the answer....

  • rarara - Monday, February 20, 2017 6:14 AM

    ...Appreciate the reply. Essentially no, there isn't a NULL getting passed as [TABLE123].[accountnum1] also doesn't allow NULLS and all the values contained in that table after the batch does its updates/inserts are valued account numbers....

    The null  value check is performed every time the table is touched, not on a per batch level !
    Insert into xyz ( col1, col6 ) values (1,'C')
    update xyz set col2='abc' where col1 = 1 ;
    go


    The batch ends with the 'go' in SSMS

    The first statement will fail if col2 doesn't allow nulls and has no default value defined (other than null).

    Johan

    Learn to play, play to learn !

    Dont drive faster than your guardian angel can fly ...
    but keeping both feet on the ground wont get you anywhere :w00t:

    - How to post Performance Problems
    - How to post data/code to get the best help[/url]

    - How to prevent a sore throat after hours of presenting ppt

    press F1 for solution, press shift+F1 for urgent solution 😀

    Need a bit of Powershell? How about this

    Who am I ? Sometimes this is me but most of the time this is me