MonetDB
MonetDB is an open-source columnar database management system optimized for high-performance analytics and data warehouse workloads. It is designed for complex queries over large datasets, leveraging modern hardware through innovations such as vectorized query execution.
Prerequisites
- The MonetDB server must be accessible from the iceDQ server.
- Valid credentials to access the database.
- MonetDB JDBC version 3.3 or higher.
Authentication Mechanism
The following authentication mechanism is supported.
- Username & Password
Connection Properties
Use the following properties to create a valid connection. Properties marked with an asterisk (*) are required.
Name | Description | Example Values |
---|---|---|
Connection Name * | Name that uniquely identifies the connection. | Sales_prod_conn |
Driver * | Driver used to establish the connection. By default, one driver is available. | MonetDB Native JDBC |
Custom JDBC URL | Standardized string used to define the connection details. Use this format supported by the driver: jdbc:monetdb://[host]:[port]/[database] | jdbc:monetdb://193.167.42.80:50000/prod_db |
Host * | IP address or hostname of the database server. | monetdb.acme.com or 193.167.42.80 |
Port * | Port is the address on which the server listens. Default value is 50000 for MonetDB. | 50000 |
Database * | Name of the target database. | prod_db |
Type * | The connection type – either System Connection or User Connection. Refer Connections for more details. | System or User |
Username * | Database login username with necessary privileges. | john_doe |
Password * | Password associated with the specified username. | Admin@123 |
Custom Properties
Custom properties are optional connection parameters in the MonetDB JDBC driver, allowing customization of settings like timeouts, compression, and secure connections. A list of supported properties is available here. The availability and behavior of custom connection properties may vary depending on the version of the MonetDB JDBC driver in use.
Supported Data Types
The following datatypes are supported.
- BOOLEAN
- SMALLINT
- INTEGER
- BIGINT
- REAL
- DOUBLE
- DECIMAL
- CHAR
- VARCHAR
- CLOB
- BLOB
- DATE
- TIME
- TIMESTAMP
- INTERVAL