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

  • Home
  • SEARCH
  • 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 9251969
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T10:49:53+00:00 2026-06-18T10:49:53+00:00

I need to send a several list (about 20000 id’s) to a stored procedure,

  • 0

I need to send a several list (about 20000 id’s) to a stored procedure, like this:

1391924, 6546510, 7419635, 6599910, 6546888, 1116510, 6546720, ...

I have this data on a List<int>

How can I do to send this list to an stored procedure?

And then I need to insert the id’s list on a temporary table

  • 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-18T10:49:54+00:00Added an answer on June 18, 2026 at 10:49 am

    You can use: Table-Valued Parameters

    Table-valued parameters are a new parameter type in SQL Server 2008. Table-valued parameters are declared by using user-defined table types. You can use table-valued parameters to send multiple rows of data to a Transact-SQL statement or a routine, such as a stored procedure or function, without creating a temporary table or many parameters.

    Table-valued parameters are like parameter arrays in OLE DB and ODBC, but offer more flexibility and closer integration with Transact-SQL. Table-valued parameters also have the benefit of being able to participate in set-based operations.

    Eg.:

    SQL Server:

    Create Table-Valued Parameters:

      CREATE TYPE IDsTableType AS TABLE
      (                     
            [Product] [varchar](10) NOT NULL
      )
    

    Pass it to Stored Procedure:

     CREATE PROCEDURE GetIDs
     (
           @TableVariable IDsTableType READONLY
     )
     AS
     BEGIN
      //Do Something
    
     END
     GO
    

    C# Code for passing table valued parameter to Stored Procedure:

    DataTable dataTable = GetData();
    // Configure the SqlCommand and SqlParameter.
    SqlCommand cmd= new SqlCommand(
        "GetIDs", connection);
    cmd.CommandType = CommandType.StoredProcedure;
    SqlParameter tvpParam = cmd.Parameters.AddWithValue(
        "@TableVariable", dataTable);
    tvpParam.SqlDbType = SqlDbType.Structured;
    

    Refer: Passing table-valued parameter data to a stored procedure

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

Sidebar

Related Questions

I need to send millions of apple push notification like Urban Airship within several
I need to send instant messages (like forum PMs) between users with my asp.net
I need to perform several operations on a list of windows (minimize some of
I have several variables that I need to send from page to page... What
I need to send a newsletter to several thousands of subscribers with PHP. The
I need to send hundreds of newsletters, but would like to check first if
I have an asp.net web site which will send several ExecuteNonQuery() statements (stored proc)
Similar to this question I need to send a string as data in a
I need to send different IEnumerables to an Printer object. This printer object will
I need to send several commands over telnet to a server. If I try

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.