-2
Use the Postgresql 9.5.25 and along with it comes the pgAdmin 3 installed. However, I don’t want to use the graphical interface of the database. So I go in the same folder as the pgAdmin3.exe is found and I open the file psql.exe. However, nothing happens when I open this last file. So how do I run the command lines of Postgresql 9.5.25 without having to use the graphical interface? Because the suggestions I found on Google for using Postgresql in the command prompt involved psql.exe; but in mine, nothing happens when I open this file. Uninstalling and installing a newer version in place is not a possible solution as the company where I work uses this database in that version and I am not allowed to change.
If you have done the standard installation of postgres. I could search for the application:
SQL Shell (psql)
. This is the command line utility ofpostgres
..– Danizavtz
@Danizavtz Yes, it is this same file that I am trying to open, as I described in my question. Only the problem is I click to open and nothing happens.
– LP0956
My version is a little younger, but it follows the location from where my psql runs:
"C:\Program Files\PostgreSQL\13\scripts\runpsql.bat"
. Usually I do a search for this program in the start menu. This way I click start and type:psql
. Works directly.– Danizavtz