|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
SQL Server XMLmicrosoft.public.sqlserver.xml
So just why is this 60x faster?
JRStern -
19 Oct 2007 7:33 PM - 3 messages
Um, that previous message of mine, doing a simple explicit axis shred of an xml, I made a tiny adjustment to the code, and now it runs 60x faster, and I have no idea why! I used the [1] syntax instead of a separate call to value, changed the first ...
Just what can I do to/with XML in a column?
JRStern -
19 Oct 2007 6:33 PM - 4 messages
OK, I'm mystified. Can I run the same kind of xpath queries and cross applies against XML that is stored in a table, or not? Please see example below. My situation is that I'm shredding some big-ish XML messages, and it was ...
Is outer apply like outer join?
JRStern -
19 Oct 2007 1:26 AM - 2 messages
Having an issue with outer apply that I do not understand. I'm parsing a fairly messy hierarchy in XML messages, and am running a lot of selects that cross-apply top levels to lower levels to shred them into ...
Index xml in variable
JRStern -
18 Oct 2007 5:12 PM - 6 messages
Hi, more newbie questions. When I first read over the SQLServer XML documentation, I saw you could index XML. I thought this would be great if you had a big single XML value that you were working on. I have a 2.4mb XML ...
How to merge two XML variables
Nikola Milic -
18 Oct 2007 12:35 PM - 4 messages
Hi, I want to add a few tags to XML variable as additional info. How to achive that? NOTE: I don't want to convert XML variable @list1 to varchar because it can be longer than varchar(8000). --Pseudo code ...
Un-encoding XML special characters, please help
Farmer -
17 Oct 2007 8:45 PM - 1 message
Thnaks for your help! I am building dynamic SQL command to send some commands to SQL Service Broker. I tried this way, but when 25,000 rows hit it, it never completed. DECLARE @SQL nvarchar(max) SELECT @SQL = COALESCE(@SQL, N'') ...
Un-encoding XML special characters, please help
Farmer -
17 Oct 2007 8:41 PM - 5 messages
Thnaks for your help! I am building dynamic SQL command to send some commands to SQL Service Broker. I tried this way, but when 25,000 rows hit it, it never completed. DECLARE @SQL nvarchar(max) SELECT @SQL = COALESCE(@SQL, N'') ...
CDATA
Alpicus -
17 Oct 2007 7:45 PM - 3 messages
Hi, When I execute the following script on SQL Server 2005 SP2 : IF EXISTS (select * from sys.objects where name = 'TEXTEST2' and type_desc = 'USER_TABLE') BEGIN DROP TABLE TEST.TEXTEST2 END CREATE TABLE TEST.TEXTEST2 ( ARR XML ); INSERT INTO TEST.TEXTEST2 (arr) VALUES ('<?xml version=''1.0'' ...
Similar but different formats
JRStern -
16 Oct 2007 5:07 PM - 6 messages
I'm processing EDI messages formatted as XML, a third party service does the translation, and the XML is not quite as convoluted as the original EDI, but neither is it normalized into fixed tables. So, we have about four major ...
XML Query problem
Evan Camilleri -
16 Oct 2007 1:43 PM - 4 messages
This is one record from xmlX field: <testclass xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Age>32</Age> <FirstName>Alicia</FirstName> ...
extracting a number of unknown elements
Mal .mullerjannie@hotmail.com> -
16 Oct 2007 9:03 AM - 4 messages
Hi I've read through SQL 2005 xml methods. I can't seem to find a function to extract xml to relational format where my element is unknown. xquery is based on the fact that the element is known, like "employee" etc. ...
dynamic xpath in XQUERY exist() function
Schwartzenberg -
15 Oct 2007 11:14 AM - 8 messages
I’m using SQL Server 2005, and this concerns making the xpath part of the XQUERY exist() function dynamic. I'm using the stored procedure below to make a Selection. In the Where clause i use an XQUERY exist() function on my, xml_data column, which is of ...
|
|||||||||||||||||||||||