I have a Postgres dump file and I need to turn it into a MySQL dump so I can create a matching MySQL database. I am new to Postgres I have it installed on my Ubuntu server and I was going to see whether I could import and export SQL of some sort. I don't know how to do that.
Here is the command I tried:
pg_dump -Fc --no-acl --no-owner -h localhost -U dbuser testdb > b526.dump
This doesn't error but I don't think anything happened:
testdb=# \dt;
No relations found.
testdb=# \d
No relations found.
testdb=# \t
Showing only tuples.
testdb=# \d
Also, I would appreciate an easier way to turn this .dump into a MySQL dump.