Forum Replies Created

Viewing 3 posts - 16 through 18 (of 18 total)

  • RE: Transaction Problem

    The little tricks that I’ve found yesterday, is use the @@TRANCOUNT.

    Make a rollback only if it’s equal to 1. It means that you are on the outer level and...

  • RE: Comparing fields that have null values.

    You could try something like this :

    UPDATE a SET

    a.updated = getdate(),

    a.company = COALESCE(a_temp.company,a.company),

    a.fname = COALESCE(a_temp.fname,a.fname),

    a.lname = COALESCE(a_temp.lname,a.lname),

    a.phone = COALESCE(a_temp.phone,a.lname),

  • RE: SQL Server 2000 Best Sort Order to choose

    Yeah, that’s exactly what I want to know. And effectively, I know that I must use nvarchar, nchar (Unicode data type) to insert some Unicode values. Just 2 other questions:

    -...

Viewing 3 posts - 16 through 18 (of 18 total)