ChatGPT解决这个技术问题 Extra ChatGPT

"use database_name" command in PostgreSQL

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?

Possible duplicate of How to switch databases in psql?
Another option is to directly connect to the schema. Example: sudo -u postgres psql -d my_database_name. Source
In pgAdmin, you can right-click on your database and select "Query Tool" to run queries on that database.
if you create a table, put a database prefix before the table name : CREATE TABLE database.tablename;

V
VPK

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.


Thanks kgrittn for your valuable guidance.Can you tell me how I can make new connection to database and close previous by using pgscript query?
A query can't change the database in PostgreSQL.
Thanks kgrittn for all your help.. :)
If I'm not mistaken, databases in MySQL are more akin to schemas in PostgreSQL -- you can switch between those, but DBs in PostgreSQL are a whole different ballgame.
If you have a PostgreSQL connection, it is always associated with a database. To find out which one, send the database this query: select current_database()
E
Eugene

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.


B
Bart De Boeck

In pgAdmin you can also use

SET search_path TO your_db_name;


V
VPK

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.


S
Sukma Saputra

Use this commad when first connect to psql

=# psql <databaseName> <usernamePostgresql>

a
alv2017

PgAdmin 4, GUI Tool: Switching between databases

In the PgAdmin Browser on the left hand side, right click on the database you are willing to switch to. Select a QueryTool from the drop down menu (or any other option that you need, I will stick with the QueryTool for now). You will see the QueryTool in the PgAdmin window, and on top you will see the active database and the role name. Now you can write queries against the chosen database. 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();

P
Pathanjali Tallapragada
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