Cmdlets for XML

Build 24.0.9062

Remove-XML Cmdlet

Parameters   Output Objects  

XML データを削除します。

Syntax

Remove-XML [parameters]

Remarks

Remove-XML コマンドレットを使って、SQL DELETE ステートメントに似た構文を用いてXML データを削除できます。

$conn = Connect-XML -URI 'C:\people.xml' -DataModel 'Relational'
Remove-XML -Connection $conn -Table "NorthwindOData" -Id "1"
Where パラメータは主キーを指定するためにも使われます。
Remove-XML -Connection $conn -Table "exTablePowershell;" -Where "Id = 1"
主キーは、パイプライン上でコマンドレットに渡すこともできます。
Select-XML -Connection $conn -Table NorthwindOData -Where "Email = '[email protected]'" | Remove-XML

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 24.0.9062