Search
 
SCRIPT & CODE EXAMPLE
 

SQL

psql command not found

export PATH=/Library/PostgreSQL/9.5/bin:$PATH
Comment

psql command not found windows

Assuming you installed PostgreSQL on Windows with the PostgreSQL "One-click" installer packaged by EnterpriseDB, psql is not added to the PATH automatically. That's partly because adding it to the path could otherwise cause confusion when people have multiple versions of PostgreSQL installed.

You need to specify the full explicit path to psql, eg:

"%PROGRAMFILES%Postgresql9.2inpsql.exe"
or add psql to the user PATH environment variable, see eg this guide.
Comment

PREVIOUS NEXT
Code Example
Sql :: postgres show table schema 
Sql :: how to join multiple table in mysql 
Sql :: execution order in sql 
Sql :: tsql generate rows 
Sql :: sql contains vs like 
Sql :: prisma transaction 
Sql :: mysql get table column names and data types 
Sql :: how to check current root password in mysql 
Sql :: initialize sql date 
Sql :: delete row mysql 
Sql :: Failed to process SQL command - ORA-28014: cannot drop administrative user or role 
Sql :: oracle synonym procedure 
Sql :: insert or update cassandra 
Sql :: use of undefined constant mysql_assoc - assumed 
Sql :: FIND ABOVE AVERAGE SALARY EARNER IN SQL 
Sql :: mysql create view 
Sql :: denormalization in sql example 
Sql :: three inner joins sql 
Sql :: open cursors in oracle 
Sql :: how to select only a certain date sql 
Sql :: mysql copy data from one table to another 
Sql :: snowflake insert select 
Sql :: to_sql pandas 
Sql :: mysql delete if not in another table 
Sql :: soql last year 
Sql :: select row with latest date mysql 
Sql :: one to many sql 
Sql :: year format in date mysql 
Sql :: limit rows after order by oracle 
Sql :: SQL SELECT AS Alias 
ADD CONTENT
Topic
Content
Source link
Name
8+1 =