Update-OracleEloqua Cmdlet
Updates Oracle Eloqua data.
Syntax
Update-OracleEloqua [parameters]
Remarks
The Update-OracleEloqua cmdlet allows you to use a syntax similar to SQL UPDATE statements to update Oracle Eloqua data.
$conn = Connect-OracleEloqua -User 'user' -Password 'password' -Company 'MyCompany' Update-OracleEloqua -Connection $conn -Table "Contact" -Columns @("Name") -Values @("Jon Doe") -Id "1"The Where parameter can also be used to specify the primary key of the table:
Update-OracleEloqua -Connection $conn -Table "Contact" -Columns @("Name") -Values @("Jon Doe") -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.'" | Update-OracleEloqua -Columns @("Country") -Values @("U.S.A. 2")