"use database_name" command in PostgreSQL

Postgresql

Postgresql Problem Overview


I am beginner to PostgreSQL.

I want to connect to another database from the query editor of Postgres - like the USE command of MySQL or MS SQL Server.

I found \c databasename by searching the Internet, but its runs only on psql. When I try it from the PostgreSQL query editor I get a syntax error.

I have to change the database by pgscripting. Does anyone know how to do it?

Postgresql Solutions


Solution 1 - Postgresql

When you get a connection to PostgreSQL it is always to a particular database. To access a different database, you must get a new connection.

Using \c in psql closes the old connection and acquires a new one, using the specified database and/or credentials. You get a whole new back-end process and everything.

Solution 2 - Postgresql

You must specify the database to use on connect; if you want to use psql for your script, you can use "\c name_database"

user_name=# CREATE DATABASE testdatabase; 
user_name=# \c testdatabase 

At this point you might see the following output

You are now connected to database "testdatabase" as user "user_name".
testdatabase=#

Notice how the prompt changes. Cheers, have just been hustling looking for this too, too little information on postgreSQL compared to MySQL and the rest in my view.

Solution 3 - Postgresql

In pgAdmin you can also use

> SET search_path TO your_db_name;

Solution 4 - Postgresql

The basic problem while migrating from MySQL I faced was, I thought of the term database to be same in PostgreSQL also, but it is not. So if we are going to switch the database from our application or pgAdmin, the result would not be as expected. As in my case, we have separate schemas (Considering PostgreSQL terminology here.) for each customer and separate admin schema. So in application, I have to switch between schemas.

For this, we can use the SET search_path command. This does switch the current schema to the specified schema name for the current session.

example:

SET search_path = different_schema_name;

This changes the current_schema to the specified schema for the session. To change it permanently, we have to make changes in postgresql.conf file.

Solution 5 - Postgresql

Use this commad when first connect to psql

=# psql <databaseName> <usernamePostgresql>

Solution 6 - Postgresql

PgAdmin 4, GUI Tool: Switching between databases

  1. In the PgAdmin Browser on the left hand side, right click on the database you are willing to switch to.
  2. Select a QueryTool from the drop down menu (or any other option that you need, I will stick with the QueryTool for now).
  3. You will see the QueryTool in the PgAdmin window, and on top you will see the active database and the role name.
  4. Now you can write queries against the chosen database.
  5. You can open multiple QueryTools for multiple database, and work with them as you do with your graphical text editor.

In order to be sure that you are querying the proper database, issue the following query:

SELECT session_user, current_database();

Solution 7 - Postgresql

set search_path = 'schema name here'

while connecting to the postgres, you have to opt for default database to connect. If you have nothing, you can use 'postgres' as default.

You can use dbeaver to connect to postgres. UI is good

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionsamView Question on Stackoverflow
Solution 1 - PostgresqlkgrittnView Answer on Stackoverflow
Solution 2 - PostgresqlEugeneView Answer on Stackoverflow
Solution 3 - PostgresqlBart De BoeckView Answer on Stackoverflow
Solution 4 - PostgresqlVPKView Answer on Stackoverflow
Solution 5 - PostgresqlSukma SaputraView Answer on Stackoverflow
Solution 6 - Postgresqlalv2017View Answer on Stackoverflow
Solution 7 - PostgresqlPathanjali TallapragadaView Answer on Stackoverflow