Remove-VeevaVault Cmdlet
Deletes Vault CRM data.
Syntax
Remove-VeevaVault [parameters]
Remarks
The Remove-VeevaVault cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Vault CRM data.
$conn = Connect-VeevaVault -Url "myURL" -User "myUser" -Password "myPassword" Remove-VeevaVault -Connection $conn -Table "Users" -Id "8"The Where parameter can also be used to specify the primary key:
Remove-VeevaVault -Connection $conn -Table "exTablePowershell;" -Where "Id = 8"The primary key can also be passed to the cmdlet along the pipeline:
Select-VeevaVault -Connection $conn -Table Users -Where "Name = 'Test'" | Remove-VeevaVault