Cmdlets for Oracle Eloqua

Build 24.0.9060

Update-OracleEloqua Cmdlet

Parameters   Output Objects  

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")

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