Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

1.1K
Views
How to switch databases in postgres?

In SQL Server, I use:

 use database_name
 Go
 Select * from table_name

In postgreSQL, I still use:

 \connect database_name
 Select * from table_name
========================
then error: 
ERROR:  syntax error at or near "\"
LINE 1: \connect database_name
        ^
********** Error **********

ERROR: syntax error at or near "\"
SQL state: 42601
Character: 1.

Why? Can do help me? Thanks.

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Technically PostgreSQL can't switch databases. You must disconnect and reconnect to the new DB.

The psql command-line client will do this for you with the \connect command, shortcut \c. But these are not commands processed by the PostgreSQL server, they're client commands. Different clients won't understand or support them.

At a guess you're using PgAdmin-III, in which case use the pulldown menu in the query tool to switch databases.

Some day I'd like to extract psql's backslash-commands code into a library that things like PgAdmin could link to and use too.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!