Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6597015
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:09:14+00:00 2026-05-25T18:09:14+00:00

Is there any other better way to perform this operation? — USE EXAMPLE: EXEC

  • 0

Is there any other better way to perform this operation?

-- USE EXAMPLE: EXEC GetFirstIdInGap @tableName ='Employees',@column='IdEmployee'
CREATE PROCEDURE GetFirstIdInGap 
    (@tableName sysname, 
    @column sysname)
AS
    IF @tableName IS NOT NULL and @column IS NOT NULL
    BEGIN
        DECLARE @col varchar(50), @col2 varchar(50)
        SET @col = 'A.' + @column;
        SET @col2 = 'A2.' + @column;
        EXEC ('SELECT ISNULL((MIN('+@col+') - 1),(SELECT ISNULL(MAX('+@column+')+1,1) FROM '+@tableName+')) 
                    AS '+@column+'
                    FROM '+@tableName+' AS a
                    LEFT JOIN '+@tableName+' AS a2
                            ON '+@col2+' = '+@col+' - 1
                    WHERE '+@col2+' IS NULL AND '+@col+' > 1');
    END
GO

It gets the first free ID (if there are gaps) or the last one + 1 given a @tableName and @column. If there are no rows, it returns as the first ID = 1.

UPDATE:

For those who have asked about why do I need gaps of ID’s, I am gonna explain my problem (although I didn’t want to dig into it). I work with C# Winforms applications against other firmware applications which have serious memory restrictions. One of those restrictions is that I can only use a maximum code value of 65536. Those codes are equivalent of database ID’s, and in some cases the firmware code had reached the value of 65536. That’s why gap reusing would be wonderful for me.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T18:09:15+00:00Added an answer on May 25, 2026 at 6:09 pm

    Here is an approach that doesn’t require a numbers table (even one with more than 1,000 rows):

    CREATE PROCEDURE dbo.GetFirstIdInGap_2
        @table  SYSNAME,
        @column SYSNAME
    AS
    BEGIN
        SET NOCOUNT ON;
    
        DECLARE @sql NVARCHAR(MAX) = N';WITH c AS
            (
                SELECT n = ' + @column + ', 
                  rn = ROW_NUMBER() OVER (ORDER BY ' + @column + ')
                FROM ' + @table + '
            )
            SELECT ' + @column + ' = 1 + COALESCE(
                (SELECT MIN(c.n) FROM c INNER JOIN c AS n
                ON n.rn = c.rn + 1 WHERE n.n - c.n > 1),
                (SELECT MAX(c.n) FROM c),
                0);';
    
        EXEC sp_executesql @sql;
    END
    GO
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

is there any other simple,nicer way? require 'pp' a1 = [02/28/10,Webinars,131,0,26 Feb 2010,0,3d, 8h,
Is there any other way in java to implement call backs apart from inner
Is there any other way to change the QTextLayout of a QTextBlock that is
Are there any other ways to avoid LazyInitializationExceptions in a Hibernate web application besides
Are there any other IDEs worth my time for Lotus Notes development? We're doing
Is there any other place besides the metabase.xml file where the file upload size
Is there any other command for redirecting a controller to a particular view page
Are there any other packages for doing Venn diagrams in R besides the limma
Is there any other implementation (e.g. in an OSS project) of a Java SecurityManager
Are there any other STaX Writer implementation for C/C++ except libxml2?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.