Marathi film Shwaas will be India’s entry for the Oscars this year (2004) under the best foreign film category. More …
Shwaas: India’s entry for Oscars
Reply
Marathi film Shwaas will be India’s entry for the Oscars this year (2004) under the best foreign film category. More …
Here’s a TSQL optimization tip: it seems like a single SELECT statement is faster than multiple SET statements.
SET @foo1 = 0
SET @foo2 = 0
SET @foo3 = 0
...
is slower than one SELECT like:
SELECT @foo1 = 0, @foo2 = 0, @foo3 = 0
[via Jason Lautzenheiser]
.NET Quick Reference Card by Fons Sonnemans, is a small quick reference card for Microsoft .NET with some hard to remember details.