migrate form my sql to postgres then keep updating - mysql

right now am using pgloader to migrate a MySQL database to a PostgreSQL DB.
The migration working fine but the issue that I want to update my Postgres DB after the migration from MySQL, is that possible?
right now every time I migrate it delete the previous data then create it again with the latest data from MySQL.

Related

migrating data from mysql to postgres pgloader IRONCLAD::SIMPLE-OCTET-VECTOR

I am migrating data from MySQL to Postgres using pgloader.
My script works fine on my local machine. But as I am running pgloader to prod database it's giving me following error
The value of SEQUENCE is "?;JAExN[^F#yZ:O_o3Mj...", which is not of type IRONCLAD::SIMPLE-OCTET-VECTOR.
I have tried the following way .
https://github.com/dimitri/pgloader/issues/782.
database is hosted on azure
I am not sure what went wrong.
Any help is appreciated

laravel - mysql - how to migrate tables

my problem ... i can't migrate from mysql to laravel
i am working on MySQL database and i have a lot of tables i tried to migrate those table to laravel but it doesn't work
my steps was like that:
1-create the table in mysql database
2-opened laravel and write in the .env file the database credentials then i write .. php artisan migrate in the cmd
it says nothing to migrate
all i want is to have the same tables in mysql database to be in my laravel project
There is migrations table in your database which contains the names of the migrations that were already run and exist. So what you need is just to create the database with no tables in it, create your migrations and run php artisan migrate this will run all of your migration files and will create the tables for you.

Laravel 5.1 and MySQL and backup table

Is there any way to take backup of a row and all the records from another table that have relation with it, and restore these in Laravel 5.1?
Or I have to write the code by my-self?

migrating rails app from postgresql to mysql

I'm attempting to migrate my rails application from postgresql to mySQL so as to view the data in one place within xampp in PHPmyadmin. The reason is the fact that I need to access the data that is located within the MySQL database from my rails app which is in postgresql.
As of now most questions I found aim to create a new application within mySQL with rails but I need to migrate all of the data my current rails application compatible and use MySQL.
Is there a proper process and simple procedure that allows for this migration from postgresql to mySQL?
Note: MySQL is within xampp
this post
got the answer to your question.
It's very easy, just paste your postgres dump in this website and you'll get the same dump converted in mysql, ready for you to be imported.
Then you will just need to properly configure your database.yml and you're set.

How to restore database tables from MySQL Database

hi everybody i'm new to Ruby on Rails...
I created a Rails Application for that i created a database called 'cart' in MySQL database by using rake command. but unfortunately my database got crashed. right now there are no databases including older ones also deleted.
please help me, how can i get my all databases from MySQL s/w. is there any command to restore the crashed data.
Thanks
If you don't have backup it could be hard. You can remove database, create another and rake db:migrate but it will only create a structure for you and will not restore data.
You can try to reproduce your records from rails logs but it will be a lot of work
What do you mean by database crashed?