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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T08:49:15+00:00 2026-06-13T08:49:15+00:00

Hi i am trying to insert 10000 records in to a table, by using

  • 0

Hi i am trying to insert 10000 records in to a table, by using this command.

CREATE TABLE mytable(
    id            INTEGER      PRIMARY KEY,
    TEXT          INTEGER       NOT NULL,
    OLDID         iNTEGER       NOT NULL,
    Firstname      VARCHAR(50)  NOT NULL,
    Middlename    VARCHAR(50)   NULL,
    last_name     VARCHAR(75)   NOT NULL,
    EMAIL         VARCHAR(225)  NOT NULL,
    STATUS        BOOL          NOT NULL
);

DECLARE @i int
declare @rows_to_insert int
SET @i = 6
set @rows_to_insert = 10000

WHILE @i < @rows_to_insert
    BEGIN
        INSERT INTO mytable VALUES (@i, @i,@i,'john'+@i,null,'Test','john'+@i+'@someone.com','Active');
        set @i = @i+1
    END

But i am getting this Error.

Msg 8101, Level 16, State 1, Line 8
An explicit value for the identity column in table ‘mytable’ can only be specified when a column list is used and IDENTITY_INSERT is ON.

  • 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-06-13T08:49:16+00:00Added an answer on June 13, 2026 at 8:49 am

    The table has an identity column. You need to explicitly state the rest of the columns in the insert statement. I might assume that your first column is the identity. Then it would look something like:

    BEGIN
        INSERT INTO mytable(<col2>, <col3>, <col4>, <col5>, <col6>, <col7>)
            VALUES (@i,@i,'john'+@i,null,'Test','john'+@i+'@someone.com','Active');
        set @i = @i+1
    END
    

    Of course, where is you would have your column names. It is always a good idea to list the column names, by the way.

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

Sidebar

Related Questions

I'm trying to insert around 16000 records into a single table. Because this is
I'm trying to insert 10000 values into Oracle from C# and am using the
I'm having some problems trying to figure out how to insert an integer using
I'm trying to implement a dictionary with a hash table (not using Java's provided
I'm trying to implement a dictionary with a hash table (not using Java's provided
im trying to insert this query with mysql_query INSERT INTO um_group_rights (`um_group_id`,`cms_usecase_id`,`um_right_id`) VALUES (2,1,1)
I'm trying to insert a new meta tag within the Head, I'm using a
I am trying to insert data to a new empty table. But I keep
I'm trying to run the code below to insert a whole lot of records
I'm trying to bulk load around 12m records into a InnoDB table in a

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.