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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T12:55:29+00:00 2026-05-19T12:55:29+00:00

declare @SQL nvarchar(100) set @SQL = ” select @SQL = @SQL + FieldName +

  • 0
declare @SQL nvarchar(100)
set @SQL = ''

select @SQL = @SQL + FieldName + ' as [' + Description + '], '
from FieldsInfo
where TableName = 'Emp'

set @SQL = 'select '+ left(@SQL, len(@SQL)-1) + ' from Emp FOR XML AUTO, ELEMENTS, ROOT(''customers'')'

exec sp_executesql @SQL

above is dynamic sql and when it is executed by sp_executesql then i got output as as xml.
if i want to store that xml in a variable. so then what i need to add in my tsql script….please help

  • 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-19T12:55:30+00:00Added an answer on May 19, 2026 at 12:55 pm

    For anyone else trying to follow the question, here are some sample tables to use

    create table emp (a varchar(10), b int, id int identity)
    insert emp select 'abc', 1
    insert emp select 'def', 2
    create table fieldsinfo (tablename sysname, description sysname, fieldname sysname)
    insert fieldsinfo select 'emp', 'field 1', 'a'
    insert fieldsinfo select 'emp', 'field 2', 'b'
    

    This script stores the generated XML into the variable @XML (original!)

    declare @SQL nvarchar(max)
    set @SQL = ''
    
    select @SQL = @SQL + FieldName + ' as [' + Description + '], '
    from FieldsInfo
    where TableName = 'Emp'
    
    set @SQL = 'set @XML = (select '+ left(@SQL, len(@SQL)-1) + ' from Emp FOR XML AUTO, ELEMENTS, ROOT(''customers''))'
    
    declare @Xml xml
    exec sp_executesql @SQL, N'@XML xml output', @xml output
    
    select 'I have >>> ', @Xml   -- check contents
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Howdy. Consider the following: SQL> DECLARE 2 b1 BOOLEAN; 3 b2 BOOLEAN; 4 FUNCTION
Declare @BadDecimal varchar(5) Set @BadDecimal = '4.5' Declare @GoodDecimal Decimal Set @GoodDecimal = @BadDecimal
Ok guys working on search suggestions using jQuery-UI AutoComplete with results from sql-sever 2008
I declare a variable for a 64 bit counter as : long long call_count;
I declare a static char array, then I pass it to a function. How
Why does Visual Studio declare new classes as private in C#? I almost always
If you declare variables of type byte or short and attempt to perform arithmetic
In Oracle I can declare a reference cursor... TYPE t_spool IS REF CURSOR RETURN
Given the following: declare @a table ( pkid int, value int ) declare @b
Is there anyway to declare an object of a class before the class is

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.