From 85f07798bf8eda683263cf35e1e714d80f0a27c9 Mon Sep 17 00:00:00 2001 From: Ville Brofeldt <33317356+villebro@users.noreply.github.com> Date: Fri, 10 Feb 2023 06:53:30 +0200 Subject: [PATCH] docs(teradata): fix connection string (#23051) --- docs/docs/databases/installing-database-drivers.mdx | 2 +- docs/docs/databases/teradata.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/databases/installing-database-drivers.mdx b/docs/docs/databases/installing-database-drivers.mdx index a31a31178d33b..66710e8ab8e81 100644 --- a/docs/docs/databases/installing-database-drivers.mdx +++ b/docs/docs/databases/installing-database-drivers.mdx @@ -55,7 +55,7 @@ A list of some of the recommended packages. | [Snowflake](/docs/databases/snowflake) | `pip install snowflake-sqlalchemy` | `snowflake://{user}:{password}@{account}.{region}/{database}?role={role}&warehouse={warehouse}` | | SQLite | No additional library needed | `sqlite://` | | [SQL Server](/docs/databases/sql-server) | `pip install pymssql` | `mssql://` | -| [Teradata](/docs/databases/teradata) | `pip install teradatasqlalchemy ` | `teradata://{user}:{password}@{host}` | +| [Teradata](/docs/databases/teradata) | `pip install teradatasqlalchemy` | `teradatasql://{user}:{password}@{host}` | | [TimescaleDB](/docs/databases/timescaledb) | `pip install psycopg2` | `postgresql://:@:/` | | [Vertica](/docs/databases/vertica) | `pip install sqlalchemy-vertica-python` | `vertica+vertica_python://:@/` | | [YugabyteDB](/docs/databases/yugabytedb) | `pip install psycopg2` | `postgresql://:@/` | diff --git a/docs/docs/databases/teradata.mdx b/docs/docs/databases/teradata.mdx index 2f765a2146cfe..8b7a91c9146ed 100644 --- a/docs/docs/databases/teradata.mdx +++ b/docs/docs/databases/teradata.mdx @@ -13,7 +13,7 @@ The recommended connector library is The connection string for Teradata looks like this: ``` -teradata://{user}:{password}@{host} +teradatasql://{user}:{password}@{host} ``` ## ODBC Driver