PyTd
PyTd copied to clipboard
A Python Module to make it easy to script powerful interactions with Teradata Database in a DevOps friendly way.
I am using teradata version 15.10.0.21 through the Anaconda distribution and am unable to connect with the following commands: `import teradata` `udaExec = teradata.UdaExec (appName="TD", version="1.0", logConsole=False)` `session = udaExec.connect...
Is this error familiar to anyone? `[HY001] [Teradata][ODBC Teradata Driver] Memory allocation error` It occurs sometimes when I try to bulk insert using the python TD module, but I haven't...
We are using PyTd with jupyter notebooks. Interrupting the kernel generated `KeyboardInterrupt` exception. But PyTd is ignoring the `KeyboardInterrupt` exception and not canceling the sql submitted and waiting for the...
Evn: Python 3.6, windows 10, Connection: ``` connect = udaExec.connect( method="odbc", system='***', username= username, password= password, driver="Teradata Database ODBC Driver 16.10", dataTypeConverter=datatypes.DefaultDataTypeConverter( useFloat=False) #tried setting to True - same results...
To reproduce, first set up a connection and table like this: ``` conn = udaExec.connect(..., ReturnGeneratedKeys="C") curs = conn.cursor() curs.execute('''CREATE TABLE testautokeyreturn (tablekey BIGINT GENERATED ALWAYS AS IDENTITY (START WITH...
I've been plagued by hard-to-predict `Unicode Conversion Errors` while trying to insert non-Unicode data into existing TD tables. The data being inserted is 2 integer columns and 20 floats, stored...
As long as `escape '!'` or `escape '\\'` is following LIKE clause in ODBC mode, PyTd fails into the following error: ``` SELECT DatabaseName, PermSpace, DBKind FROM DBC.DatabasesV WHERE DatabaseName...
The logic for choosing the default driver to use when one is not specified does not work when TPT is installed. This is because it registers additional drivers with the...
I am in a process of elevating a project to 16.20. There is an existing code that implements metadata queries via ODBC SQLColumn API. It used to work fine in...
Hi, With 16.20 SIMBA ODBC driver, Teradata officially supports unixODBC driver manager. I am able use Teradata SEN ODBC driver with unixODBC DM using `isql` and `iusql` utilities. I can...