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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T22:11:32+00:00 2026-05-15T22:11:32+00:00

From SQL Server 2005, I need to do an export for a client to

  • 0

From SQL Server 2005, I need to do an export for a client to an xml-like format shown below. Why they are not using XML, I don’t know. Any ideas on how to do this quickly without exporting the file “FOR XML” and then writing a messy script to go through the text file and find and replace <, >, and every closing XML tag? Thank you.

START_FILE:
DATE:
COLUMN1:A
COLUMN2:B
COLUMN3:C
COLUMN1:D
COLUMN2:E
COLUMN3:F
COLUMN1:G
COLUMN2:H
COLUMN3:I
END_FILE:
  • 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-15T22:11:33+00:00Added an answer on May 15, 2026 at 10:11 pm

    I went with Martin’s suggestion of trying an UNPIVOT query, which was all new to me. Using SSIS, I am now exporting the query to a text file formatted exactly as I need it with a run time of just a few seconds. I am using a query like below with a “:” as a column delimiter. Great suggestion Martin!

    SELECT 'START_FILE' as FieldName, '' as 'FieldValue'
    UNION ALL 
    select 'DATE' as FieldName, getDate() as 'FieldValue'
    
    UNION ALL
    
    SELECT  FieldName, FieldValue
    FROM
        (
        SELECT
        Cast(Column1Name as varchar) as VendorColumn1Name,
        Cast(Column2Name as varchar) as VendorColumn2Name,
        Cast(Column3Name as varchar) as VendorColumn3Name
        FROM MyTable
        ) c
        UNPIVOT
        (
        FieldValue for FieldName IN(VendorColumn1Name, VendorColumn2Name, VendorColumn3Name)
        ) as p
    
    UNION ALL
    SELECT 'END_FILE' as FieldName, '' as 'FieldValue'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 499k
  • Answers 500k
  • 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 This is not pretty but it works: rm -R $(ls… May 16, 2026 at 12:45 pm
  • Editorial Team
    Editorial Team added an answer Yes. Override the base1 and base2 methods in Derived to… May 16, 2026 at 12:45 pm
  • Editorial Team
    Editorial Team added an answer No, you can't. Unfortunately, UIEvent doesn't expose any public way… May 16, 2026 at 12:45 pm

Trending Tags

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

Top Members

Related Questions

I need to export database from SQL Server 2005 to SQL scripts (like we
Is there a way to get stored procedures from a SQL Server 2005 Express
Is there an automatic way in SQL Server 2005 to create a database from
I'm using Microsoft SQL Server 2005, and am relatively new to SQL in general.
My question is similar to Upgrading SQL Server 2000 to 2005 or 2008 -
I received a dbf file from one of our vendors. I need to export
I have a table in SQL Server 2005 database that has following columns: Id,ProductName,Year,Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
I have a database running on MS SQL Server 2005 and an ASP.NET 3.5
How do I make this work in SQL Server (2005)? The error message is
I'm writing an export function, where I need to export contacts to Excel, and

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.