Viewing 13 posts - 1 through 13 (of 13 total)
Very well put!
What I just don't get, is how something this catastrophic made it through any testing at all.
July 27, 2024 at 12:48 pm
Does this only apply to SS 2017?
August 3, 2020 at 12:44 pm
I use Express in several production environments. Some are mission critical. Like everything else in this world, it has it's place.
A couple of instances also include some clr assemblies...
February 27, 2015 at 6:15 am
Very nice article. I was especially pleased to see the mention of Entity Framework. I'm not a full-fledged DBA. I refer to myself as a database developer, handling both ends,...
February 7, 2014 at 6:06 am
I'm probably using the word contiguous very loosely. In any case, my modification of Luis' solution does just what I need with good performance.
January 15, 2014 at 12:08 pm
All true, it just wouldn't be practical to post the whole picture. Performance is good. 2 seconds on nearly 500,000 rows and it typically would not be run on that...
January 13, 2014 at 9:03 am
Luis,
Thank you. You gave me the jumpstart that I needed. Here us what I ended up with:
SELECT
CLG.lot_OwnerID,
L2.lot_nbr AS lot_nbrFirst,
L2.lot_suffix AS lot_suffixFirst,
L3.lot_nbr AS lot_nbrLast,
L3.lot_suffix AS lot_suffixLast
FROM
(
SELECT...
January 13, 2014 at 7:41 am
sestell1,
Thanks for the quick response.
The only grouping is on lot_OwnerID, but they need to be contiguous groups. So there will be multiple groups for each lot_OwnerID. Or maybe we...
January 10, 2014 at 3:33 pm
Question for Lee Forst:
You say the XML approach was slow over 1000 rows and you rewrite. What approach did you end up using, and how was the performance?
October 15, 2010 at 6:31 am
Great article. Fits in with a project that I am working on.
Just to try it out, I ran as script on my development machine (SQL Server 2005) without creating the...
June 17, 2010 at 7:23 am
I found the same problem. When the first of the month is the day in question, it returns the second week. I modified it to this.
DECLARE @DATE DATETIME,@GETDATE DATETIME,@MONTHSTDATE DATETIME,@STARTDATE...
August 10, 2009 at 6:37 am
Thanks for the response Dwayne, especially with the problems you had. I had trouble just getting to this forum today.
I had the host check and both reports and reportserver are...
September 8, 2005 at 8:24 am
Thanks for the reply Michael.
I had seen the first article and had the host apply it, which did not help.
That is what made me think to sign my http handler...
September 7, 2005 at 9:24 am
Viewing 13 posts - 1 through 13 (of 13 total)