|
|
-
10 Liked
| 11 Learned
| 0 Comments
|
|
C# team members Shon Katzenberger, Scott Wiltamuth, Todd Proebsting, Erik Meijer, Peter Hallam, Anders Hejlsberg, and Peter Sollich were awarded a Technical Recognition Award for Outstanding Technical Achievement for their work on the C# language. This ......
|
|
-
10 Liked
| 10 Learned
| 6 Comments
|
|
One can view & print excel files on computers that do not have excel installed. search for "excel viewer" .
Business scenario: when it does not make sense to buy a license when all you need is view & print excel files. ...
|
|
-
|
|
RELOG command can be used to convert the performance counters collected in binary format to CSV format. There are many more options available.
relog C:\PerfLogs\Baseline.blg -o C:\PerfLogs\Baseline.csv -f csv...
|
|
-
12 Liked
| 10 Learned
| 0 Comments
|
|
While you are designing a web page, when you view the web page in browser, if you find a problem with a style of a control, by using chrome we can immediately correct it and view the updated webpage without going back to source.
1. Right click on any ......
|
|
-
12 Liked
| 10 Learned
| 4 Comments
|
|
You can see this from the result of this query that Sum of consecutive odd numbers starting from 1 is a perfect square
[code]select 1,1+3,1+3+5,1+3+5+7,1+3+5+7+9[/code]......
|
|
-
13 Liked
| 10 Learned
| 0 Comments
|
|
Wordpress.com allows us to post code on blogs using [sourcecode] tag. For instance, a SQL code will be posted using:
[code]
[sourcecode language="SQL"]
your code here
[/sourcecode]
[/code]
For more information URL: http://en.support.wordpr......
|
|
-
|
|
Microsoft is proud to announce that short answer code questions will soon be available in an exam near you. Short answer code questions test your ability to write code that will solve the problem described in the question.
...
|
|
-
|
|
Go to MSDN profile > Edit my profile > Input URL's of your social network profiles
I just did, [My profile][1]
[1]: http://social.msdn.microsoft.com/Profile/Paras%20Doshi...
|
|
-
|
|
Got an interesting question from colleague, "What is the largest byte measurement?"
From wikipedia, found that largest byte measurement is, "Yotta Byte", 1Yotta Byte = 1024^8Bytes......
|
|
-
|
|
Creating a temp table to hold intermediate results forces SQL Server to interrupt the data pipeline through a query to persist the results to disk.
Sometimes just doing one query rather than pre-aggregating or pre-sorting can be way more efficient an......
|
|