Lev Blaivas
Member
I have a Database from which I am copying 2 tables to a MySQL Database, the problem I am having that it takes 45 minutes to save 75,000 rows, and the database can grow to more than 200,000 entries which will take an unacceptable amount of time to write to the DB. Additionally some of the existing rows will change daily so there is a need to update the DB several times a day, which will take most of the time with current performance. As far as I understand there is some problem with the way I write data to the table (currently I am flushing the existing DB as rewriting all 75,000 entries again). Another sollution I see is to identify the rows that have been edited but I can not get that information from the original DB and I need to compare the retrived table to the one already stored, but I can not think of a way to do that efficiently. Does any one has any suggestions of how I can overcome this problem?