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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T07:13:00+00:00 2026-05-29T07:13:00+00:00

Msg 1086, Level 15, State 1, Line 20 The FOR XML clause is invalid

  • 0

Msg 1086, Level 15, State 1, Line 20
The FOR XML clause is invalid in views, inline functions, derived tables, and subqueries when they contain a set operator. To work around, wrap the SELECT containing a set operator using derived table syntax and apply FOR XML on top of it.

I get this error when i run this:

SELECT
    STUFF((
    SELECT 1
    UNION ALL
    SELECT 2
    FOR XML PATH('')
    ),1,0,'') [COLUMN]

works fine when i run this (without Union ALL)

SELECT
    STUFF((
    SELECT 1
    FOR XML PATH('')
    ),1,0,'') [COLUMN]

Any suggestions why UNION ALL Doesn’t work, or how to get it to work inside the STUFF()?

  • 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-29T07:13:01+00:00Added an answer on May 29, 2026 at 7:13 am

    There’s a simple workaround for that, you should wrap your union query(or any derived table for that matter) with another select. Do this and then continue the syntax normally:

    select * from
    (
    SELECT 1 as I
    UNION ALL
    SELECT 2 as J
    ) as K
    

    Something like this is what you’re searching for:

    SELECT  STUFF((
        select * from(
    
        SELECT * from dbo.Table1 as I
        UNION ALL
        SELECT * from dbo.Table2 as j
        ) as k
        FOR XML PATH('')
        ),1,0,'')
    

    I checked and it works flawlessly

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

Sidebar

Related Questions

Msg 701, Level 17, State 123, Line 1 There is insufficient system memory to
I get the error: Msg 2714, Level 16, State 1, Line 16 There is
I have this error message: Msg 8134, Level 16, State 1, Line 1 Divide
This Codes give me error: Msg 156, Level 15, State 1, Procedure DefaultActivity, Line
Query gives me some error: Msg 156, Level 15, State 1, Line 4 Incorrect
Msg 8114, Level 16, State 5, Procedure spGetDetails, Line 88 Error converting data type
Msg 547, Level 16, State 0, Line 1 The INSERT statement conflicted with the
I am getting this error: Msg 201, Level 16, State 4, Procedure NewEmployee, Line
I get Msg 8114, Level 16, State 5, Procedure DetayliArama, Line 0 Error converting
I'm getting this error message: Msg 16927, Level 16, State 1, Procedure GetWfGenProcessParameters, Line

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.