Postgresql not creating db with “createdb” as superuser, yet not outputting errors

天涯浪子 提交于 2019-11-28 16:36:51
Saddam Abu Ghaida

createdb is a command line utility which you can run from bash and not from psql. To create a database from psql, use the create database statement like so:

create database [databasename];

Note: be sure to always end your SQL statements with ;

Late to the party, but the accepted answer doesn't explain why no error is displayed. And as this is something Postgres newcomers often stumble upon, I wanted to add that.


TL/TR: always end your SQL statements with ;


Because the createdb database did not end with ; psql thinks the statement isn't finished and waits for more input. This is indicated by the prompt changing from postgres=# to postgres-#. An extremely subtle change that I wish psql would do differently (more "prominent").

By entering the meta-command \list the "current" SQL statement is "aborted" without executing it.

If the createdb had been ended with a ; the output would have been:

postgres=> createdb foobar;
ERROR:  syntax error at or near "createdb"
LINE 1: createdb foobar;
        ^
postgres=>

Clearly showing that something was wrong.

I was in this situation not long ago. In case someone else experiences this, considering that the command prompt shows postgres-# you can execute the pending createdb command by simply typing ; and the return key.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!