Tagged Questions
0
votes
1answer
24 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 ...
2
votes
1answer
39 views
SQL Server : manipulating complex xml into tables
I have some xml which I need to insert into two database tables. The second table (TblSales) must contain the PK of the first (TblDetails.Id).
I can insert the data into these tables using XQuery, ...
0
votes
1answer
20 views
jQuery - changing XML & passing it (changed) to a function
I have the following jQuery code that is in a function.
var msgXML = ...
1
vote
1answer
54 views
how to strip XML data
<ps>
<p pdid="47" pv="x@xx.net" />
<p pdid="49" pv="07827100000" />
<p pdid="57" pv="dfdfdf Armstrong" />
<p pdid="29" pv="[(null)]" />
<p pdid="1" ...
3
votes
1answer
42 views
T-SQL to XML - Can multiple values per attribute be listed on their own line?
I'm currently using T-SQL to convert some data into XML. I need to list the values of an attribute on their own line. For some reason the T-SQL to XML keeps concatenating the values together on the ...
1
vote
1answer
12 views
extracting data from XML using SQL
I've an XML like following
Declare @BathData XML
SET @BathData='<Batch>
<Customers>
<Customer>
<CustomerId>1</CustomerId>
<Product>
...
1
vote
1answer
24 views
How to make child as parent in xml tree
I am working on message broker. But the query I am doing is very simple and can be answered by any DB guy also .
here is the query code to read xml and getting xml output
SET ...
1
vote
1answer
45 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
46 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>
...
0
votes
1answer
45 views
saving data in windows store apps
I'm writing a movie gallery application for windows 8, and I'm using C# and XAML.
I have written my business logic and everything is working fine, but my problem is I have no idea how to store the ...
2
votes
2answers
87 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 ...
1
vote
0answers
53 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 ...
0
votes
0answers
13 views
get reserver method text from securityelement.escape
i am doing audit log and there are xml variable in my db
**DB**
xmlValue xml
**CodeBehind**
dim sXml as string
sXml = ds.GetXml().ToString
due to some reason, i got invalid char inside sXml
...
0
votes
1answer
30 views
exclamation mark in sql xml
I have a problem trying add a element with an illegal character. I have the following SQL
SELECT
'en-GB' AS '@xml:lang',
'20120217164611.1712._3FO0ZXYQ3@GBRAPPCHL1' AS '@payloadID',
...
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)') ...
0
votes
0answers
35 views
Android SQLite How to format data?
Currently I have a TextView that gets populated with a data String from my SQLite database, but its not very pretty to look at.
Currently the data looks like:
1 data1 data2 data3 data4 < all on ...
1
vote
3answers
48 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>
...
0
votes
1answer
47 views
jQuery dropdown box always shows first item
In a jQuery function I am working with, I use a .get to return some XML data & then use it to populate a drop down box. The code that I use to build the <OPTION> tags in the select follows:
...
0
votes
1answer
27 views
XML import to Oracle
I would like to import an XML file to Oracle SQL with SQL developer. The XML has more than one node, my XML structure:
<SPECTRAEXCHANGE>
<APPLICATION>
...
0
votes
0answers
27 views
Consider this conundrum: three dimensional databases
Say for example i have a database that contains users and each user contributes jokes.
The jokes are only accessed by the user so the information is stored with the user section of the database. Now, ...
1
vote
2answers
34 views
For XML Path from different tables.
I have the following script that can generate an XML for one table. I need to modify this slightly so that it pulls it from 3 different tables in one XML query. I am not sure how to modify this so ...
0
votes
1answer
44 views
Not able to insert data in new column
I have working code which inserts data correctly now. I am trying to add new column of movie_Id in that. I am trying to fetch the movie id value from XML and looping it with movie title but for now ...
-1
votes
1answer
53 views
T SQL how to add extra elements in xml
Hi im trying to generate xml from my t sql query. But im having problems with adding extra elements in my xml. Or is it even possible to do that. my sql query is like this.
SELECT
...
0
votes
1answer
16 views
Joining three views into one and then using FOR XML RAW
I am trying to join 3 views like this and then output XML,
view4 equal (SELECT *
FROM view1
Join
SELECT *
FROM view2
Join
SELECT *
FROM view3)
FOR XML RAW;
...
-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 ...
0
votes
1answer
102 views
XML import to Oracle with SQL Developer
I would like to import an XML file to Oracle SQL with SQL developer. The XML has more than one node, my XML structure:
<"<"SPECTRAEXCHANGE>">"
<"<"APPLICATION>">"
...
0
votes
1answer
43 views
PL/SQL unique column identification from two table
I am using Oracle 11G.
I have a PL/SQL procedure which is reading XML using xquery from XMLTYPE column in a table. The XML contains data of DEPARTMENT and its SECTIONS. DEPARTMENT has one to many ...
0
votes
0answers
34 views
What should be set as id in DB, if there is no proper field in id-less data
I am building database from XML. Subtree of XML on specific level should be equivalent of single record.
The problem is, that in this specific subtree there is no id, or any other type of value, ...
0
votes
1answer
27 views
xslt transform multiple data sources
I am trying to transform 2 data sources coming from sql stored procedures.
Is there any way to use the xsl document() function to combine the two sources into something that one xsl:template can ...
0
votes
2answers
43 views
How to concatenate all YES records into a single list?
How do I combine all "Yes" records into a single list? I have the following script that I would like to combine into a single varchar list, ideally using XML or a native SQL function. These values ...
2
votes
3answers
45 views
Looping a directory to process multiple XML files
I have a client application that locates a file based on a static path and processes it accordingly:
string filepath = @"C:\Users\NChamber\Desktop\package\1002423A_attachments.xml";
byte[] byteArray ...
1
vote
1answer
52 views
XML parsing using LINQ: what is the best way to get value of nearby node
I am trying to parse the following XML:
<bs:School>
<bs:Class number="1">
<bs:Student>
<bs:Gender>Male</bs:Gender>
...
-1
votes
0answers
24 views
how to create a dynamic xml file using dreamweaver
I have a property portal and I need to create outgoing xml data feeds which update daily. My data sits in a mysql database.
Please can someone give me clear step by step instructions (in ...
3
votes
1answer
36 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 ...
0
votes
1answer
33 views
Display XML column data from pivot as individual columns
I have a table that is structured,
Columns: month_yyyy, account_id, account_name, revenue
I'd like to pivot the data in table so it's displayed as
Columns: account_id, account_name, ...
0
votes
3answers
51 views
Should I use a relational database for storing my XML documents
I work with and write technical documentation which is written in XML using various schemas. I have developed a fairly simple Windows Forms application which we now use in office as a workflow system. ...
4
votes
3answers
106 views
Select all path from an Xml that have a content like a graph
I have an XML column with an element like this:
<Root>
<Word Type="pre1" Value="A" />
<Word Type="pre1" Value="D" />
<Word Type="base" Value="B" />
<Word ...
0
votes
3answers
36 views
Convert multiples xml nodes data into varchar
I want to convert an xml string like this :
'<orga_label>ORG1</orga_label><orga_label>ORG2</orga_label><orga_label>ORG3</orga_label>'
into a varchar like this ...
2
votes
4answers
79 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
47 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
0answers
43 views
XML Parsing With SQL stored variables
stI have a problem where i am trying to parse some XML using php and simplexml_load_file.
The problem i am having is more with PHP as I am storing the parsing operators in a SQL database so they be ...
0
votes
1answer
38 views
JSP/XML : XML parse error - invalid XML
I'm using Apache Tomcat 7.0.39, Eclipse Java EE Juno, Java JRE 7 & Java JDK 1.7.0_13.
I have a problem with the XML, a parse error :
Error: Invalid XML:
<?xml version="1.0" ...
1
vote
1answer
74 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
26 views
dump XML into MySQL
I've got a database dump in XML coming from some Windows application. I believe its SQL Server 2008 data dumped into XML via C#, although I do not have access to the source. I only have the dump.
...
1
vote
0answers
37 views
SQL XML simple table-column-row entry change edit modify
How to correct XML entries in a SQL database table-column-row?
The problem: I have a SQL database called MyClients. The database has three tables:
dbo.Accounts
dbo.Organizations
dbo.Managers
...
3
votes
2answers
42 views
How can I find out how big a large TEXT field is in Postgres?
I'm storing some large XML documents in TEXT fields in Postgres and I'm trying to find out how efficiently TOAST is compressing them. I've got a 2.2mb XML doc that is able to be zipped down to 51kb ...
0
votes
1answer
37 views
How to convert an SQL Datetime value to an XML datetime Value in Groovy Script
I'm new to Groovy script and I was wondering how I could convert a value I got from a SQL database to and XML value?
For example:
I have a variable start_date which contains '2013-04-13 14:34:08'
...
0
votes
2answers
70 views
Guidance on data source(s) for my project
I'm a novice programmer. I am full of theoretical knowledge, but I'm behind with the practice. OK. I am trying to make a program for adding categories and descriptions to files. The language is C#, it ...
0
votes
1answer
113 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
36 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
...



