Translators
You are looking at an older version of the documentation. The latest version is found here.
The Data Virtuality Server Connector Architecture (DVSCA) provides the Data Virtuality Server with a robust mechanism for integrating with external systems. The DVSCA defines a common client interface between the Data Virtuality Server and an external system that includes metadata as to what SQL constructs are supported for pushdown and the ability to import metadata from the external system. A Translator is the heart of the DVSCA and acts as the bridge logic between the Data Virtuality Server and an external system. It has its own translation properties, which are described in the following Connector descriptions. Connectors can have a number of configurable properties. These are broken down into translator properties, which determine aspects of how data is retrieved, and import settings, which determine what metadata is read for import. The translator properties for a translator typically have reasonable defaults. For specific translator types, e.g. the Derby translator, base translator properties are already tuned to match the source. In most cases, the user will not need to adjust their values.
Translator Properties Shared by All Connectors
(Properties listed in alphabetical order)
To view the full table, click the expand button in its top right corner
Name | Description | Default |
---|---|---|
allowsSpecialCharsInColumnName |
These characters in column names must be supported by the data source | FALSE |
columnNameType | The value determines the way table column names are presented in the Data Virtuality Server:
String values for |
NONE
|
| Set to | FALSE |
| If in criteria are supported, defines what the maximum number of in entries are per predicate. -1 indicates no limit |
|
| If in criteria are supported, defines what the maximum number of predicates that can be used for a dependent join. Values less than |
|
maxStringSize | Maximum size of string data type columns. This value is used when the user creates a column of string data type without specifying a size for it | PostgreSQL: SQL Server: MySQL, MemSQL: Oracle: Redshift: Snowflake: Exasol: Vertica: Teradata: BigQuery: IBM DB2: Hive: SAP Hana: Data Virtuality view: Other data sources: |
oversizeStringProcessing | Defines the system behaviour for table creation when data inserted into a
| MySQL, MemSQL, Exasol, Hive, IBM DB2, SAP Hana: Other data sources: |
| Set to |
|
| If joins are supported, defines what criteria may be used as the join criteria. Can be one of the following: |
|
SupportsAdvancedOlapOperations | Returns TRUE if Advanced OLAP operations are supported including the aggregate function filter clause | |
SupportsAggregatesAvg | Support indicates connector can accept the AVG aggregate function | |
SupportsAggregatesCount | Support indicates connector can accept the COUNT aggregate function | |
SupportsAggregatesCountStar | Support indicates connector can accept the COUNT(*) aggregate function | |
SupportsAggregatesDistinct | Support indicates connector can accept DISTINCT within aggregate functions | |
SupportsAggregatesEnhancedNumeric | Support indicates connector can accept STDDEV_POP , STDDEV_VAR , VAR_POP , VAR_SAMP | |
SupportsAggregatesLeadLagFirstLastValue | Indicates whether the source supports lead(), lag() , firstValue() , and lastValue() aggregation symbols | |
SupportsAggregatesMax | Support indicates connector can accept the MAX aggregate function | |
SupportsAggregatesMin | Support indicates connector can accept the MIN aggregate function | |
SupportsAggregatesSum | Support indicates connector can accept the SUM aggregate function | |
| Support indicates connector can accept groups with aliases | |
SupportsArrayAgg | Returns TRUE if array_agg is supported | |
SupportsCommonTableExpressions | Returns TRUE if the WITH clause is supported | |
SupportsCompareCriteriaEquals | Support indicates connector accepts criteria of form (element = constant) | |
SupportsCompareCriteriaOrdered | Support indicates connector accepts criteria of form (element <= | >= constant). The query engine will may pushdown queries containing < or > if NOT is also supported | |
SupportsCorrelatedSubqueries | Support indicates connector can accept correlated subqueries wherever subqueries are accepted | |
SupportsElementaryOlapOperations | Returns TRUE if Elementary OLAP operations are supported including window functions and inline window specifications that include simple expressions in partitioning and ordering | |
SupportsExcept | Support indicates that the connector supports EXCEPT of two queries | |
SupportsExistsCriteria | Support indicates connector accepts the EXISTS criteria | |
SupportsFunctionsInGroupBy | Support indicates that the connector supports non-column expressions in GROUP BY , such as: SELECT dayofmonth(theDate), COUNT(*) FROM table GROUP BY dayofmonth(theDate) | |
SupportsGroupBy | Whether the source supports an explicit GROUP BY clause | |
SupportsHaving | Whether the source supports the HAVING clause | |
SupportsInCriteria | Support indicates connector accepts criteria of form (element IN set) | |
SupportsInCriteriaSubquery | Support indicates connector accepts IN criteria with a subquery on the right side | |
SupportsInlineViews | Support indicates connector can accept inline views (subqueries in the FROM clause) | |
| Set to |
|
SupportsIntersect | Support indicates that the connector supports INTERSECT of two queries | |
SupportsIsNullCriteria | Support indicates connector accepts criteria of form (element IS NULL ) | |
SupportsLikeCriteria | Support indicates connector accepts criteria of form (element LIKE constant) | |
SupportsLikeCriteriaEscapeCharacter | Support indicates connector accepts criteria of form (element LIKE constant ESCAPE char) | |
SupportsLikeRegex | Returns TRUE if the LIKE_REGEX predicate is supported | |
SupportsMultipleOpenExecutions | Set to TRUE to indicate that multiple executions may be open against a single connection at a time |
|
SupportsNotCriteria | Support indicates connector accepts logical criteria NOT | |
SupportsQuantifiedCompareCriteriaAll | Support indicates connector accepts the quantified comparison criteria that use ALL | |
SupportsQuantifiedCompareCriteriaSome | Support indicates connector accepts the quantified comparison criteria that use SOME | |
SupportsOnlySingleTableGroupBy | Whether the source supports grouping only over a single table | |
SupportsOrCriteria | Support indicates connector accepts logical criteria connected by OR | |
| Set to |
|
SupportsOrderByNullOrdering | Returns whether the database supports explicit join ordering | |
SupportsOrderByUnrelated | Support indicates connector accepts ORDER BY clause with columns not from SELECT | |
| Set to |
|
| When set to |
|
SupportsRowLimit | Gets whether the connector can limit the number of rows returned by a query | |
SupportsRowOffset | Gets whether the connector supports a SQL clause (similar to LIMIT with an offset) that can return result sets that start in the middle of the resulting rows returned by a query | |
SupportsScalarSubqueries | Support indicates connector can accept scalar subqueries in the SELECT , WHERE , and HAVING clauses | |
SupportsSearchedCaseExpressions | Support indicates connector can accept queries with searched CASE WHEN <criteria> ... END | |
| Support indicates connector can accept expressions other than element symbols in the SELECT clause. Specific support for the expression type are still checked | |
SupportsSelfJoins | Support indicates connector can accept self-joins where a group is joined to itself with aliases. The connector must also support | |
SupportsSetQueryOrderBy | Support indicates that the connector supports an ORDER BY on a SetQuery | |
SupportsSimilarTo | Returns TRUE if the SIMILAR TO predicate is supported | |
SupportsUnions | Support indicates that the connector supports UNION of two queries | |
tableNameType | The value determines the way table name is presented in the Data Virtuality Server:
String values for | NONE |
ThreadBound
| Set to TRUE to indicate the translator's Executions should be processed by only a single thread | FALSE |
useDoubleSlashToEscapeRegex | Used to change the default escaping behaviour in LIKE_REGEX expressions |
|
allowsSpecialCharsInColumnName
available since v3.13
Space allowed in column names since v3.14