Facing a consistent issue with PostgreSQL database. For not using database after few minutes either on backend or some database client tool. I think the connection between the cloud hosted database and database client tool goes into ideal state (or s...
MMark commentedSo I have written a view for getting login time and logout time of a student. Now I want to perform the same procedure for n number of students so how should I do it? Please Help. Here's my code from views.py: def timestamp(request): TodayStartda...
MMark commentedHi guys, currently we are deciding the architecture or a application and for backend we are using Django and PostgreSQL as database. And want to add fail-safe strategy. So recently I came across "Pgpool ||". So is it ok to use pgpool in production? I...
MMark commentedI am using PostgreSQL DB. I need to create a view which comprises of a query with joins on multiple tables but I am stuck at a point. Please read the below table definition and the Query which I have created. Tables: Students --------- id -> UUID fu...
Join discussionIn a Dockerfile I'm trying to set up a PostgreSQL on an Ubuntu installation but these 2 lines gives me an error: RUN apt-get install -y postgresql RUN systemctl enable postgresql && systemctl start postgresql The error is: RUN systemctl enable postgr...
EEmil commented