Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Transact-SQL (2005)
 How to export SQL 2005 table to XML file

Author  Topic 

pareekfranksoul
Starting Member

26 Posts

Posted - 2009-03-30 : 05:51:54
How to export SQL 2005 table to XML file

darkdusky
Aged Yak Warrior

591 Posts

Posted - 2009-03-30 : 07:57:25
Different ways to convert relational to xml depending on how you need to present it:
E.g.
SELECT *
FROM TableName
FOR XML AUTO

SELECT *
FROM TableName
FOR XML AUTO, TYPE

SELECT *
FROM TableName
for xml auto ,elements

http://www.aspfree.com/c/a/MS-SQL-Server/XML-and-the-SQL-2000-Server-Part-1/1/
Go to Top of Page
   

- Advertisement -