I was tasked with migrating an ancient (2007) supposedly ASP.NET site from a "private" server in the office of the people who own it onto my company's hosting account on rackspace. Everything went smoothly until we switched the DNS. It turned out the original programmer had hardcoded references to files, specifically to the file that generates and formats the navigation menu. When we replaced the hardcoded references, it suddenly wasn't behaving at all like it should. I tracked down the query he used to generate the XML table for the menu.

SELECT 
parent.id, 
parent.title, 
'/page.aspx?id=' + isnull(cast(parent.id as varchar),'') + '&name=' + parent.name url, 
siteMapNode.id, siteMapNode.title, 
'/page.aspx?id=' + isnull(cast(siteMapNode.id as varchar),'') + '&name=' + siteMapNode.name url, 
siteMapSubNode.title, 
'/page.aspx?id=' + isnull(cast(siteMapSubNode.id as varchar),'') + '&name=' + siteMapSubNode.name url
FROM page parent 
right join page siteMapNode on siteMapNode.pageid=parent.id and    siteMapNode.active=1 and siteMapNode.hidden=0
left join page siteMapSubNode on siteMapSubNode.pageid=siteMapNode.id and siteMapSubNode.active=1 and siteMapSubNode.hidden=0 
where SiteMapNode.name <> 'home' and parent.menu = '1' and parent.active = 1 and parent.hidden <> 1 
order by parent.orderby, siteMapNode.orderby 
for xml auto

I had backed up the local db, also on that box in their office, "restored" to the backup on my local testing db, and then imported to rackspace's db from my testing db. (All this middleman stuff is to get around their firewalls.) So to all intents and purposes, the source code, tables and queries used across all 3 servers are exact copies.

When I run that query in MSSQL, here's a short excerpt of the results I get:

Their server (Version unknown right now, I have to go through teamviewer to find out.) and my Server (MSSQL 2008 Server 10.0.2531 - I think maybe SP1) correct formatting

Rackspace's Server (MSSQL 2008 server 10.0.4064 I think maybe SP2) Incorrect formatting

Any advice, hints, ideas on why the rackspace one acts so weirdly is greatly appreciated. It seems like it's obvious that it's something to do with the difference in servers but I can't tell if it's the version, the SP, a setting, or what. If anyone has ever seen something similar I'd love to hear what you learned from it. I'm just a humble programmer, definitely not an SQL expert.

EDIT: Here is the schema of the table, id is the primary key, the poorly named pageid is actually more of a parent-page-id. enter image description here

I've tried looking at it with and without for xml auto. When I take off for xml auto it returns the same results in a slightly different order, but when I change the 4th line of the query from siteMapNode.id to parent.pageid then the results show the same order. Adding xml auto back in shows the same results as the above images. I'll try experimenting with for xml path, thanks for the suggestion!

link|improve this question

75% accept rate
2  
Since I can't see the schema I can't see if things are set unique, are you sure that there are no duplicates in the parent table (ie in this example with id=2)? – Joachim Isaksson Feb 10 at 15:26
1  
One, no reason for the chuckle language. Clean it up or I will vote the question down. It appears the for xml Auto is not processing the same. The join no longer automatically creates children. First I would take out the for xml auto and see if they are returning the same raw data. With "for xml path" you should be able to shape it like you need. – Blam Feb 10 at 15:31
1  
You have no actual primary key on "id", just a not null column in the table from what I can see, so duplicates could be there. How many show up if you "select count(*) from page where id=2?" – Joachim Isaksson Feb 10 at 16:54
Joachim, you are right I meant to say it was set as identity. When I do that select, it only shows 1 item with that id, I will try a few others. – Christine Feb 10 at 17:08
1  
That is impressive that for xml auto will use the table schema. – Blam Feb 10 at 17:20
show 3 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.