Viewing 6 posts - 1 through 6 (of 6 total)
select distinct name,salary
into #temptab
from tablename
truncate table tablename
insert into tablename
select name,salary from #temptab
regards
September 20, 2007 at 12:54 am
1. If you take the full backup and truncate the transaction log without taking its backup you can recover your database only to the point of full backup and not...
September 20, 2007 at 12:34 am
Try this:
select sum(col1) as sum from
(select [Net P&L] as col1 from tblTraderPnL union select Fee as col1 from tblTraderFees) as dertab
regards
Sanjay, India
August 8, 2007 at 3:34 am
When a customer does a partial payment of an invoice we generate a second invoice for remaining amount.And if again he pays partially a third invoice is generated and process...
July 29, 2007 at 10:39 pm
No there is no maximum level of depth.
Ive gone through Microsoft article and it seems theres no way to do it by a single query.
Thanks for your reply, bytheway
July 28, 2007 at 3:08 am
Viewing 6 posts - 1 through 6 (of 6 total)