简体   繁体   中英

Connect to database with Amazon Redshift

Trying to do something really simple, not sure why it's not working.

I downloaded SQL workbench and connected to my Redshift driver. Connection is fine. I created a database using CREATE DATABASE dbexample

Now I'm trying to connect to the database. I've tried \\c dbexample and \\connect dbexample and am getting the following error:

An error occurred when executing the SQL command:
\connect dbname

[Amazon](500310) Invalid operation: syntax error at or near "\" 
Position: 1;

\connect dbname
^
1 statement failed.

Anyone know why it's not connecting?

The \\backslash commands are specific to the psql utility and are not generic SQL commands for use in a product such as SQL Workbench.

Instead, specify the database name when you connect SQL Workbench to the database.

Provide the name of the database in the URL itself:

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM