Remove-SalesforceDataCloud Cmdlet
Deletes Salesforce Data Cloud data.
Syntax
Remove-SalesforceDataCloud [parameters]
Remarks
The Remove-SalesforceDataCloud cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Salesforce Data Cloud data.
$conn = Connect-SalesforceDataCloud Remove-SalesforceDataCloud -Connection $conn -Table "Account" -Id "1"The Where parameter can also be used to specify the primary key:
Remove-SalesforceDataCloud -Connection $conn -Table "exTablePowershell;" -Where "Id = 1"The primary key can also be passed to the cmdlet along the pipeline:
Select-SalesforceDataCloud -Connection $conn -Table Account -Where "Industry = 'Floppy Disks'" | Remove-SalesforceDataCloud