Need to pull large set of data from one database and insert into another

Webtect

I am trying to pull a large set of data from one database, rename the columns, then dump it into another. I started getting timeouts and upped the max_execution_time and max_input_time. This helped but I still was not getting all the data. I then added the following:

set_time_limit(0);
ignore_user_abort(1);

This doubled the amount of data I was able to pull but im still short so its still timing out. Im wondering if there is a better way to do this.

I am using Laravel 5.6,php 7.2 ,mysql 5.6

I am pulling from one database and inserting into another.

$availabilities = DB::connection('mysql2')->select('select vi.status as availability_status_code,vi.date as availability_date,v.masterid as im_id from table1 vi
inner join table2 v on v.id = vi.vid where vi.date >= CURDATE() and v.masterid > 0 order by v.masterid,vi.date'); //
foreach($availabilities as $availability) {
    Availabilities::create((array)$availability);
}

This works but as noted times out.

Is there a more efficient way to handle this or should I just increase different time limits until it works? Keep in mind this will run once or twice a day via a job.

Marcin Nabiałek

You could use:

DB::table('yourtable')->insert([['name' => '1st record'], ['name => '2nd record']]);

Of course you should chunk this into parts, so you shouldn't insert this way for example 1 million of record, but you should break 1 million records into array of for example 200 records. It will be much faster than inserting each record separately as you do now.

You can use collection chunk method to chunk your $availabilities into smaller parts

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Insert data from one database to another in mysql

From Dev

Move a large set of selected data from one workbook to another

From Dev

Pull data from one table to another

From Dev

How do you pull data from a database to another one using a linked server?

From Dev

MySQL Insert Into from one Database in another

From Dev

MySQL Insert Into from one Database in another

From Dev

Select from one database , insert to another - MySQL

From Dev

How to store data after doing a large pull from database? PHP

From Dev

Transfer data from one table to another on insert

From Dev

Insert Data From One Table To Another - MySQL

From Dev

How can I extract data from one database, manipulate it, and insert it into another in Rails?

From Dev

Copy column from one database to another and insert data depends on condition in SQL Server

From Dev

How to insert and retrive data from one table to another table in mysql database

From Dev

how to Insert data into a database by fetching data from another database?

From Dev

Insert from one Database table to another Database table in ANDROID

From Dev

Copy table data from one database to another

From Dev

Access Copying data from one database to another

From Dev

How to import data from one database to another

From Dev

Transfer data from one database to another with Datamapper

From Dev

Copy table data from one database to another

From Dev

Bulk insert in SQL Server database from one table to another

From Dev

Insert specific rows from one table in database into another with different columns

From Dev

Match one column of data frame to another, pull in other columns, combine into large dataset

From Dev

I have a large list of GUIDs and other data that I need to pull a subset from, what is the quickest way to do this?

From Dev

More Efficient Way to Copy Large Data from One Table to Another

From Dev

Transfer data from one database to another database with different schema

From Dev

How to transfer data from one table of a database to a table in another database

From Dev

View saved in one database but gathering data from another database

From Dev

How to transfer data from one table of a database to a table in another database

Related Related

  1. 1

    Insert data from one database to another in mysql

  2. 2

    Move a large set of selected data from one workbook to another

  3. 3

    Pull data from one table to another

  4. 4

    How do you pull data from a database to another one using a linked server?

  5. 5

    MySQL Insert Into from one Database in another

  6. 6

    MySQL Insert Into from one Database in another

  7. 7

    Select from one database , insert to another - MySQL

  8. 8

    How to store data after doing a large pull from database? PHP

  9. 9

    Transfer data from one table to another on insert

  10. 10

    Insert Data From One Table To Another - MySQL

  11. 11

    How can I extract data from one database, manipulate it, and insert it into another in Rails?

  12. 12

    Copy column from one database to another and insert data depends on condition in SQL Server

  13. 13

    How to insert and retrive data from one table to another table in mysql database

  14. 14

    how to Insert data into a database by fetching data from another database?

  15. 15

    Insert from one Database table to another Database table in ANDROID

  16. 16

    Copy table data from one database to another

  17. 17

    Access Copying data from one database to another

  18. 18

    How to import data from one database to another

  19. 19

    Transfer data from one database to another with Datamapper

  20. 20

    Copy table data from one database to another

  21. 21

    Bulk insert in SQL Server database from one table to another

  22. 22

    Insert specific rows from one table in database into another with different columns

  23. 23

    Match one column of data frame to another, pull in other columns, combine into large dataset

  24. 24

    I have a large list of GUIDs and other data that I need to pull a subset from, what is the quickest way to do this?

  25. 25

    More Efficient Way to Copy Large Data from One Table to Another

  26. 26

    Transfer data from one database to another database with different schema

  27. 27

    How to transfer data from one table of a database to a table in another database

  28. 28

    View saved in one database but gathering data from another database

  29. 29

    How to transfer data from one table of a database to a table in another database

HotTag

Archive