Viewing post 1 (of 1 total)
/*
This code generates all missing ID #'s in table.
UniqueID: column name of your unique ID
SourceTable: name of your table with ID's
*/
declare @LastID int
select
@LastID =...
May 8, 2003 at 8:12 am
#456536