PyTd icon indicating copy to clipboard operation
PyTd copied to clipboard

A Python Module to make it easy to script powerful interactions with Teradata Database in a DevOps friendly way.

Results 54 PyTd issues
Sort by recently updated
recently updated
newest added

Since Teradata Developer Exchange is no more, the documentation for the Python module should live here on Github.

documentation

Hello Team, We have been using teradata python connection internally in our company for an application. Some of the application users are complaining the data queried are getting truncated. We...

If the log directory contains subdirectories, the cleanup logic raised an error IsADirectoryError. I propose a change to skip directories. I also updated the link to documentation in README file.

Hi, the documentation link mentioned in README is outdated. The proper link is https://downloads.teradata.com/tools/reference/teradata-python-module Could you please fix it? Now there's no way to access the docs if anyone is...

Hi, Currently i have some working code for teradatasql wrappers for Apache Airflow but the license is restrictive for open sourcing it. Looking to PyTd which has MIT license lacks...

When using the rest back end, if I insert (do an executemany) in batch=False and a problem arises, I get a very informative error. When I do the same in...

I've been using teradata module with my teradata version 14.10.07.30 and its working fine. Do i need to change anything whilst making connection if im upgrading my teradata version to...

I am trying to connect using the following code snippet: ``` udaExec = teradata.UdaExec (appName="CVR", version="1.0", logConsole=True) with udaExec.connect(method="odbc", externalDSN='teradata_prod', username=usn, password=pwd) as con: cur = con.cursor() cur.execute(query) data =...

Deprecation warnings are raised due to invalid escape sequences. This can be fixed by using raw strings or escaping the literals. ``` find . -iname '*.py' | grep -v example...