I'm trying to use the pg_dump
command to generate a file from the whole database which includes some tables from Postgresql:
pg_dump -h <my postgres host> -U <my user name> -Fc <my database name> > pg.dump
I want to convert this pg.dump
file to pg.sqlite
, but I don't know how to do it.