mister.magoo - Thursday, January 12, 2017 3:03 PM
Hi Mister magoo-
1. Only with one
2. Yes only where coupon amount = 10.00
3. fixed swap, 10 for 12.
4. Data is held in a database, if it was held in a file elsewhere then yes I would just find the file and edit it, eazy peezy.
5. I need to update the original.
acid_burn013 - Thursday, January 12, 2017 4:13 PM
There's probably a fancy way of doing this, but it's also easy enough to cheat, as follows:
IF OBJECT_ID('tempdb..#Test', 'U') IS NOT NULL
DROP TABLE #Test;
CREATE TABLE #Test (XMLCol XML);
INSERT #Test
(
XMLCol
)
VALUES
(
'<PrepaidTicket xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<PrepaidTicketItems>
<PrepaidTicketItem>
<CouponAmount>10.0000</CouponAmount>
<CouponCode>BOGOHO GOOD GOLLY</CouponCode>
<CouponSymbol>$</CouponSymbol>
<PrepaidTicketItemID>1</PrepaidTicketItemID>
<SystemItemTypeCode>COUPON</SystemItemTypeCode>
</PrepaidTicketItem>
<PrepaidTicketItem>
<CouponAmount>20.0000</CouponAmount>
<CouponCode>BOGOHO GOOD GOLLY</CouponCode>
<CouponSymbol>$</CouponSymbol>
<PrepaidTicketItemID>1</PrepaidTicketItemID>
<SystemItemTypeCode>COUPON</SystemItemTypeCode>
</PrepaidTicketItem>
<PrepaidTicketItem>
<CouponAmount>10.0000</CouponAmount>
<CouponCode>BOGOHO GOOD GOLLY</CouponCode>
<CouponSymbol>$</CouponSymbol>
<PrepaidTicketItemID>1</PrepaidTicketItemID>
<SystemItemTypeCode>COUPON</SystemItemTypeCode>
</PrepaidTicketItem>
</PrepaidTicketItems>
</PrepaidTicket>'
);
SELECT *
FROM #Test t;
UPDATE
#Test
SET
XMLCol = CAST(REPLACE(
CAST(XMLCol AS VARCHAR(8000))
, '<CouponAmount>10.0000</CouponAmount>'
, '<CouponAmount>12.0000</CouponAmount>'
) AS XML);
SELECT *
FROM #Test t;
This update operation is elementary using the XML modify operation, here is a quick example
USE TEEST;
GO
SET NOCOUNT ON;
-- Sample XML
DECLARE @TXML XML = '<PrepaidTicket xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<PrepaidTicketItems>
<PrepaidTicketItem>
<CouponAmount>10.0000</CouponAmount>
<CouponCode>BOGOHO GOOD GOLLY</CouponCode>
<CouponSymbol>$</CouponSymbol>
<PrepaidTicketItemID>1</PrepaidTicketItemID>
<SystemItemTypeCode>COUPON</SystemItemTypeCode>
</PrepaidTicketItem>
</PrepaidTicketItems>
</PrepaidTicket>'
;
-- The new value for CouponAmount
DECLARE @CouponAmount DECIMAL(18,4) = 12.0;
-- XML modify statement
SET @TXML.modify('replace value of (/PrepaidTicket/PrepaidTicketItems/PrepaidTicketItem/CouponAmount/text())[1] with sql:variable("@CouponAmount")');
-- Check the value, this query can also be used to filter the update set from a table!
SELECT @TXML.value('(/PrepaidTicket/PrepaidTicketItems/PrepaidTicketItem/CouponAmount/text())[1]','DECIMAL(18,4)') AS CouponAmount;
Eirikur Eiriksson - Friday, January 13, 2017 4:08 AM
Hi Eirikur, does your solution update multiple occurrences of CouponAmount = 10? It's not totally clear tom me from the requirements whether this matters or not.
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply