sqlalchemy-teradata icon indicating copy to clipboard operation
sqlalchemy-teradata copied to clipboard

A SQLAlchemy dialect for Teradata

Results 33 sqlalchemy-teradata issues
Sort by recently updated
recently updated
newest added
trafficstars

After upgrading to `sqlalchemy.__version__>=1.4.0`, I've been receiving the title error. Prior to version 1.4.0, the following would work as expected. ```{python} import os import urllib from sqlalchemy import create_engine def...

Using: ``` teradatasqlalchemy==17.0.0.4 SQLAlchemy==2.0.0 ``` A simple connection now fails: ``` with my_teradata_engine.connect() as conn: print('test') ``` Error is: ``` ArgumentError: Additional keyword arguments are not accepted by this function/method....

The `SingletonThreadPool` should not be used as a default connection pool, as its recommended for **testing purposes only** by the [SQLALchemy 1.4 Docs](https://docs.sqlalchemy.org/en/14/core/pooling.html#sqlalchemy.pool.SingletonThreadPool): >the [SingletonThreadPool](https://docs.sqlalchemy.org/en/14/core/pooling.html#sqlalchemy.pool.SingletonThreadPool) will call .close() on arbitrary...

I am having a table A (without partition) which gets overwritten every month. I want to use partition to save this data. What is the best way to achieve this?...

Hello Everyone, I tried to load Teradata tables using pandas -> sqlalchemy -> sqlalchemy-teradata. So far this worked and it still works for several tables. However if the table is...

What is the difference between this `sqlalchemy-teradata` and `teradatasqlalchemy`? Are both supported by Teradata? Which one should I use? Is `teradatasqlalchemy` open source? Where can I open a `teradatasqlalchemy` issue?

My deepest gratitude for this adaptation of SQLAlchemy. I am using it extensively to build a configuration web application using flask, flask-admin, sqlalchemy, sqlalchemy-teradata. It was quite a learning experience...

Using python 3.7, with sqlalchemy and teradatasqlalchemy installed as well, the following code does *not* produce an LDAP encrypted request. The connection is rejected with the following error: sqlalchemy.exc.DatabaseError: (teradata.api.DatabaseError)...

**TLDR; I would like to know how to control which version of the Teradata ODBC driver is used by SQLAlchemy.** We recently updated our TD system to 16.20 and certain...