|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Monday, August 01, 2011 2:05 PM
Points: 32,
Visits: 47
|
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Tuesday, January 15, 2013 11:11 AM
Points: 1,945,
Visits: 2,782
|
|
Might want to look at Chapter 24 of SQL FOR SMARTIES,and ection 24.5.1. in particular which deals with finding the lowest available number in a sequence. Because optimizers tend to keep min and max data in their stats and indexes make them easy to find, I liked this version:
SELECT CASE WHEN MAX(seq_nbr) = COUNT(*) THEN CAST(NULL AS INTEGER) -- THEN MAX(seq_nbr) + 1 as other option WHEN MIN(seq_nbr) > 1 THEN 1 WHEN MAX(seq_nbr) <> COUNT(*) THEN (SELECT MIN(seq_nbr)+1 FROM List WHERE (seq_nbr + 1) NOT IN (SELECT seq_nbr FROM List)) ELSE NULL END FROM List;
The first WHEN clause sees if the table is already full and returns a NULL; the NULL has to be cast as an INTEGER to become an expression that can then be used in the THEN clause. However, you might want to increment the list by the next value.
The second WHEN clause looks to see if the minimum sequence number is 1 or not. If so, it uses 1 as the next value
The third WHEN clause handles the situation when there is a gap in the middle of the sequence. It picks the lowest missing number. The ELSE clause is in case of errors and should not be executed. I am trusitng the optimizer to handle the IN() predicate.
The order of execution in the CASE expression is important. It is a way of forcing an inspection from front to back of the table's values.
Books in Celko Series for Morgan-Kaufmann Publishing Analytics and OLAP in SQL Data and Databases: Concepts in Practice Data, Measurements and Standards in SQL SQL for Smarties SQL Programming Style SQL Puzzles and Answers Thinking in Sets Trees and Hierarchies in SQL
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Tuesday, January 15, 2013 11:11 AM
Points: 1,945,
Visits: 2,782
|
|
Put in a zero as a sentinel value and the code is much easier:
CREATE TABLE Numbers (seq INTEGER NOT NULL PRIMARY KEY);
INSERT INTO Numbers VALUES (0); --sentinel INSERT INTO Numbers VALUES (2); INSERT INTO Numbers VALUES (3); INSERT INTO Numbers VALUES (5); INSERT INTO Numbers VALUES (7); INSERT INTO Numbers VALUES (8); INSERT INTO Numbers VALUES (14); INSERT INTO Numbers VALUES (20);
SELECT Num1.seq+1 AS gap_start, Num2.seq-1 AS gap_end FROM Numbers AS Num1, Numbers AS Num2 WHERE Num1.seq +1 < Num2.seq AND (SELECT SUM(seq) FROM Numbers AS Num3 WHERE Num3.seq BETWEEN Num1.seq AND Num2.seq) = (Num1.seq + Num2.seq);
Books in Celko Series for Morgan-Kaufmann Publishing Analytics and OLAP in SQL Data and Databases: Concepts in Practice Data, Measurements and Standards in SQL SQL for Smarties SQL Programming Style SQL Puzzles and Answers Thinking in Sets Trees and Hierarchies in SQL
|
|
|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Thursday, May 09, 2013 3:47 PM
Points: 90,
Visits: 82
|
|
If you just need to identify IF a list of numbers is in sequence, but not where the gaps are, I believe you can do it in a single pass of the table. (Warning -- to understand this algorithm, some high school math is required!) -- Mathematical way of identifying if a list of numbers is sequential -- Based on formula: -- M + (M+1) + (M+2) + ... + (M+n-1) = n*M + n*(n-1)/2 -- Calling the left side S (for Sum), and rearranging yields: -- n2 + (2*M - 1)*n - 2*S = 0 -- Then the quadratic formula produces: -- n = ( (1-2*M) +- sqrt( (2*M -1)2 + 8*S) )/2 -- I believe it can be shown that a list of numbers is a sequence if -- and only if the value in the sqrt() above is a perfect square. -- The code below is based on that assumption -- -- Mike Arney, 4/3/2006 set nocount oncreate table Numbers (id int not null)insert Numbers values (6)insert Numbers values (7)insert Numbers values (8)insert Numbers values (9)insert Numbers values (10)insert Numbers values (11)insert Numbers values (12)-- insert Numbers values (14) -- uncomment for testing declare @Sum bigint, @Count bigint, @Min bigintselect @Sum = sum(convert(bigint, id)), @Count = count(*), @Min = min(id) from Numbersdeclare @sqrt floatselect @sqrt = sqrt( power((2*@Min - 1), 2) + 8*@Sum)if @sqrt = floor(@sqrt) select 'Sequence' else select 'Not Sequence'go drop table Numbersgo
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Friday, February 01, 2013 2:30 AM
Points: 15,
Visits: 43
|
|
A self join solution: select a.SeqNumber, max(b.SeqNumber) from #SequenceTable a join #SequenceTable b on a.SeqNumber > b.SeqNumber group by a.SeqNumber having a.SeqNumber - max(b.SeqNumber) > 1
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, November 28, 2007 5:38 AM
Points: 1,
Visits: 7
|
|
This way is a few hundred times faster (on large datasets)...NOTE:the details are missing but it still identifies the key holes in the sequence, except beiging and end which are obvious...? SELECT s1.SeqNumber FROM #SequenceTable s1 LEFT JOIN #SequenceTable s2 ON s1.SeqNumber = s2.SeqNumber -1 WHERE s2.SeqNumber IS NULL
|
|
|
|
|
SSCrazy
      
Group: General Forum Members
Last Login: 2 days ago @ 11:38 AM
Points: 2,818,
Visits: 1,037
|
|
I agree, the join on "where Seq2.SeqNumber < Seq1.SeqNumber" will be a killer with large tables. This version uses a simple a = b-1 join to find the gaps, then a subquery to find the last value before the gap. On 1 million rows it ran in 1/4 the elapsed time and 1/13 the CPU time of the original in the article. select LastSeqNumber, NextSeqNumber , FirstAvailable = LastSeqNumber + 1 , LastAvailable = NextSeqNumber - 1 , NumbersAvailable = NextSeqNumber - (LastSeqNumber + 1) from ( select (SELECT TOP 1 SeqNumber FROM #SequenceTable WHERE SeqNumber < a.SeqNumber ORDER BY SeqNumber DESC) as LastSeqNumber, a.SeqNumber as NextSeqNumber from #SequenceTable a left join #SequenceTable b on a.SeqNumber = b.SeqNumber + 1 where b.SeqNumber IS NULL ) a order by LastSeqNumber
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: 2 days ago @ 7:34 AM
Points: 1,196,
Visits: 290
|
|
Nice solution! I would like to contribute too. If we only want to find IF there is a gap in the sequence we only need to verify that COUNT(*) + MIN(ID) = MAX(ID), right? In that case, if we have an index on the ID columns we only need a quick scan on it with very little additional CPU+Memory usage with:
create table Numbers (id int not null) insert Numbers values (6) insert Numbers values (7) insert Numbers values (8)
-- insert Numbers values (14) -- uncomment for testing -- DELETE Numbers WHERE id = 14 SELECT CASE WHEN COUNT(*) + MIN(ID) - 1 = MAX(ID) THEN 'Sequence' ELSE 'Not Sequence' END FROM NUMBERS
go
drop table Numbers
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Monday, August 01, 2011 2:05 PM
Points: 32,
Visits: 47
|
|
Thanks all for the great examples of other ways to get the same results. It is interesting to see these different methods and the understandings of how SQL works under the hood so to speak, with different timings on the various methods. For me timing was not a big issue, and my 31 second run over a table of 3.5 million rows seemed fair. Timing becomes more significant if a process is being repetatively and frequently run. Over my dataset, Scott Coleman’s method ran in 25 seconds, being significantly slower than his own reported difference, indicating other factors come into play. Brendan Smith’s method ran in 10 seconds, and although I accept this is faster, it does not do the computes for the additional rows in my output set, so is not a reliable comparison, but looks promising. Mike Gress’s example did not complete, I bombed it off at over 14 minutes with no results (sorry Mike). I didn’t try Hanslindgren’s method as it is not my database, so I was unable to add indexes to it. To Mike Arney, my high school maths was never that good, but I am sure there will be some that can work this one out from your example. Joe Celko’s second method also did not complete, and I bombed this off at over 14 minutes with no results, and Joe’s first method took less than a second and produced no results (sorry Joe). Looking deeper at my source dataset, the timing differences I get to your own results may be due to the extreme number of gaps. My data set produced 1.1 million rows (of identified gaps). Also within my data set are sequence number duplications, which may have contributed to the failure of some of the scripts. Thanks you all for your feedback and suggestions. Stephen
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: 2 days ago @ 7:34 AM
Points: 1,196,
Visits: 290
|
|
Hi Stephen! Thank you, it is not always you get such an exhausting feedback of how things turn out when you post replies and hope you can help. Hanslindgren
|
|
|
|