Remove-OracleServiceCloud Cmdlet
Deletes Oracle Service Cloud data.
Syntax
Remove-OracleServiceCloud [parameters]
Remarks
The Remove-OracleServiceCloud cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Oracle Service Cloud data.
$conn = Connect-OracleServiceCloud Remove-OracleServiceCloud -Connection $conn -Table "Accounts" -Id "6"The Where parameter can also be used to specify the primary key:
Remove-OracleServiceCloud -Connection $conn -Table "exTablePowershell;" -Where "Id = 6"The primary key can also be passed to the cmdlet along the pipeline:
Select-OracleServiceCloud -Connection $conn -Table Accounts -Where "DisplayOrder = '12'" | Remove-OracleServiceCloud