Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pgadmin error when restoring database from tar file

I'm trying load a tar file using pgAdmin, but it's failing and all I get is exit code 3221225781. This code seems to indicate a missing dll What is exit code 3221225781 on windows? but I'm not sure why this would be or what dll to look for.

error message

like image 659
Lukas Halim Avatar asked Sep 05 '25 03:09

Lukas Halim


2 Answers

Updating the path in pgAdmin fixed this.

Steps: Select Databases > File > Preferences > Paths > Binary paths. Then edit to C:\Program Files\PostgreSQL\15\bin.

You'll need to use a different path if you're on a different version of PostgreSQL.

Updating the path

like image 192
Lukas Halim Avatar answered Sep 07 '25 19:09

Lukas Halim


You need to change the path in pgadmin. In my case, I have PostgreSQL 16.

Go to File/Preferences/Paths/Binary_paths

Choose your PostgreSQL version and change to the binary path as:

C:\Program Files\PostgreSQL\16\bin.

like image 27
JUAN CARLOS HA Avatar answered Sep 07 '25 20:09

JUAN CARLOS HA