I’ve a table with certain medical information in a database table. I crawl & parse them daily and store it in that table of my local database.
Suppose there were 1500 records initially, today 100 more records are added on my local machine.
Now, I’ve a server in which I need to push those records (so the database is different). I copied the database yesterday. So, the server database table has 1500 entries now. How can I sync the new 100 entries to the live application?
Please note that I cannot delete old entries from my local machine else it will be crawled again and again.
You may want to use ‘SELECT … INTO OUTFILE’ and ‘LOAD DATA INFILE INTO TABLE’ commands.
Edit: Elaboration…
Given the table structures:
And some bogus data:
You would use the following commands:
To automate the two, you can use a bash script / batch file calling mysql connecting first to the local server using the first statement, then to the remote server executing the second.