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 7623455
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T04:42:40+00:00 2026-05-31T04:42:40+00:00

I am designin a new table which has an identity column with int type.The

  • 0

I am designin a new table which has an identity column with int type.The table supposed to have inserts most than 500.000 daily .So how can i avoid the problem of identity field exceeding max value?
my sample table create snippet is below

CREATE TABLE IntegratorQueue(
        ID int PRIMARY KEY IDENTITY(0,1),--IDENTITY,
        RefDetailId UNIQUEIDENTIFIER NOT NULL,
        RefStartDate datetime
        )

thanks

  • 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-31T04:42:41+00:00Added an answer on May 31, 2026 at 4:42 am

    You can use GUID ( UNIQUEIDENTIFIER ) in your table as PK if you dont want to use BIGINT. The Max capacity of the GUID is 2^128.

    CREATE TABLE IntegratorQueue(
            ID UNIQUEIDENTIFIER PRIMARY KEY DEFAULT NEWID(),--IDENTITY,
            RefDetailId UNIQUEIDENTIFIER NOT NULL,
            RefStartDate datetime
            )
    

    But if you need to know when will your INT identity exceed the max value you should check before the insert.

        INSERT INTO IntegratorQueue( RefDetailId, RefStartDate )
        VALUES ( NEWID(), GETUTCDATE() )
    
    -- INT capacity (-2,147,483,648) to (2,147,483,647 ) 
    
        IF 2147483647 - SCOPE_IDENTITY() < 500000
        --... Do something... send an Email ( xp_sendmail. http://msdn.microsoft.com/en-us/library/aa260697(v=sql.80).aspx )
        -- Insert Notification records into an another table... 
        -- return with 1, or something else, like the end of your query instead of RETURN 0 RETURN 1 and check this... so on...
    

    Maybe the DBCC CHECKIDENT( tablename, RESEED, currentseed+inserted)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Consider we have a database that has a table, which is a record of
I am designing a new System and I have a lot of Interfaces that
I'm new to data warehousing. First, I want to precise than my copy of
I have a database of events which gets updated every night. A single event
I am new to WCF and i am designing a project in which i
I am new to designing my own database. My project is orders/products/inventory type data,
When designing a new application/database for multiple users, it usually involves having a table
We have an integrated system (at least is that what we call it), which
We are designing our new product, which will include multi-tenancy. It will be written
I have a form on my Java application which basically is to provide the

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.