Remove-OracleEloqua Cmdlet
Deletes Oracle Eloqua data.
Syntax
Remove-OracleEloqua [parameters]
Remarks
The Remove-OracleEloqua cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Oracle Eloqua data.
$conn = Connect-OracleEloqua -User 'user' -Password 'password' -Company 'MyCompany' Remove-OracleEloqua -Connection $conn -Table "Contact" -Id "1"The Where parameter can also be used to specify the primary key:
Remove-OracleEloqua -Connection $conn -Table "exTablePowershell;" -Where "Id = 1"The primary key can also be passed to the cmdlet along the pipeline:
Select-OracleEloqua -Connection $conn -Table Contact -Where "Country = 'U.S.A.'" | Remove-OracleEloqua