Hello, If you use internal transaction you don't need to use another transactions.
M
masoumeh2010
@masoumeh2010
Posts
-
SQL 2008 - Nested transactions -
Creating a list of complex object from two lists [modified]Union statement in SQL Server can be useful.
-
Help with access Query'mid' is not a recognized built-in function name.
-
SQL Join ProblemHi, This query dose not answer because RegNo in Table_B in Id 4 dose not equal with RegNo with Table_A, But if it's correct this is answer select a.RegNo,a.Name,count(a.Class),b.LastUpdated from Table_A as a left join Table_B as b on a.RegNo=b.RegNo where (b.Id between 3 and 4 ) or (a.RegNo Not In('16RTY')and a.RegNo In('14DFG','15FHG')) group by a.RegNo,a.Name,b.LastUpdated
-
How can I use Server.MapPathHi I wrote this code string root=server.mappath(~/); or string root=server.mappath(~); or string root=server.mappath(/Project); but it does not work, please help me Thanks