Cmdlets for Vault CRM

Build 25.0.9434

Remove-VeevaVault Cmdlet

Parameters   Output Objects  

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

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 25.0.9434