About 50 results
Open links in new tab
  1. what does the @> operator in postgres do? - Stack Overflow

    May 2, 2016 · 113 I came across a query in postgres here which uses the @> operator on earth objects. I've searched everywhere, but have come up empty on the meaning of this operator (and likely …

  2. How can I change a PostgreSQL user password? - Stack Overflow

    Oct 4, 2012 · \password in the Postgres console. Per ALTER USER documentation: Caution must be exercised when specifying an unencrypted password with this command. The password will be …

  3. database - How to show tables in PostgreSQL? - Stack Overflow

    56 First login as postgres user: sudo su - postgres connect to the required db: psql -d databaseName \dt would return the list of all table in the database you're connected to.

  4. Using psql how do I list extensions installed in a database?

    May 4, 2018 · How do I list all extensions that are already installed in a database or schema from psql? See also Finding a list of available extensions that PostgreSQL ships with

  5. Restore a postgres backup file using the command line?

    Enter the following command to restore your database: psql.exe -U postgres -d my_db -f D:\Backup\backup_file_name.sql Type password for your postgres user if needed and let Postgres to …

  6. postgresql - Where are the postgres logs? - Stack Overflow

    Jun 10, 2021 · I'm using DBeaver to connect the postgres db and want to access the logs via DBeaver. I run the command below to find log destination and got stderr as the location. show log_destination ; …

  7. Connecting to Postgresql in a docker container from outside

    Jun 8, 2016 · I have Postgresql on a server in a docker container. How can I connect to it from the outside, that is, from my local computer? What setting should I apply to allow that?

  8. Postgres 15. permission denied for schema public - Stack Overflow

    Oct 18, 2022 · Can't create tables in public schema as non-superuser postgres - super user. What I've done: ALTER SCHEMA public owner to postgres; CREATE USER admin WITH PASSWORD 'my …

  9. pgadmin - pg Admin 4 - password for "postgres" user when trying to ...

    Oct 4, 2020 · I know that this question has been asked other times but I didn't find a solution to this problem! I downloaded PostgreSQL 13 with pg Admin 4 and when I open it for the first time after …

  10. Which version of PostgreSQL am I running? - Stack Overflow

    Learn how to determine the version of PostgreSQL you are using with this helpful guide on Stack Overflow.