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)

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

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.

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!