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.
| Author |
Topic |
|
rternier
Starting Member
44 Posts |
Posted - 2009-01-07 : 18:47:08
|
| I have a crap load of XML that I need to transform on our servers.now I could just manually re-write the update statements, but all I need to do is change:<WarehouseConfig> <DocURL>http://mysite.com</DocURL> <UserName>HappyGilmore</UserName></WarehouseConfig>to:<WarehouseConfig> <State> <DocURL>http://mysite.com</DocURL> <UserName>HappyGilmore</UserName> </State></WarehouseConfig>and:<FTPLocation> <path>C:\...</path></FTPLocation>to<WarehouseConfig> <FTP> <Path>c:\ninjas_live_here</Path> </FTP></WarehouseConfig>is it possible to transform XML already in SQL Server? Or would it be easier to do it manually?----Killer ASP.NET ninja coding monkeys do exist![url]http://weblogs.asp.net/rternier[/url] |
|
|
PeterNeo
Constraint Violating Yak Guru
357 Posts |
|
|
|
|
|