[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.4

Need help exporting SQL table to XML file for a dynamic menu feed...

Asked by chrabark in MS SQL Server

Tags: xml, sql, table, file

I have a recursive table with a list of topics and subtopics, using a parent/child relationship...

CREATE TABLE [_Topics] (
      [Topic_ID] [int] NOT NULL ,
      [Topic] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
      [Parent] [int] NULL ,
      CONSTRAINT [PK__Topics] PRIMARY KEY  CLUSTERED
      (
            [Topic_ID]
      )  ON [PRIMARY]
) ON [PRIMARY]
GO


I also have a stored procedure to create and xml dataset...

CREATE  Procedure _build_menu
As
SET NOCOUNT ON
Select     1 As Tag,
     0 As Parent,
     Null as [Topics!1],
     Null as [Topic!2!ID],
     Null as [Topic!2!Name]
Union
Select     2,
     1,
     Null,
     Topic_ID,
     Topic
From _Topics
For Xml Explicit
GO


And some ASP code to run it each time a topic is added...

Dim con, strLORE, cmd, stm
str = "my_connect_string"
Set con = Server.CreateObject("ADODB.Connection")
con.Open(str)
Set stm = Server.CreateObject("ADODB.Stream")
stm.Open
Set cmd = Server.CreateObject("ADODB.Command")
With cmd
      Set      .ActiveConnection = con
            .CommandType = 4
            .CommandText = "_build_menu"
            .Properties("Output Stream").Value = stm
            .Execute , , 1024
End With
Set cmd = Nothing
stm.SaveToFile "d:\webs\thissite\xml\Topics.xml", 2
Response.Write "File saved."
stm.Close
Set stm = Nothing
con.Close
Set con = Nothing


And lastly, the problem...  The resulting file is a single line text demp, that appears to be xml, but there does not seem to be a parent/child relationship, it is simply a dump, row-by-row, of the table.  How can I make this file appear as a properly formatted xml file and with the relationship desired?
 
Related Solutions
Keywords: Need help exporting SQL table to XML f…
 
Loading Advertisement...
 
[+][-]07/02/05 12:18 PM, ID: 14355165Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/02/05 05:21 PM, ID: 14355961Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/04/05 03:24 AM, ID: 14361383Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/05/05 07:35 AM, ID: 14369485Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07/05/05 08:06 AM, ID: 14369786Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: MS SQL Server
Tags: xml, sql, table, file
Sign Up Now!
Solution Provided By: Hilaire
Participating Experts: 4
Solution Grade: A
 
[+][-]08/01/05 02:28 PM, ID: 14574337Administrative Comment

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]08/01/05 05:55 PM, ID: 14575644Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/07/05 02:39 PM, ID: 14619398Administrative Comment

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]08/11/05 12:24 PM, ID: 14655002Administrative Comment

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091021-EE-VQP-81