For Xml Explicit Proc Returns int
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 9 articles for 0.009 sec
Re: For Xml Explicit Proc Returns int?     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for For Xml Explicit Proc Returns int in microsoft.public.sqlserver.xml
Author: Peter W. DeBetta
Date: Aug 23, 2007 13:48

...FROM Sales.SalesOrderHeader FOR XML EXPLICIT, TYPE) RETURN @xml END GO DECLARE @xml ....test exec temp_workflow_usage I get the FOR XML clause is not allowed in a ... xml result from a proc using that uses xml explicit and it seems like i'm getting an int back?...'t I be getting back an xml type? Also also get this error....
Show full article (1.97Kb) · Show article thread
Re: For Xml Explicit Proc Returns int?     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for For Xml Explicit Proc Returns int in microsoft.public.sqlserver.xml
Author: Peter W. DeBetta
Date: Aug 23, 2007 13:32

... temp_workflow_usage I get the FOR XML clause is not allowed in ... W. DeBetta" wrote: Procs always return an int or null. You ... a temp table with an xml column and work from there...result from a proc using that uses xml explicit and it...I be getting back an xml type? Also also get this...The data types varchar and xml are incompatible in the add...
Show full article (1.86Kb) · Show article thread
Re: For Xml Explicit Proc Returns int?     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for For Xml Explicit Proc Returns int in microsoft.public.sqlserver.xml
Author: Peter W. DeBetta
Date: Aug 23, 2007 13:22

... temp_workflow_usage I get the FOR XML clause is not allowed in ... W. DeBetta" wrote: Procs always return an int or null. You ... a temp table with an xml column and work from there...result from a proc using that uses xml explicit and it...I be getting back an xml type? Also also get this...The data types varchar and xml are incompatible in the add...
Show full article (1.82Kb) · Show article thread
Re: For Xml Explicit Proc Returns int?     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for For Xml Explicit Proc Returns int in microsoft.public.sqlserver.xml
Author: Peter W. DeBetta
Date: Aug 23, 2007 13:21

...GO CREATE TABLE #temp (XmlReturn XML) INSERT INTO #temp EXEC dbo...temp_workflow_usage I get the FOR XML clause is not allowed in...W. DeBetta" wrote: Procs always return an int or null. You...insert the results of the proc into a temp table with...result from a proc using that uses xml explicit and it...I be getting back an xml type? Also also get this...
Show full article (1.95Kb) · Show article thread
Re: For Xml Explicit Proc Returns int?     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for For Xml Explicit Proc Returns int in microsoft.public.sqlserver.xml
Author: Michael Morse
Date: Aug 21, 2007 13:16

...exec temp_workflow_usage I get the FOR XML clause is not allowed in a...Peter W. DeBetta" wrote: Procs always return an int or null. You either... a temp table with an xml column and work from there... ... result from a proc using that uses xml explicit and it ... I be getting back an xml type? Also also get this ... The data types varchar and xml are incompatible in the add ...
Show full article (1.13Kb) · Show article thread
Re: For Xml Explicit Proc Returns int?     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for For Xml Explicit Proc Returns int in microsoft.public.sqlserver.xml
Author: Michael Morse
Date: Aug 21, 2007 13:02

...have been unseccesful in getting the XML into a temp table. I will...Peter W. DeBetta" wrote: Procs always return an int or null. You either...into a temp table with an xml column and work from there...... result from a proc using that uses xml explicit and it ...t I be getting back an xml type? Also also get this ... The data types varchar and xml are incompatible in the add ...
Show full article (1.21Kb) · Show article thread
Re: For Xml Explicit Proc Returns int?     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for For Xml Explicit Proc Returns int in microsoft.public.sqlserver.xml
Author: Peter W. DeBetta
Date: Aug 21, 2007 12:29

Procs always return an int or null. You either need to make dbo.... or insert the results of the proc into a temp table with an xml column and work from there... ...xml result from a proc using that uses xml explicit and it seems like i'm getting an int back? Why wouldn't I be getting back an xml type? Also also get this ...> The data types varchar and xml are incompatible in the add ...
Show full article (0.89Kb) · Show article thread
For Xml Explicit Proc Returns int?     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for For Xml Explicit Proc Returns int in microsoft.public.sqlserver.xml
Author: Michael Morse
Date: Aug 21, 2007 11:32

... to get the xml result from a proc using that uses xml explicit and it seems like i'm getting an int back? Why wouldn't I be getting back an xml type? Also also get this error. declare @xml... exec @xml = dbo.temp_workflow_usage print '@xml =' + @xml Msg 402, Level 16, State 1, Line 3 The data types varchar and xml are incompatible in the add operator. Thanks for ...
Show full article (0.40Kb)
Re: XML Schema Collections and FOR XML     

Group: microsoft.public.sqlserver.xml · Group Profile · Search for For Xml Explicit Proc Returns int in microsoft.public.sqlserver.xml
Author: Javal
Date: Dec 3, 2007 15:49

... 1. Using CLR proc to create the XML docment Least likely to be your fried as you... the table data and returns an XML doc. Ick! :) I am ...go create table dbo.Products(productID int identity(1,1) primary key, ... from dbo.products p for xml path(''),root('basicExample'),elements xsinil,type ... that I needed FOR XML PATH instead of EXPLICIT (yes, I was on ...
Show full article (2.58Kb) · Show article thread