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 |
|
yosiasz
Master Smack Fu Yak Hacker
1635 Posts |
Posted - 2008-06-12 : 12:16:17
|
| Greetings,I have a free Gantt Chart Utility that can use xml file. Is there a way of constructing the xml skeleton or structure by reading the xml file exported from the Gantt application. That way from my user app I can via SQL 2005 stored procedure create the xml file (the way the Gantt app want it) , to feed into this Gantt Application.Thank you |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-06-12 : 13:14:10
|
| You can create xml in SQL Server by using FOR XML statement. It basically builds relational data from your SQL table to xml structures. Look into books online for more details. |
 |
|
|
|
|
|