Viewing 15 posts - 181 through 195 (of 515 total)
Very nice question Tom. Learnt something new today:-)
January 8, 2013 at 10:07 pm
Thanks Ron for another one on SS-2012. Keep them pouring 🙂
December 27, 2012 at 10:16 pm
vinu512 (12/26/2012)
Select p.Month, SUM(p.cramount) As Credit, SUM(q.dramount) As Debit From
(
Select b.voucherno, DATENAME(MM, a.dt) As Month, SUM(b.cramount) As cramount From voucher As...
December 26, 2012 at 3:06 am
As per the requirements, here is my query:
SELECT Month(v.dt) [Month],
Sum(vc.cramount) Credit,
Sum(vd.dramount)...
December 26, 2012 at 2:01 am
Eric M Russell (12/25/2012)
December 26, 2012 at 12:15 am
Bhuvnesh (12/25/2012)
Eric M Russell (12/25/2012)
December 26, 2012 at 12:14 am
There are two ways (apart from BULK insert) which creates minimal transaction logs
1) SELECT INTO
2) using TABLOCK hint
December 26, 2012 at 12:13 am
Viewing 15 posts - 181 through 195 (of 515 total)