In this tutorial, I will show you how to fix the PostgreSQL error:
FATAL: database does not exist
This issue commonly happens in PostgreSQL, pgAdmin, and Odoo when the application tries to connect to a missing database.
In this video you will learn:
How to check existing PostgreSQL databases
How to create a missing database
How to delete a PostgreSQL database
How to fix connection failed errors
Odoo PostgreSQL database troubleshooting
Commands used in this tutorial:
psql -U postgres
\l
CREATE DATABASE freight_test_db;
DROP DATABASE freight_test_db;
This tutorial is beginner friendly and works for Windows, Linux, and macOS.
#PostgreSQL #Odoo #pgAdmin #DatabaseError #Postgres #Programming #Python #ERP #TechTutorial #Coding