Viewing 3 posts - 16 through 18 (of 18 total)
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...
October 2, 2002 at 2:45 am
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),
October 1, 2002 at 2:45 am
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:
-...
August 29, 2002 at 1:03 am
Viewing 3 posts - 16 through 18 (of 18 total)