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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T16:36:33+00:00 2026-05-13T16:36:33+00:00

Scenario I have a stored procedure written in T-Sql that I use to insert

  • 0

Scenario

I have a stored procedure written in T-Sql that I use to insert data into a table as XML.
Since the data gets updated regularly, I want the rows to be updated if they already exist (Aside from when the application is first run, they will always exist).

Question

Below is the code of my Insert Sproc, however I cannot seem to workout the Update side of the stored procedure & would appreciate some help.

CODE

set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go

ALTER PROCEDURE [dbo].[INS_Curve] 
(
 @Curve varchar(MAX)
)
AS
DECLARE @handle int
 exec sp_xml_preparedocument @handle OUTPUT, @Curve

 INSERT INTO CurveDB..tblCurve(LoadID,BusinessDate, Factor)
  SELECT LoadID,BusinessDate, Factor
  FROM OPENXML(@handle, 'NewDataSet/Table1',2)
  WITH(
  LoadID int,
  BusinessDate DateTime,
  Factor float
  ) 

   exec sp_xml_removedocument @handle
  • 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-13T16:36:33+00:00Added an answer on May 13, 2026 at 4:36 pm

    Rather than inserting directly into the target table, put the data in the XML Document into a temporary table and then INSERT/UPDATE the target from there…

    DECLARE @tabTemporary TABLE
    (
      LoadID INT,
      BusinessDate DATETIME,
      Factor FLOAT
    )
    
    exec sp_xml_preparedocument @handle OUTPUT, @Curve
    
     INSERT INTO @tabTemporary (LoadID,BusinessDate, Factor)
      SELECT LoadID,BusinessDate, Factor
      FROM OPENXML(@handle, 'NewDataSet/Table1',2)
      WITH(
      LoadID int,
      BusinessDate DateTime,
      Factor float
      )
    
    exec sp_xml_removedocument @handle
    
     INSERT INTO CurveDB..tblCurve
     ( LoadID, BusinessDate, Factor )
     SELECT LoadID, BusinessDate, Factor
     FROM @tabTemporary T1
     WHERE NOT EXISTS
     (
     SELECT 1 FROM CurveDB..tblCurve T2 WHERE T1.LoadID = T2.LoadID
     )
    
     UPDATE T1
     SET T1.BusinessDate = T2.BusinessDate, T1.Factor = T2.Factor
     FROM CurveDB..tblCurve T1
     INNER
     JOIN @tabTemporary T2
     ON T1.LoadID = T2.LoadID
    

    Note: I’ve assumed that “LoadID” is a unique/primary key

    UPDATE

    There’s also the “UPSERT” functionality introduced in Sql Server 2008 that may be of interest.

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

Sidebar

Related Questions

Scenario I have a stored procedure written in T-Sql using SQL Server 2005. SEL_ValuesByAssetName
I'm using SQL Server 2008. I have an interesting scenario where a stored procedure
I have imported a stored procedure that returns a dataset into my Entity Framework.
Scenario I have a stored procedure that takes a single parameter. I want to
Here's my scenario: I have a simple stored procedure that removes a specific set
Scenario :- I have to call MYSQL stored procedure from PHP and do some
I have the following scenario: I have various user's data stored in my database.
I have a stored procedure that has a bunch of input and output parameters
Here's my scenario: Let's say I have a stored procedure in which I need
I have a stored procedure that needs to set a save point so that

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.