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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T13:14:12+00:00 2026-05-12T13:14:12+00:00

I need to convert data in plain text columns into xml columns. However, not

  • 0

I need to convert data in plain text columns into xml columns. However, not all of the content is valid XML, so I need to ignore any rows with invalid XML. Is there a way I can filter out the invalid data either using some sort of inline conditional convert or something in the WHERE clause?

  • 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-12T13:14:13+00:00Added an answer on May 12, 2026 at 1:14 pm

    It sounds like you need a version of the ISNUMERIC function for XML data.

    Regrettably no such built-in function exists – so you’ll have to devise your own alternative, for which there are a couple of options:

    If this is a one-off or small scale process for which performance isn’t critical, you could process the input tables one row at a time inside a cursor, using a TRY...CATCH block to handle invalid casts (untested):

    DECLARE xmlCur CURSOR FOR
    SELECT textcol 
    FROM inputTable
    
    OPEN xmlCur
    DECLARE @string nvarchar(MAX)
    DECLARE @xml xml
    
    FETCH NEXT FROM xmlCur into @string
    
    WHILE @@fetch_status = 0
    BEGIN
        BEGIN TRY
            SET @xml = CAST(@string AS XML)
            -- Do something with XML
        END TRY
        BEGIN CATCH
            -- log failure/mark source row as invalid
        END CATCH
    
        FETCH NEXT FROM xmlCur into @string
    END
    
    CLOSE xmlCur
    DEALLOCATE xmlCur 
    

    Alternatively, if you’re comfortable with .Net programming (and it’s enabled on you server) you could use the CLR to create your own IsXML function. The .Net code would need to be not much more complex than the third post on this thread.

    The performance of the CLR solution may not be that much better than the cursor – you’d need to test to establish this.

    (An obvious thing to try, which doesn’t work, is a scalar-valued T-SQL function which attempts to cast the field to XML inside a TRY...CATCH block. However, TRY...CATCH is not permitted inside a function.)

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

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer your sql request should be SELECT tag, COUNT (*) as… May 13, 2026 at 6:32 pm
  • Editorial Team
    Editorial Team added an answer When you find elements with jQuery, you can get them… May 13, 2026 at 6:32 pm
  • Editorial Team
    Editorial Team added an answer /([^?\.]*)(\?.*)?$ works correctly for each of these: /Shop/Item.aspx?cn=&1&it=$2&ft=$3 /Shop/Item?cn=&1&it=$2&ft=$3 /Shop/Item.aspx… May 13, 2026 at 6:32 pm

Related Questions

I need to use rich text formatting for a field in a report in
I'm writing some template classes for parseing some text data files, and as such
This is a two part question. The first is a specific question about DataSets
We have Product Backlog in an Excel Spreadsheet that we also commit to SVN,

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.