Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
112 views

TSQL 2005, XML DML - Update Two Values at once?

Is there any way to combine these two replace values with 1 update statement? UPDATE dbo.MyTable SET MyXmlColumn.modify('replace value of (/node/@att1)[1] with "1"') WHERE id = 1 UPDATE dbo.MyTable ...
2
votes
1answer
74 views

Fixing SQL Update using XQuery modify to work on SQL 2005

I'm trying to move a bunch of fields from a table into an xml blob contained within the same table. After this is successful I will be removing the column from the table. A really simple version ...
2
votes
3answers
775 views

How to delete an attribute from an XML variable in sql server 2008?

I have a table called XML (in SQL Server 2008) and it has a field called XmlDocument of type XML. I am trying to to delete an attribute from an XML variable. Here is how my xml looks like ...
2
votes
2answers
323 views

XPath in T-SQL update schema

In my table I have a column with XML data. For example lets say that schema is as below: <person> <id></id> <name></name> </person> Problem is that some of ...
2
votes
1answer
606 views

Using Xquery to replace a node value that is xsi:nil = “true”

I am trying to use XQuery in SQL Server 2005 to update xml saved in a column. Here is a sample of the data I need to update. <Length>3</Length> <Width>5</Width> ...
2
votes
2answers
417 views

SQL Server 2008: Rename an element using XML DML?

Is it possible to use an XML DML statement to rename an element in an untyped XML column? I am in the process of updating an XML Schema Collection on an XML column and need to patch the existing XML ...
2
votes
2answers
2k views

Inserting an attribute in multiple XML Nodes using XML.modify() in SQL 2005

I have an @XML document created from a single select statement. <root> <node> <node1> <targetNode> </targetNode> </node1> <node1> ...
1
vote
1answer
99 views

SQL Server XML-DML how to replace element value with value of relative xpath

I have an xml column with the following data: <Policy> <Name> <Id>adf</Id> <First>Alan</First> <Last>Turing</Last> </Name> ...
1
vote
1answer
127 views

Deleting multiple nodes in SQL Server XML field

If you run this script in SQL Server 2005: create table #xmltemp ( id int, data xml null ) insert into #xmltemp select 1, '' update #xmltemp set data.modify('insert <a id="1" /> into ...
1
vote
1answer
98 views

how to declare namespace when using sql variable to insert multiple xml nodes

i'm trying to insert @newLinks into @links but am not sure how to declare the prefix "xsi" in the following sql: declare @links xml set @links = N'<Links/>'; declare @newLinks xml set ...
1
vote
2answers
127 views

How to update an XML column with value from T-SQL built-in function?

I have a MS SQL 2008 R2 Standard database. I have a column with varchar(250) data and a column with xml. CREATE TABLE [dbo].[art]( [id] [int] IDENTITY(1,1) NOT NULL, [idstr] [varchar](250) NULL, ...
1
vote
1answer
186 views

Editing XML From SQL Query Using XML-DML

I have an XML column in my MSSQL database whose schema looks similar to this: <Form> <Version>1000</Version> <OtherValues /> </Form> And I need to manually ...
1
vote
1answer
448 views

How to change node value using node's current value in SQL with XQuery (SQL Server)

How can I change: <data> <row> <a>A</a> <a>B</a> <a>C</a> </row> </data> to: <data> <row> ...
0
votes
0answers
28 views

Xml DML - delete error - Cannot implicitly atomize or apply 'fn:data()'

I want to delete some nodes from menu xml that is being stored in a typed xml column in database. Snippet from menu xml - <menu xmlns="http://xxx" ..> <menuItem name="Menu1"> ...
0
votes
1answer
23 views

SQL Server - xml type columns - XML DML

I want to delete some nodes from menu xml that is being stored in a typed xml column in database. Snippet from menu xml - <menu xmlns="http://xxx" ..> <menuItem name="Menu1"> ...
0
votes
1answer
245 views

How can I replace an XML substring with the results of a query in SQL Server?

I have an XML column in SQL Server that contains a SQL where clause. I would like to replace specific substrings with the results of a query. In the example below, I want to replace p.[EconPeriodID] = ...
0
votes
1answer
488 views

Changing xml node value in SQL with xquery [SQL Server]

I have example XML in one of the table column: <Root> <A> <C>c</C> <D>d</D> </A> <B>b</B> </Root> How can I replace ...
0
votes
2answers
331 views

XML DML query for attribute

declare @myDoc xml set @myDoc = '<Form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.mydomain.org/MySchema.xsd" ...
0
votes
1answer
166 views

can't insert xml dml expression as a string

Here is the code below that would explain you the problem... I create a table below with an xml column and declare a variable, initialize it and Insert the Value into the xml column, create table ...