Python Forum
how to process 12 million record
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how to process 12 million record
#1
I need to read 12 millions records from a SQL table to store in another database after pivoting it. It works, but its taking lot time, any idea to improve the performance would be a great help.

Here is the table details:

The table structure of 12 million records table goes like this
mysourcetable (f_name varchar(100), l_name varchar(100), grade varchar(10), year varchar(10), age int, dob datetime())
Ex:
john abc, 2nd, 2020, 7,00-00-0000
rj bca, 5th, 2020, 10,00-00-0000

Here is the structure to target table - where the all the 12 million records will be saved
mytargettable(column_name varchar(100), column_value varchar(100), field_type varchar(100))

Ex:
f_name, john
l_name, abc
grade, 2nd
year, 2010
age, 7,
dob,00-00-000

f_name, rj
l_name, bca
grade, 5th
year, 2010
age, 10
dob,00-00-000


Here is the sample python code

						for row in df.itertuples(index=True):
                            # Function to create an insert statement for each column in a row
                            #def create_insert_statements(row):
                            try:
                                counts += 1
                                # Iterate over each column in the row
                                for column, value in row._asdict().items():
                                    # Create the insert statement
                                    col_type = lookup_key(tbl_col_type, column)

                                    statement = f"""INSERT INTO [mytargettable] ([Column_Name], [Column_Value], [Dictionary_Id]) 
                                        VALUES ('{column}', '{value}',{col_type}) \r\n """
                                    
                                    cursor.execute(statement)
                                    cursor.commit()
                        
                            except Exception as e:
                                print(f"Error inserting data ': {e}")
Looking forward to get some help to improve to performance.
Larz60+ write Jul-31-2024, 12:57 AM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Tags added for you this time. Please use BBCode tags on future posts.
Piyush likes this post
Reply


Messages In This Thread
how to process 12 million record - by pymach - Jul-30-2024, 09:56 PM
RE: how to process 12 million record - by Calab - Jul-31-2024, 06:27 PM
RE: how to process 12 million record - by Larz60+ - Aug-01-2024, 07:15 AM
RE: how to process 12 million record - by DeaD_EyE - Aug-01-2024, 07:28 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Last record in file doesn't write to newline gonksoup 3 1,498 Jan-22-2024, 12:56 PM
Last Post: deanhystad
  How do I stream and record at the same time with arducam? traderjoe 0 1,016 Oct-23-2023, 12:01 AM
Last Post: traderjoe
  Only getting last record saved...Why Milfredo 10 6,657 Sep-10-2020, 03:00 AM
Last Post: Milfredo
  how can we record a video file from our program output (moving object) Zhaleh 0 2,320 Aug-03-2020, 02:47 PM
Last Post: Zhaleh
  Get the record number of a dBASE dbf file DarkCoder2020 0 2,343 Jun-16-2020, 05:11 PM
Last Post: DarkCoder2020
  Compare 5 variables in a record with an excel sheet!! SEED 1 2,325 Apr-20-2020, 11:10 PM
Last Post: michael1789
  How to insert record into MySQL using Phython abhay_kala 1 2,778 Dec-06-2019, 04:34 PM
Last Post: abhay_kala
  How to sharing object between multiple process from main process using Pipe Subrata 1 4,424 Sep-03-2019, 09:49 PM
Last Post: woooee
  fastest way to record values between quotes paul18fr 5 4,222 Apr-15-2019, 01:51 PM
Last Post: snippsat
  I'm dividing large numbers of about 25 million digits I need to retain decimal format Pleiades 2 3,994 Apr-26-2018, 07:50 AM
Last Post: Pleiades

Forum Jump:

User Panel Messages

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