vdsBlob

The vdsBlob table stores the binary data required for performing file-based operations in environments with multiple OneSpan Authentication Server instances, such as DIGIPASS export file (DPX) import or user import via CSV file. Each BLOB is split into chunks, and each chunk constitutes a separate database record.

Columns

Table: vdsBlob table columns
Column name Data type Primary key Nullable Description
vdsKey string(255) Yes No Unique key used to identify a BLOB.
vdsChunk uint Yes No The number of the BLOB chunk, starting at 0.
vdsName string(255) No Yes Optional name for the BLOB.
vdsType integer No No Type of binary data included in the BLOB.
vdsData binary No No Binary data of the BLOB chunk.
vdsModifyTime timestamp No No The date and time the data record was last modified.
vdsCreateTime timestamp No No The date and time the data record was created.
vdsVersion integer No Yes The current data schema version of the data record.

Keys

Primary key: (vdsKey, vdsChunk)

Foreign keys: None

Indexes

Table: vdsBlob table indexes
Index name Included fields
Level 0 (default)
vdsblobidx

vdsKey

vdsChunk