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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T04:30:50+00:00 2026-06-12T04:30:50+00:00

This seemed like a great idea on Friday afternoon but I’m having a bit

  • 0

This seemed like a great idea on Friday afternoon but I’m having a bit of trouble. I’ve not used SQL XML querying before so I may of just done something incredibly stupid. Basically I want to pass a series of strings to query a table into a Stored Procedure.

I thought about this for a bit, considered using a CSV and then decided to attempt to do this using XML. So My XML looks like:

<Root>
  <string>value</string>
  <string>value</string>
  <string>value</string>
  <string>value</string>
</Root>

I’m passing this into a stored proc as an XML value type:

CREATE PROCEDURE usp_UpdateHotelImages
    -- Add the parameters for the stored procedure here
    @hotelID int, 
    @imageIDs xml
AS
BEGIN

so I want to shred the XML into a table of strings.

My SQL looks like this:

SELECT Child.value('(string)[1]', 'varchar(200)')
FROM @imageIDs.nodes('/Root/') AS N(Child))

But I keep getting the error message XQuery [nodes()]: Syntax error near '<eof>', expected a "node test".

I may well be doing something incredibly stupid here so any help will be gratefully received.

Update

I’ve broken it down into a single query to help:

DECLARE @imageIDs xml
SET @imageIDs = '<Root>
  <string>value</string>
  <string>value</string>
  <string>value</string>
  <string>value</string>
</Root>'

SELECT Child.value('(string)[1]', 'varchar(200)')
        FROM @imageIDs.nodes('/Root/') AS N(Child)
  • 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-12T04:30:52+00:00Added an answer on June 12, 2026 at 4:30 am

    The problem is the last / in the nodes function.

    SELECT Child.value('(string)[1]', 'varchar(200)') 
    FROM @imageIDs.nodes('/Root') AS N(Child)
    

    or alternatively

    SELECT Child.value('(.)[1]', 'varchar(200)') 
    FROM @imageIDs.nodes('/Root/*') AS N(Child)
    

    Depending on what you’re trying to achieve.

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

Sidebar

Related Questions

This seemed like it should be easy, but I have had trouble getting it
okay so this seemed like it should be pretty basic but I just can't
This seemed to spark a bit of conversation on another question and I thought
This question might belong on one of the other trilogies, but it sorta seemed
I'm not sure if this is the best way to ask this question but
This seemed like an easy thing to do. I just wanted to pop up
This seemed pretty straightforward: capture a POST in Fiddler (Windows, because I find it
In my mind, this seemed straigtforward...right up to the point that I sat down
In linking a sports event to two teams, at first this seemed to make
When I set out this morning the task seemed simple: build a list of

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.