データ型 XML の列で、SQL Server テーブルに保存された Excel データ (つまり、Excel シートの複数のセル) の行があります。
XML 列に保存されたこのデータの特定のセルの値を、同じテーブルの別の列に格納されている新しい値で更新する必要があります。それ、どうやったら出来るの?
SQL Server 2005 の T-SQL で XMLColumnName.Query() メソッドを使用してセル プロパティを選択することさえできません。
ここにサンプル行を含むサンプル テーブルを貼り付けます。実験して、これを理解できたかどうかをお知らせください。ありがとうございました!!
-シヴァ
-- reference article for XML data manipulation
-- http://msdn.microsoft.com/en-us/library/ms345117(v=sql.90).aspx#sql2k5xml_topic3
-- create test table for xml data
CREATE TABLE testdocs (pk INT PRIMARY KEY, xCol XML not null)
-- insert 1 row of test data
insert into testdocs values(1,'<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<Worksheet ss:Name="TestSheet">
<Table ss:ExpandedColumnCount="509" ss:ExpandedRowCount="1" ss:StyleID="s191">
<Column ss:StyleID="s1" ss:AutoFitWidth="0" ss:Width="55" />
<Column ss:StyleID="s2" ss:AutoFitWidth="0" ss:Width="55" />
<Row>
<Cell>
<Data ss:Type="String">TestValue1</Data>
</Cell>
<Cell>
<Data ss:Type="String">TestValue2</Data>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>')
-- select records, and inspect the XML in SSMS
select * from testdocs
-- want to replace / update "TestValue2" in the XML for the 1s rows, to "New TestValue2"
-- location in XML hierarchy is as follows
/Workbook/Worksheet/Table/Row/Cell/Data
-- how do i do that ?