Create a trigger to skip to the next one every time 13n - 1 comes up in the sequence
BradC, this is for you. Without any knowledge of SQL Server, I'll do it in Oracle. This seems to be a good reference for triggers in SQL Server
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;
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.
