Install the plugin
Teradata is a downloadable driver. Open Settings > Plugins, find Teradata, and install it. The driver downloads and loads without restarting the app.Connection settings
Databases and objects
In Teradata a database and a user are both namespaces that hold tables, views, and macros. TablePro lists them from the data dictionary (DBC.DatabasesV) as top-level databases, and their tables and columns come from DBC.TablesV and DBC.ColumnsV.
Identifiers are quoted with double quotes. Teradata has no LIMIT, so TablePro pages results with TOP on the first page and QUALIFY ROW_NUMBER() for later pages.
TLS
Teradata carries encrypted sessions over HTTPS on port443, separate from the plain gateway port 1025. TablePro connects with TLS and tunnels the session over the gateway’s WebSocket endpoint. Set the SSL Mode to turn it on:
Preferredtries TLS and falls back to a plain connection on1025if the HTTPS port is unreachable.Requireduses TLS but does not check the server certificate.Verify CAchecks the certificate chain, andVerify Identityalso checks the hostname. Point CA Certificate at your CA file to trust a private authority.
Required so a failed handshake surfaces instead of falling back.
Transaction mode
ANSI and TERA differ in case sensitivity and commit behavior. ANSI compares strings case-sensitively and keeps a transaction open until you commit; TERA compares case-insensitively and commits each request unless you wrap it in BEGIN TRANSACTION. DEFAULT uses whatever the database is configured for.
Troubleshooting
- Cannot reach the server. Confirm the host and that port
1025is open from your network. - Logon fails. Check the username, password, and that the account is not locked. LDAP, Kerberos, and JWT logon are not yet supported; use
TD2orTDNEGO. Picking an unsupported mechanism reports “unsupported logon mechanism” before connecting.
