What does it mean I'm trying to restore my postgresql db and here is what I'm getting but I do not see it restore tables/data/
C:\Program Files\PostgreSQL\9.4\bin\pg_restore.exe --host 123-97.compute-1.amazonaws.com --port 5432 --username "username" --dbname "mydb" --no-password --section pre-data --section data --section post-data --schema public --verbose "C:\db\employee.backup"
pg_restore: connecting to database for restore pg_restore: implied data-only restore
Process returned exit code 0.
I'm using Windows 8.1
--sectionoptions, which is the same as not specifying any at all, however, the warning you're getting (implied data-only restore) points to some kind of problem there, so you'll be better off with removing all--section <type>options from your command. Also, you're requesting restoring only the public schema, is this what you actually want to do?. Note that if the public schema is empty in your database, then the restore will do nothing. - Ezequiel Tolnay