Supported target database configuration
In order to create an environment in beVault, and therefore a database to store your data vault, you will need to configure at least one server. You can add as many servers you need. This can be useful to have your testing environment on another server than your production one.
We recommend having all your environments on the same type of database to avoid issues with your custom SQL code (information mart, hard rules and data quality controls)
Supported target databases
Here are the currently supported databases where you can deploy your Data Vault.

PostgreSQL

Snowflake
SQL Server
And also, in alpha: IbmDb2
Configuration
The configuration may differ a little depending on the type of database you target.
Name: the host where the DBMS resides, for example localhost
allowCustomEnvironmentDatabaseName : If the users have the right to choose a database name when creating an environment. If set to false, the database name will have the following format: project_environment
DatabaseType : The type of Database. Expected values :
PostgreSQL
for versions 12 → 14
PostgreSQL15
for versions 15 → …
SQLServer
Snowflake
Username : the name of the database user. This user will need to have the read and write access to the database, the right to create tables, schema, and databases (if the user has no right to create database you will have to create them manually).
Password : the password of the database user
ReadOnlyUsername : Username of a user with stg_reader, ref_reader, dv_reader Role and im_reader
ReadOnlyPassword : password of the read-only user
ConnectionStringSuffix : (1.6.8+) Additional parameters that will be appended to the connection string
EngineParameters: A list of parameters to pass to the Datavault Engine. This is specific to the database flavor. See below for details per db
Engine parameters
Postgresql
Parameter name | Expected value | Effect |
---|---|---|
FORCE_LOWERCASE | True/False | All identifiers to be generated and used for the database are changed to lowercase. This option is used to mimic the behavior of previous versions of beVault. Note: If you migrate a beVault from version 2.X to version 3.0.0, you need to activate this option. |
Snowflake
Parameter name | Expected value | Effect |
---|---|---|
DATAWAREHOUSE | Snowflake cloud database has the concept of “Warehouse” which is the entity doing the work when querying the database. This parameter specifies the warehouse to use. If not set, Snowflake selects the role’s default warehouse. |