Pulse » Recent Items from 9/6/2009
Welcome!
Pulse has a simple goal: to give you a quick view of what's happening in the SQL Server community.
-
Browse
Finding interesting content on Pulse is easy – you can drill down to a specific time period (by clicking on the bars of the chart), toggle different types of content on and off, and sort the results by popularity or recency.
-
Vote
Discovered an informative blog post or a hilarious tweet? Tell the rest of the community about it by voting it up or down. Behind the scenes, our popularity algorithm will make sure it rises to the top of the list.
-
Comment
When a simple up-or-down vote isn't enough, voice your opinions in a comment. Or check out what others are saying about something you posted or tweeted.
September
-
Output Clause – A Great Alternative To Scope_Identity()
In SQL Server 2005, a new clause was introduced that allows your query access to the inserted and deleted pseudo tables, without the use of a trigger. In prior versions of SQL Server, the primary way to get a newly inserted identity value is to either use @@IDENTITY or Scope_Identity ...
-
Fun With Percentiles, Part 1
Let’s say you have 100,000 rows in a table that has a Dollars column. If you perform the following… select *, GroupValue=ntile(100) over (order by Dollars) from MyTable … it will split the rows into 100 equal sized subsets (of 1000 rows each) by sorting the rows by ...
Pulse is a section of SQLServerPedia that gives you a quick view of what's happening in the SQL Server community.