Viewing 15 posts - 1 through 15 (of 85 total)
ScottPletcher (10/9/2015)
October 9, 2015 at 11:30 am
lshanahan (9/15/2015)
The question of "What makes a good developer" is highly dependent upon your industry, your work environment, methodologies and a hundred or more other factors,...
September 22, 2015 at 7:57 am
Just went through something similar. Accepted the counter offer and now waiting for the new opportunity to come kiss me. The wait is difficult one to deal with and sometimes...
September 22, 2015 at 7:36 am
Stewart "Arturius" Campbell (9/21/2015)
Nice question, thanks SteveLead and Lag are really handy operators, especially for trend analysis on relational data...
+1.
Easy point. 🙂 Thanks for sharing.
September 22, 2015 at 12:52 am
Here are a few other approaches and there impacts:
-- Recursive CTE approach (Hidden R-BAR optimal for thousands to few hundred thousand rows.)
WITH cte_Split_String
AS
(...
September 21, 2015 at 2:43 am
-- Tally Table approach (No R-BAR optimal for millions of rows.)
CREATE FUNCTION udf_splitString
(
@STR NVARCHAR(MAX),
@sep NCHAR(1)
)
RETURNS TABLE ...
September 21, 2015 at 2:40 am
Great utility! I am working on implementing a similar solution. Will post an update if I can fine tune it.
September 21, 2015 at 1:37 am
Alan.B (9/16/2015)
To get the Percent Rank Pre-2012:
If rk is the RANK for the specified partition
AND rc is the row count...
September 21, 2015 at 1:34 am
Great question. Thanks. Makes me want to go back and change some code.
December 5, 2014 at 12:51 am
bharatmehra76 (11/30/2014)
Can you tell me reason behind this?
You can start with this:
http://www.sqlservercentral.com/Forums/Topic1488704-391-1.aspx
If you are a beginner then you need to understand how DELETE, DROP and TRUNCATE work instead of...
December 1, 2014 at 12:20 am
JeeTee (11/21/2014)
The first is to build a calendar table; basically an...
November 28, 2014 at 2:13 am
Kev T (11/25/2014)
For those that may not know, it is because of the...
November 25, 2014 at 2:59 am
Stewart "Arturius" Campbell (11/20/2014)
I think this is going to be an interesting discussion.
All in good fun, anyway:-P
+1
November 20, 2014 at 2:03 am
Viewing 15 posts - 1 through 15 (of 85 total)