Viewing 6 posts - 1 through 6 (of 6 total)
Hi,
It was indeed a good answer for my question, but as my text for text box contain "abcd www.a.com efgh" dynamicly from back end, it's difficult for me to set...
September 2, 2009 at 12:29 am
Hi David,
by looking at the execution plan of below query could you please let me know how you calculated the overall query cost as 0.0517279.
SELECT C.CustomerID
FROM Sales.Customer AS C
LEFT...
July 22, 2009 at 12:23 am
Hi David,
by looking at the execution plan of below query could you please let me know how you calculated the overall query cost as 0.0517279.
...
July 21, 2009 at 5:32 am
It is same logic as
SELECT * from #t
WHERE NOT ISNULL(id,0) = 1
or
SELECT * from #t
WHERE ISNULL(id,0) != 1
Both the queries will produce same result, since in first query...
November 26, 2008 at 5:16 am
2 options
1. You can generate script of db of all objects.
2. Restore db and truncate tables by a loop with order as details tables data first and master tables...
November 25, 2008 at 7:53 am
One answer could be
SELECT CustID,
MAX(PaymentDate)
FROM #payment
GROUP BY CustID
ORDER BY CustID
Thanks,
Amit Choudhary
July 14, 2008 at 7:22 am
Viewing 6 posts - 1 through 6 (of 6 total)