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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:48:43+00:00 2026-05-27T17:48:43+00:00

I have 2 tables: Order (with a identity order id field) OrderItems (with a

  • 0

I have 2 tables:

  • Order (with a identity order id field)
  • OrderItems (with a foreign key to order id)

In a stored proc, I have a list of orders that I need to duplicate. Is there a good way to do this in a stored proc without a cursor?


Edit:

This is on SQL Server 2008.

A sample spec for the table might be:

CREATE TABLE Order (
   OrderID INT IDENTITY(1,1),
   CustomerName VARCHAR(100),
   CONSTRAINT PK_Order PRIMARY KEY (OrderID)
)

CREATE TABLE OrderItem (
   OrderID INT,
   LineNumber INT,
   Price money,
   Notes VARCHAR(100),
   CONSTRAINT PK_OrderItem PRIMARY KEY (OrderID, LineNumber),
   CONSTRAINT FK_OrderItem_Order FOREIGN KEY (OrderID) REFERENCES Order(OrderID)
)

The stored proc is passed a customerName of ‘fred’, so its trying to clone all orders where CustomerName = ‘fred’.

To give a more concrete example:

Fred happens to have 2 orders:

  • Order 1 has line numbers 1,2,3
  • Order 2 has line numbers 1,2,4,6.

If the next identity in the table was 123, then I would want to create:

  • Order 123 with lines 1,2,3
  • Order 124 with lines 1,2,4,6
  • 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-27T17:48:44+00:00Added an answer on May 27, 2026 at 5:48 pm

    On SQL Server 2008 you can use MERGE and the OUTPUT clause to get the mappings between the original and cloned id values from the insert into Orders then join onto that to clone the OrderItems.

    DECLARE @IdMappings TABLE(
      New_OrderId INT,
      Old_OrderId INT)  
    
    ;WITH SourceOrders AS
    (
    SELECT *
    FROM Orders
    WHERE CustomerName = 'fred'
    )
    MERGE Orders AS T
    USING SourceOrders AS S
    ON 0 = 1
    WHEN NOT MATCHED THEN
      INSERT (CustomerName )
      VALUES (CustomerName )
    OUTPUT inserted.OrderId,
           S.OrderId INTO @IdMappings;  
    
    INSERT INTO OrderItems
    SELECT New_OrderId,
           LineNumber,
           Price,
           Notes
    FROM   OrderItems OI
           JOIN @IdMappings IDM
             ON IDM.Old_OrderId = OI.OrderID
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two tables: orders and orders_items. Both sharing the field orderID. I want
I'm running SQL Server 2005 and .Net 2.0. I have some tables that need
I have the following tables: create table TableA ( Id int primary key identity,
I have next tables Order , Transaction , Payment . Class Order has some
I have two Tables. Order - With Columns OrderID, OrderStatusID OrderStatus - With Columns
I have these tables: customer -------- customer_id int name varchar(255) order ----- order_id int
I have 2 tables, Order and OrderItem, which have a 1-many relationship. When I
Lets say I have data in two tables. In one I have Order ID
Suppose I have a dataset with those two immortal tables: Employee & Order Emp
Say I have 2 tables: Customers and Orders. A Customer can have many Orders.

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.