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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T11:38:59+00:00 2026-06-15T11:38:59+00:00

Ok, I have this code for the stored procedure right now. ALTER PROC [dbo].[Readxml]

  • 0

Ok, I have this code for the stored procedure right now.

ALTER PROC [dbo].[Readxml]
@xmlparam XML
AS
BEGIN
SET NOCOUNT ON
DECLARE @CustomerXml AS XML
SET @CustomerXml = @xmlparam

INSERT INTO Custtable.dbo.SPCustomer
(
    CustomerId,
    CustomerName
)
SELECT 
    Customer.attribute.value('CustomerId[1]', 'nvarchar(255)') AS CustomerId,
    Customer.attribute.value('Name[1]', 'nvarchar(255)') AS CustomerName
FROM 
    @xmlparam.nodes('Customers/Customer') AS Customer(attribute)
END

My XML looks like this (simplified).

<Customers>
  <Customer CustomerId="94" Name="name1" />
  <Customer CustomerId="95" Name="name2" />
  <Customer CustomerId="96" Name="name3" />
</Customers>

With my code right now I am not able to get the attribute values, as I understand I am trying to get elements inside the <Customer> tag, called CustomerId and Name, that don’t exist.

When selecting all rows from the table, after the procedure is done, I get all the rows but with NULL values.

My question, how do I get the attributes from the XML?

Thanks in advance!

  • 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-15T11:39:04+00:00Added an answer on June 15, 2026 at 11:39 am

    You need this:

    SELECT 
        Customer.attribute.value('@CustomerId', 'nvarchar(255)') AS CustomerId,
        Customer.attribute.value('@Name', 'nvarchar(255)') AS CustomerName
    FROM 
        @xmlparam.nodes('Customers/Customer') AS Customer(attribute)
    

    To get the attribute, use a leading @

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

Sidebar

Related Questions

I have a Stored Procedure which right now returns a (potentially) large data set.
This is stored procedure that worked on earlier version of mysql. Now, I have
In my stored procedure, I have a code snippet like this: OPEN p_result FOR
I have this code that executes a Stored Procedure mapped via EF EDM. meTest<MCTEntities,
I'm working on some code, and got stuck on this stored procedure problem... Have
I have made this code to open a database(created in SQLite browser) stored in
I have stored 6 records in mysql db,when i use this code each of
I currently have this code which stores XML into an XML-type column called data,
I want to create a stored procedure with 4 insert and i have this
I am using Oracle 11g, and I have a lot of stored procedure code

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.