No announcements
Found 2655005 threads
-
0 Votes
extract text from xml node using xslt
The xsl:value-of select="@name" extracts the value of an attribute called name on the current element (in this case the var element).Answered | 2 Replies | 5460 Views | Created by amirin - Tuesday, June 15, 2010 4:06 AM | Last reply by Vitek Karas - MSFT - Thursday, June 24, 2010 7:46 AM -
0 Votes
Internal Variance of XML Results with FROM nodes() vs FROM (subquery from nodes())
Hi PeterK at NFS, Based on my understanding, that's because query() method returns an instance of untyped XML, while the result of the ...Answered | 1 Replies | 1483 Views | Created by PeterK at NFS - Friday, July 22, 2016 5:13 PM | Last reply by Sam Zha - Saturday, July 23, 2016 9:06 AM -
0 Votes
extract data from xml
I did not observe that you also change the path from the last cross apply.Answered | 6 Replies | 5610 Views | Created by sasha3 - Monday, September 17, 2012 7:57 AM | Last reply by sasha3 - Wednesday, September 19, 2012 4:27 AM -
0 Votes
extracting "\t" from XML instead of "\\t"
if ( separator == "\\t" ) separator = "\t"; i just couldn't find a way to extract [TAB] from the xml ...Answered | 7 Replies | 6998 Views | Created by rodniko - Thursday, July 16, 2009 10:59 AM | Last reply by rodniko - Tuesday, July 21, 2009 7:12 AM -
0 Votes
Simple XML Element Extraction
Not only is your database flawed in design, but your XML schema is full of errors (subcontractor in contractors node??)Answered | 9 Replies | 4157 Views | Created by Trecius - Thursday, July 16, 2009 9:37 PM | Last reply by Trecius - Friday, July 17, 2009 5:00 PM -
0 Votes
How to prepare script to extract data from xml
You said you want to compare Premium with Class5Premium, but you're only using a sub-node BasePremium.Answered | 4 Replies | 1588 Views | Created by Durgavalli26 - Thursday, July 28, 2016 9:17 AM | Last reply by Stefan Hoffmann - Monday, August 1, 2016 10:52 AM -
2 Votes
Remove node from xml document
x.Name.LocalName == "Node4").FirstOrDefault(); if (xe !Answered | 2 Replies | 802 Views | Created by Lio1972 - Friday, February 19, 2016 10:57 AM | Last reply by Fouad Roumieh - Friday, February 19, 2016 11:16 AM -
0 Votes
Extracting metadata and attachment from XML
First you need a seekable stream so you can use to extract the encoded data out.Answered | 4 Replies | 2692 Views | Created by Anand Venkatraman - Wednesday, August 1, 2012 1:20 PM | Last reply by Sajid Ali Baig - Thursday, August 2, 2012 12:47 AM -
0 Votes
Extract data from XML
Linq and XElement var xml = XElement.Load(xmlString); var id_number = ( from body in xml.Elements("body") from ...Answered | 4 Replies | 515 Views | Created by M Azeem Ahmad - Sunday, September 16, 2018 8:44 PM | Last reply by Zhanglong Wu - Tuesday, September 18, 2018 3:33 AM -
0 Votes
how to extract child nodes for each node in some listOfNodes in MSXML DOM using C/C++.....Please help urgently!!
You can use getElementByTagName() method to extract the specific node.Answered | 9 Replies | 15280 Views | Created by BRIGHTEST STAR - Wednesday, September 2, 2009 8:44 AM | Last reply by Kazem.McIntyre - Sunday, January 23, 2011 8:29 AM -
0 Votes
XML Column from table extract to Pipe Delimited Text File
Are you looking at shredding data within XML nodes and then importing it to text file or are you looking at exporting XML value as is?Answered | 1 Replies | 1492 Views | Created by KODI_KODI - Tuesday, August 26, 2014 2:18 PM | Last reply by Visakh16 - Tuesday, August 26, 2014 2:29 PM -
2 Votes
extract XML elements from main document
Ya, I realize I was sloppy - I did not want to include the real XML doc, since it is huge, and proprietary, so was making it up.Answered | 9 Replies | 3290 Views | Created by dalek - Friday, August 28, 2009 8:14 PM | Last reply by dalek - Tuesday, September 1, 2009 8:19 PM -
0 Votes
How to extract data from below mentioned xml
Then use the xpathnavigator to move to the desired node get the value of that node.Answered | 6 Replies | 6343 Views | Created by Manoj Ruwali - Tuesday, September 28, 2010 4:47 AM | Last reply by Well0549 - Tuesday, October 19, 2010 8:40 AM -
0 Votes
Extracting XML from a SQL Table Column
I tried using your code but found out the my XML column even though it stores quasi-XML has a data type of ntext, and the fact that I don't have it use '/Ans', it ...Answered | 6 Replies | 7889 Views | Created by Simon - - Monday, August 31, 2009 11:06 AM | Last reply by Simon - - Wednesday, September 2, 2009 10:28 PM -
0 Votes
extract xml data to fields
Either of the following from clauses will work (I prefer the first): FROM @xml.nodes('my:Action_Group/my:Actions/my:group20/my:group21') x(y) FROM ...Answered | 2 Replies | 5585 Views | Created by GregCrossan - Tuesday, April 17, 2012 6:05 AM | Last reply by GregCrossan - Tuesday, April 17, 2012 12:37 PM -
1 Votes
how to extract XML from a textfile in C#?
If you have to save xml document and text in a text file and you want to extract only XML, you can consider add some especial characters at the start ...Answered | 4 Replies | 2764 Views | Created by Reeganraj - Thursday, October 10, 2013 1:54 PM | Last reply by Damon Bu - MSFT - Thursday, October 17, 2013 3:44 AM -
1 Votes
extracting element from the string xml and appending to another schema in biztalk
Hi Greg, Thanks for your reply, In my requirement, as i have explained, i am getting a web response from a webservice and i am taking it and loading it ...Answered | 10 Replies | 6222 Views | Created by Kartik369 - Friday, November 19, 2010 10:01 AM | Last reply by Greg.Forsythe - Tuesday, November 23, 2010 9:30 AM -
0 Votes
Looping through an XML node
Which data in your transaction elements do you want to extract?Answered | 4 Replies | 3441 Views | Created by ski_freak - Thursday, July 16, 2009 3:21 PM | Last reply by ski_freak - Thursday, July 16, 2009 4:52 PM -
0 Votes
XML search for string in a node and search for another string within that node as a result
So adding it before the decendant node sorts out the problem.Answered | 20 Replies | 1997 Views | Created by rockstar09 - Tuesday, March 13, 2012 11:46 AM | Last reply by Marco Minerva - Monday, April 2, 2012 2:32 PM -
1 Votes
Retrieve a XML node from XML dataSet
We tried your last proposal using Xquery: (as we use Oracle the Xquery sintax is a bit diferent) SELECT column_value ...Answered | 2 Replies | 1334 Views | Created by SarriElek - Tuesday, June 18, 2013 9:43 AM | Last reply by SarriElek - Wednesday, June 19, 2013 8:53 AM - Items 1 to 20 of 2655005 Next ›
No announcements