Bulk update SQL Server and Python

2.3k Views Asked by At

I have the following issues, i am selecting 17K records from Azure SQL server database into a list with Python, preforming text manipulation and i want to update the result into the database , i have two fields record_id and Supplier name , i added all the updates into a new list and trying to update the database ,the issue is that the last part(for rec_to_update in sqlupdates) takes a lot of time more than 15 minutes :

sqlupdates is the list of updates i want to preform , what am i doing wrong?

for record in Allrecords :
        Rec=re.sub(r'[^a-z]', ' ', record[1])
        querywords =Rec.split()
        resultwords  = [word for word in querywords if word.lower() not in List_of_words]
        result = ' '.join(resultwords)
        sqlupdates.append("Update labs_work_data_test set Supplier_Name='"+result+"' where record_id="+str(record[0])+";")    
    for rec_to_update in sqlupdates:
        newcursor.execute(rec_to_update)

    newcursor.commit()
1

There are 1 best solutions below

0
On

For now i couldn't find a solution for fast update , so what i did i created a temp table in the database , and did fast insert to it with the key from my table , and it take 1 minutes instead of 45 minutes.

sqlupdates=("insert into data_work_tmp values(?,?,?);")    
newcursor.fast_executemany = True
newcursor.executemany(sqlupdates,parms)
newcursor.commit()