Testtext
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 5 articles for 0.000 sec
testsub     

Group: nl.muziek · Group Profile · Search for Testtext in nl.muziek
Author: kafka
Date: Mar 11, 2007 04:17

testtext --------------= Posted using GrabIt =---------------- ------= Binary Usenet downloading made easy =--------- -= Get GrabIt for free from http://www.shemes.com/ =-
Show full article (0.18Kb)
Re: Communicate XML between SP's     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Testtext in microsoft.public.sqlserver.xml
Author: Lauren Quantrell
Date: Mar 5, 2007 04:36

...> EXEC sp_xml_preparedocument @idoc OUTPUT select * from testtext where id=3 for xml auto ... @idoc as int AS insert into testtext (test) select test from openxml(@idoc,'/testtext',0) WITH (id int, test text) GO My Idea was to ...) Select <WhatEverXMLColumnNameYouWant> From <DBName>.<ObjectOwner>.testtext where id=3- Hide quoted text - ...
Show full article (2.08Kb)
Re: Communicate XML between SP's     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Testtext in microsoft.public.sqlserver.xml
Author: prabhupr
Date: Mar 4, 2007 11:59

...> EXEC sp_xml_preparedocument @idoc OUTPUT select * from testtext where id=3 for xml auto ...> @idoc as int AS insert into testtext (test) select test from openxml(@idoc,'/testtext',0) WITH (id int, test text) GO My Idea was to ...Insert INTO #t (MyXMLColumn) Select <WhatEverXMLColumnNameYouWant> From <DBName>.<ObjectOwner>.testtext where id=3
Show full article (1.75Kb) · Show article thread
Re: Communicate XML between SP's     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Testtext in microsoft.public.sqlserver.xml
Author: Michael Rys [MSFT]
Date: Feb 23, 2007 22:41

... and parse the XML document in Memory EXEC sp_xml_preparedocument @idoc OUTPUT select * from testtext where id=3 for xml auto exec testXMLInsert @idoc --now clear ... CREATE PROCEDURE [dbo].[testXMLInsert] @idoc as int AS insert into testtext (test) select test from openxml(@idoc,'/testtext',0) WITH (id int, test text) GO My Idea was to parse the handle to the XML ...
Show full article (1.40Kb) · Show article thread
Communicate XML between SP’s     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for Testtext in microsoft.public.sqlserver.xml
Author: Merijn
Date: Feb 23, 2007 05:42

...Load and parse the XML document in Memory EXEC sp_xml_preparedocument @idoc OUTPUT select * from testtext where id=3 for xml auto exec testXMLInsert @idoc --now clear the XML ... SP 2 CREATE PROCEDURE [dbo].[testXMLInsert] @idoc as int AS insert into testtext (test) select test from openxml(@idoc,'/testtext',0) WITH (id int, test text) GO My Idea was to parse the handle to the XML ...
Show full article (0.93Kb)