0
votes
1answer
25 views

Producing XML from Multiple Tables in SQL Server

Is it possible to generate the following XML using "FOR XML" in SQL Server <Person> <HomeID>1</HomeID> <DayID>1</DayID> <String>I get up at ...
1
vote
2answers
21 views

insert Delta between to xmls to table- SQL

I have 2 xmls Like (the tags are Dynamic): Declare @OldXml xml = ...
1
vote
2answers
14 views

Find all “null” values using xquery

I was tasked to find all values where <nodeA> is empty. That could mean that it is NULL, or that it doesn't exist. I have crafted the below query SELECT * FROM table WHERE AttributeList.value ...
0
votes
0answers
16 views

SQL XML Bulk Load Error when I try to create and populate database table

I´m working with XML data which have lot of XSD files. To load this data to database (I need to create tables from XSDs) I cannot use, xsd2DB (because the XSDs contain union and list), neither SSID ...
0
votes
1answer
32 views

Need help on a T-SQL XPath query

I'm hoping somebody can help me solve a syntax problem with a TSQL xpath query. Given the following xml: <emails> <email></email> <email></email> ...
0
votes
3answers
39 views

Display database result as XML

I have a simple SQL query, i want to query the database and return the result as XML. I used the key word for XML, but it says that XML is not a valid syntax. HELP using (SqlConnection c= new ...
0
votes
1answer
15 views

sp_xml_preparedocument does not recognize validated xml variable

Can anyone help I am trying to Shred an XML document into a data table in SQL Server. I am using a XML SCHEMA COLLECTION to validate the xml document. Below is a copy of my XML Schema ...
0
votes
0answers
38 views

Retrieve XML content from SQL Server database

I have generated a XML, which I want to use it to query the SQL Server database. <?xml version=\"1.0\" encoding=\"utf-16\"?> <bank> <account> ...
0
votes
1answer
39 views

bulk insert and parse a complex XML file into several tables

I have the following sql stored procedure to bulk insert and parse an xml file and insert its data into several tables in a database. The sql below works, however its inserting duplicate records ...
0
votes
1answer
17 views

Combine data from multiple tables in a single XML Tag

I have two tables, TB1 - RndString and TB2 - Time For example, Values in TB1 are "I get up at ", "I sleep at ", "I have lunch at " Values in TB2 are "7:00", "22:00", "13:00" I want to combine the ...
1
vote
1answer
28 views

Using stored procedures to simplify XML generation

I am trying to write an SP to return invoice details in XML for transferring to a third party. I have a working SP but it's a bit messy (simplified below): SELECT ( SELECT GETDATE() AS ...
0
votes
1answer
21 views

Converting from Oracle to MSSQL

Using XML, the code piece in question looks like: <field name="case" when max(b.expected_date) %lt% current_date then %q%0000-00-00%q% else to_char(max(b.expected_date), %q%YYYY-MM-DD%q%) end" ...
1
vote
1answer
47 views

DTD is not allowed in XML fragments - xml into sql

I am trying to save XML into database using stored procedure and in asp.net I am using... cmd.Parameters.Add("@input", SqlDbType.Xml).Value = new System.Data.SqlTypes.SqlXml(new ...
-1
votes
2answers
55 views

Iterate through XML variable in SQL Server

I have a XML variable in a stored procedure (SQL Server 2008), it's sample value is <parent_node> <category>Low</category> <category>Medium</category> ...
1
vote
3answers
41 views

Way to generically iterate through entities in XML?

Is there a generic way, in T-SQL, to iterate through an xml variable and get the xml for each entity in turn? DECLARE @xml xml = '<Entities> <Entity key="4" attrib1="abc" attrib2="def" ...
0
votes
3answers
29 views

How to stream XML from SQL Server 2005 to HTTP Response stream for download

I have a stored procedure in SQL Server 2005 that generates a 170 megabyte XML file (using SELECT FOR XML) How, in ASP.NET, would I stream this XML for download as a file in a web browser?
2
votes
1answer
35 views

Puzzling xml select syntax in Sql Server

In the below sql code, what does T(C) mean? What is T and what is C? declare @employeeData xml --this would be your XML input parameter set @employeeData = '<employeeData> <employee ...
2
votes
2answers
100 views

Where clause when using XML in SQL [duplicate]

I am currently using a XML data type in a SQL table My datatable looks like this Id | Name | Surname | Title | Location | Artist | ------------------------------------------------------- 1 | xxx ...
0
votes
1answer
32 views

Push XML data directly to SQL Server

ELEMENTS` will return SQL data directly as XML , is there is a proper way of pushing a XML file directly to SQL server ?
1
vote
1answer
34 views

SQL Server 2008 XQuery one to many issue

I have two tables in SQL Server with a one to many relationship. I need to perform a XQuery across these tables, to obtain an xml output The tables (and sample records) are those: Entity_A ID Name ...
1
vote
0answers
56 views

conditional update/insert in sql

I have a stored procedure for updating/inserting data being read from XML. Now as you see in the xml data under itemResults, there are multiple (2 in this case) items. I want that only the item for ...
1
vote
3answers
29 views

Querying XML data types which have xmlns node attributes

I have the following SQL query: DECLARE @XMLDOC XML SET @XMLDOC = '<Feed><Product><Name>Foo</Name></Product></Feed>' SELECT x.u.value('Name[1]', 'varchar(100)') ...
1
vote
3answers
50 views

insert an attribute to nth Element in a xml in Sql Server

please consider this XML: <Employees> <Person> <ID>1000</ID> <Name>Nima</Name> <LName>Agha</LName> </Person> ...
1
vote
2answers
38 views

SQL - Read an XML node from a table field

I am using SQL Server 2008. I have a field called RequestParameters in one of my SQL table called Requests with XML data. An example would be: <RequestParameters ...
2
votes
3answers
47 views

Modifying date field in XML document stored in SQL Server table

I have an xml document stored in a SQL Server table xml column that has inaccurate times in the date fields I 'd like to update all the date and time (SaleDateTime, LineStartTime, LineEndTime) values ...
-1
votes
1answer
37 views

Getting SQL view output as xml ( is it even possible ? )

I have a massive view and using a SQL query I want to produce output as XML. So if I query SQL it gives me back XML. I have no idea how to do it so please point me in right direction. SADLY it's ...
1
vote
2answers
54 views

SQL and XML - Calculation of longest continuous pause

I have a very specific problem which i was hoping somebody could shed some light on. It is not exactly an error but more so help on the query i need to run to return the desired result set. I have a ...
1
vote
1answer
35 views

How do I add xsi:nil=“true” to only one field while generating an xml file from SQL Server 2008 using for 'xml path'

Here is the code I am using: DECLARE @returnXML XML SELECT @ReturnXML = (SELECT [StudentID/SSN] = ssn, [StudentName/LastName] = lastname, [StudentName/FirstName] = firstname, ...
3
votes
1answer
39 views

Select all XML attributes in SQL

I have an XML value list contained in a SQL Table Field that looks like so: <valuelist xmlns="" name="VL_IncCompCondVL"> <li value="BL" item="BLOCKED" /> <li value="NK" item="NO ...
1
vote
1answer
30 views

Store XSDs in a table versus XML SCHEMA COLLECTION

I'm doing some maintenance work on an application that stores its XML data in SQL Server. Currently, the application uses another table to store associated XSDs. My question: since all XSD ...
0
votes
0answers
24 views

FOR XML EXPLICIT - Generating &#163;

I have an issue when using FOR XML EXPLICIT. Basically we (our company) use a document printing company that we send XML to. I am in the process of developing a new document and one of the sentences ...
0
votes
2answers
234 views

reading from XML file to Sql server table C#

I want to read data from XML file to sql server table, my code works properly if all nod is exist but if one of the node isn't exist it show me errors here is my xml file <?xml version="1.0" ...
0
votes
2answers
62 views

TSQL: Extract XML Nested Tags Into Columns

Using SQLServer2008R2 I currently have XML tags with data inside the XML tags (not between them), such as: <zooid="1"><animals key="all" zebras="22" dogs="0" birds="4" /><animals ...
1
vote
2answers
72 views

Xpath returning NULL for valid Xpath expression

I'm using a fairly straightforward Xpath query (below) to query a SQL Server 2008 database column whose values all follow the form of the example (below that). My query returns NULL for all rows, ...
2
votes
4answers
80 views

strange behavior of SQL Server when sum nodes's values in XML

I ask a question about sum node's values: sum some xml nodes values in sql server 2008 Please consider this code: Declare @xml xml set @xml='<Parent ID="p"> <Child ...
0
votes
4answers
50 views

sum some xml nodes values in sql server 2008

Please consider this XML: <Parent ID="p"> <Child ID="1">10</Child > <Child ID="2">20</Child > <Child ID="3">0</Child > </Parent > I ...
0
votes
1answer
19 views

Transform server status data to running 24 hour tabular format

I need to display running server status, in an asp.net grid view using c#, for the last 24 hours in 5 minute increments. The data is in SQL Server records of the form: HostName, RecordDate, ...
1
vote
1answer
83 views

Saving data to MSSQL Db using XML

I have created a ASP.NET C# MVC application. I need to insert some records in the database, and the following code works fine. What i want to do now is to save records in the DB by using XML. I found ...
1
vote
1answer
82 views

XML from webservice to SQL Server using SSIS

I have a web service task that saves the XML output to a variable. The question now is what would the variable type be? Also how can I then transfer the XML variable to the SQL Server database? I ...
0
votes
1answer
56 views

SQL Server XQuery check data values before insert

This is all on SQL Server 2012. I have TSQL to create a XQuery statement to shred and insert some XML The code looks something like this: declare @xmlasXML xml set @xmlasXML = ' <data ...
0
votes
1answer
40 views

SQL Server XML manipulation - Only non-document nodes can be inserted

accorgind to the topic SQL Server XML modify with no result while before insert the new node I get the error XQuery [modify()]: Only non-document nodes can be inserted. Found "xs:string ?". the ...
0
votes
2answers
37 views

SQL Server XML modify with no result

I have an xml document like <xsd:form-definition ...> <xsd:page ..></xsd:page> <xsd:page ..></xsd:page> ... </xsd:form-definition> and I want to insert a ...
1
vote
1answer
51 views

T-SQL Query XML Data

I have the following formatted XML: <ROOT> <table1> <row ID="1".... \> </table1> <table2> <row ID="1".... \> </table2> ... </ROOT> I would ...
0
votes
1answer
64 views

Changing hard coded path to variable in MS SQL

Im using the following code and all works correctly DECLARE @Directory varchar(100) SELECT @Directory = 'c:\XML\' DECLARE @FileExist int DECLARE @FileName varchar(500),@DeleteCommand ...
0
votes
1answer
58 views

Referential integrity issue with Untyped XML in TSQL

I am going to start off by displaying my table structures: Numbers Table: Id AccountId MobileNr FirstName LastName AttributeKeyValues Labels --- ---------- ----------- ---------- ...
1
vote
1answer
71 views

SQL Server: XPATH Query failing

I am working in SQL Server Management Studio on a stored procedure. There is a column containing XML that I am trying to access with XPATH but I get this error: Parsing XML with internal subset ...
0
votes
1answer
98 views

XML into SQL Help please

Hi Im trying to get some info from an XML file into my MSSQL db, can anyone spot the errors. Here is my sql code (now fixed with loop that goes through an entire directory and error trap) Use mydb ...
0
votes
1answer
40 views

How to get table from XML on the SQL Server

I have the following xml set @Informe = '<Table> <Row> <Cell>Data1.1</Cell> <Cell>Data1.2</Cell> <Cell>Data1.3</Cell> <Cell>Data1.4</Cell> ...
0
votes
1answer
123 views

SQL XML Parsing Stored Procedure running manually, not running via SQL Server Agent

The stored Procedure is running manually but will not run using SQL Server agent. I get the following error Executed as user: XXX. XML parsing: line 9, character 9, unexpected end of input ...
0
votes
1answer
38 views

SQL Server : count XML Children within Parent

Hi I have been looking for a way of updating xml produced in sql to add the count of child nodes and add the count to the parent node using SQL I've tried various workings around SET @xml.modify ...

1 2 3 4 5 20