Distributed transaction error?

Enable the options Allow Remote Clients Allow Outbound On Security tab of Local DTC Properties in Component Services. Go To Run, type comexp.msc. Double click “Console Root”. Double click “Component Services. Double click “Computers”. Double click “My Computer”. Double click “Distributed Transaction Coordinator”. Right click “Local DTC” under “Distributed Transaction Coordinator”, and click properties. Click … Read more

SQL Server equivalent of WM_CONCAT function [duplicate]

You don’t have an equivalent function for that, but you can still simulate (make useof CROSS APPLY and FOR XML PATH(”)). example, USERID ADDRESSLINE1 ========================== 1 First Street 1 Second Street 2 32th Street 2 24th Street 2 25th Street will result USERID ADDRESSLIST ============================ 1 First Street, Second Street 2 32th Street, 24th Street, … Read more