Python Forum
Issue while inserting data into Teradata via python dataframe
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Issue while inserting data into Teradata via python dataframe
#1
Hi All
I am using below code to insert data into terdata table.
I am getting below error:
Output:
ProgrammingError: ('42000', "[42000] [Teradata][ODBC Teradata Driver][Teradata Database] Syntax error, expected something like '(' between the 'type' keyword and '='. (-3707) (SQLPrepare)") During handling of the above exception, another exception occurred:
for each in df:
    df1= each[each.TRAN_STMT_DESC.str.contains("SUPERBOOK")]
    df1['TRAN_STMT_DESC']='SUPERBOOK'
    #total=df1.groupby(['TRAN_STMT_DESC']).sum()
    print(df1.head())
Want to insert df1 data into table..

my code:
df1.to_sql(name='KLMD_SRM.PYTHON_LKP' ,con=conn_klm, if_exists='replace', index=False)

my connection settings:
td_userID = getpass.getpass('Enter User id')
td_password = getpass.getpass('Enter pwd')
conn_klm = pyodbc.connect('DSN=klm-LDAP;UID='+str(td_userID)+';PWD='+str(td_password))
del td_password, td_userID
conn_klm
conn_klm.autocommit = True 
curs = conn_klm.cursor()
HERE MY TABLE NAME :'PYTHON_LKP'
SCHEMA NAME : 'KLMD_SRM'

Please can one help me on this.

Thanks
Reply
#2
My first impression is that this line:

df1= each[each.TRAN_STMT_DESC.str.contains("SUPERBOOK")]
is the problem. The "str" attribute could cause conflation between the attribute name and the string type. Still, it would be helpful to see the full traceback.
Reply
#3
I am abel to print df1...

print(df1.head())
so there is data in df1.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Inserting Python Buttons into KV Files edand19941 3 457 Feb-19-2025, 07:44 PM
Last Post: buran
  Confused by the different ways of extracting data in DataFrame leea2024 1 632 Aug-17-2024, 01:34 PM
Last Post: deanhystad
  Filter data into new dataframe as main dataframe is being populated cubangt 8 2,940 Oct-23-2023, 12:43 AM
Last Post: cubangt
  python script for inserting rows into hbase table lravikumarvsp 7 8,609 Mar-24-2023, 04:44 AM
Last Post: parth_botadara
  pandas dataframe into csv .... exponent issue mg24 10 4,757 Jan-20-2023, 08:15 PM
Last Post: deanhystad
  Issue in writing sql data into csv for decimal value to scientific notation mg24 8 5,535 Dec-06-2022, 11:09 AM
Last Post: mg24
  Basic SQL query using Py: Inserting or querying sqlite3 database not returning data marlonbown 3 2,981 Nov-08-2022, 07:16 PM
Last Post: marlonbown
  Issue in changing data format (2 bytes) into a 16 bit data. GiggsB 11 4,856 Jul-25-2022, 03:19 PM
Last Post: deanhystad
  Seeing al the data in a dataframe or numpy.array Led_Zeppelin 1 1,683 Jul-11-2022, 08:54 PM
Last Post: Larz60+
  Need help formatting dataframe data before saving to CSV cubangt 16 10,701 Jul-01-2022, 12:54 PM
Last Post: cubangt

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020