How to stop multiple of 13 appearing in an Identity Column - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T20:12:58Zhttp://stackoverflow.com/feeds/question/611152http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/611152/how-to-stop-multiple-of-13-appearing-in-an-identity-column9How to stop multiple of 13 appearing in an Identity ColumnGateKiller2009-03-04T15:46:51Z2009-03-04T16:52:12Z
<p>Say I have the following table:</p>
<pre><code>Create Table Comments (
ID Int Identity(1,1) Not Null Primary Key Clustered,
Comment Text Not Null
)
</code></pre>
<p>Since I'm superstitious, how can I stop multiples of 13 appearing in the ID column?<br />ie: Skip 13, 26, 39 etc.</p>
<p>Solution in MySQL or MSSQL much appreciated.</p>
http://stackoverflow.com/questions/611152/how-to-stop-multiple-of-13-appearing-in-an-identity-column/611162#6111620Answer by ctrlalt3nd for How to stop multiple of 13 appearing in an Identity Columnctrlalt3nd2009-03-04T15:48:56Z2009-03-04T15:48:56Z<pre><code>Create Table Comments (
ID Int Identity(2,2) Not Null Primary Key Clustered,
Comment Text Not Null
)
</code></pre>
http://stackoverflow.com/questions/611152/how-to-stop-multiple-of-13-appearing-in-an-identity-column/611167#6111676Answer by Hi I am a troll for How to stop multiple of 13 appearing in an Identity ColumnHi I am a troll2009-03-04T15:50:00Z2009-03-04T16:52:12Z<p>Create a trigger to skip to the next one every time 13n - 1 comes up in the sequence</p>
<p>BradC, this is for you. Without any knowledge of SQL Server, I'll do it in Oracle. <a href="http://msdn.microsoft.com/en-us/library/ms189799.aspx" rel="nofollow">This</a> seems to be a good reference for triggers in SQL Server<br></p>
<pre><code>CREATE OR REPLACE TRIGGER trigname
AFTER INSERT ON Comments
FOR EACH ROW
IF (:new.ID % 13 = 12) THEN
-- increase the sequence
SELECT comment_ID_sequence.NEXTVAL FROM dual;
END IF;
END;
</code></pre>
<p>Without actually testing it, this will probably not work, but with a small amount of trial and error, you can get it working. Oracle has sequence objects that aren't tied to the table at all, and you can bump the sequence all day if you want, without ever touching the table. I don't know if this is true in SQL Server.</p>
http://stackoverflow.com/questions/611152/how-to-stop-multiple-of-13-appearing-in-an-identity-column/611223#6112234Answer by Alex Fort for How to stop multiple of 13 appearing in an Identity ColumnAlex Fort2009-03-04T16:04:08Z2009-03-04T16:35:07Z<p>Edit: previous answer was completely wrong.</p>
<p>You can do it like this:</p>
<pre><code>Identity(1, 13)
</code></pre>
<p>As tested by:</p>
<pre><code>for (int i = 1; i < 10000000; i += 13)
{
if (i % 13 == 0)
{
Console.WriteLine(i);
}
}
</code></pre>
<p>Incrementing by 13, starting from 1 should never give you a multiple of 13, at least up to the 10 million.</p>
http://stackoverflow.com/questions/611152/how-to-stop-multiple-of-13-appearing-in-an-identity-column/611247#6112472Answer by Crossbrowser for How to stop multiple of 13 appearing in an Identity ColumnCrossbrowser2009-03-04T16:08:51Z2009-03-04T16:32:44Z<p>Create a trigger on insert.</p>
<p>When inserting something which is a multiple of 13 minus 1 (12, 25, 38, etc.) insert and delete another row immediately.</p>
<p>Something like that (might need modifications):</p>
<pre><code>CREATE TRIGGER ON [table_name]
AFTER INSERT
AS
-- Get the last inserted identifier
DECLARE @LastID INT -- or whatever type is your identity column
SET @LastID = SELECT ID FROM inserted -- inserted holds the inserted entry
-- Check if the ID is a multiple of thirteen minus 1
IF ((@LastID + 1) % 13 = 0) -- not sure it would work, but something like that
BEGIN
INSERT INTO [table_name]
-- dummy values
DELETE FROM [table_name] WHERE ID = (@LastID + 1)
END
GO
</code></pre>
http://stackoverflow.com/questions/611152/how-to-stop-multiple-of-13-appearing-in-an-identity-column/611347#6113473Answer by Aaron Digulla for How to stop multiple of 13 appearing in an Identity ColumnAaron Digulla2009-03-04T16:28:40Z2009-03-04T16:49:07Z<p>Identity(7919, 4966)</p>
<p>This returned 432'436 unique IDs within a 32bit int and none was a multiple of 13.</p>
<p>More pairs:</p>
<p>17, 1040 - Yields 2'064'889 values</p>
<p>17, 559 - Yields 3'841'653 values</p>
<p>[EDIT] Small python program to test:</p>
<pre><code>import sys
def x(start, step):
count = 0
i = start
N = 1 << 31
while i < N:
#print i
if i % 13 == 0:
break
i += step
count += 1
print i, i/13.0, count
if __name__ == '__main__':
x(int(sys.argv[1]), int(sys.argv[2]))
</code></pre>
<p>I just used a couple of primes but that didn't really work; with primes, I could only get sequences with 1-12 numbers. So I started with a random pair and varied the second number until the script would stop to return.</p>
<p>I have no idea of the mathematical properties of the two numbers ;) Anyone?</p>