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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T22:31:54+00:00 2026-05-12T22:31:54+00:00

I have a table that contains a column that is XML data type. I

  • 0

I have a table that contains a column that is XML data type. I am looking to put a view over the entire table including the XML data type column. The view will expand contents of the XML data type column. I am having a problem being able to traverse the entire XML document and pick up values from particular XML nodes.

I am using this SQL query and it’s only picking up the first instance of value for the FuelPathwayCode XML node. I am looking to traverse an entire XML document and query ALL values of the /FuelPathwayCode XML node in one result set?

SELECT 
   UploadFileID, Year, Quarter, 
   FileContent.value('(LCFS-Report/Fuel/FuelPathwayCode)[1]', 'varchar(100)') as FuelPathwayCode 
FROM LC_UploadXM

I am looking for a result set like this:

UploadFileID  Year  Quarter  FuelPathWayCode   PhysicalPathwayCode
8             2010  4        CARBOB001         PP001
8             2010  4        CARBOB002-HIGH    PP001  

Table Columns:

UploadFileID,
Year,
Quarter,
CompanyID,
FileType,
FileContent,
FileName,
Description,
Success,
AddBy,
AddDttm
  • 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-12T22:31:54+00:00Added an answer on May 12, 2026 at 10:31 pm

    You need to do a CROSS APPLY and pick the bit of the XML that you need, and then you need to do a series of .value calls on these:

    SELECT 
       UploadFileID, Year, Quarter, 
       FC.Node.value('(FuelPathwayCode)[1]', 'varchar(100)') as FuelPathwayCode 
    FROM 
       LC_UploadXM
    CROSS APPLY 
       FileContent.nodes('/LCFS-Report/Fuel') as FC(Node)
    

    This basically takes all your XML nodes that are present in that XPath /LCFS-Report/Fuel and uses them as if they’re rows in a table (schema is FC, “virtual table” name is “Node” – those can be used however you like, totally up to you), and then cross applies those rows to the base select.

    That “virtual table” FC.Node can now be queried for individual values – e.g. your “pointer” in the XML is already sitting on the “Fuel” subnode in the XML, and now you can access the individual values inside it using the .value() call.

    Check out Alex Homer’s SQL Server 2005 XQuery intro article – excellent resource!

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

Sidebar

Ask A Question

Stats

  • Questions 217k
  • Answers 217k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I would also recommend using ant. I posted a big… May 12, 2026 at 11:22 pm
  • Editorial Team
    Editorial Team added an answer Sure: HttpContext.Current.Application["key"] May 12, 2026 at 11:22 pm
  • Editorial Team
    Editorial Team added an answer They might have a longer token in there to reduce… May 12, 2026 at 11:22 pm

Related Questions

I hope I can explain this clearly. I have a table, lets call it
I have a table that contains a column of XML Datatype (column name FileContent).
I was experiencing a hard time creating FK relationships in my relational SQL database
I am in need of some guidance of how to carry out a specific
I've got in an ASP.NET application this process : Start a connection Start a

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.