我创建了一个数据库.我列出了它不在那里?没有错误!它去了哪里?有没有创造过?
postgres-# creatdb testpostgres-# \List List of databases name | Owner | EnCoding | Collate | Ctype | Access privileges -----------+----------+----------+-------------+-------------+----------------------- postgres | postgres | UTF8 | en_PH.UTF-8 | en_PH.UTF-8 | template0 | postgres | UTF8 | en_PH.UTF-8 | en_PH.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres template1 | postgres | UTF8 | en_PH.UTF-8 | en_PH.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres(3 rows)postgres-# postgres@ubuntu:/home/ubuntu$psql -h 127.0.0.1 -U postgres -d testPassword for user postgres: psql: FATAL: database "test" does not exist你有两个错误:
> createdb是一个 *** 作系统命令,它不是sql命令.在psql中,您需要使用SQL语句,即:CREATE DATABASE.有关详细信息,请参见手册:http://www.postgresql.org/docs/current/static/sql-createdatabase.html
>每个SQL语句都需要以;终止.由于您没有这样做,您的声明未执行,因此您没有收到错误.有关详细信息,请参见手册:http://www.postgresql.org/docs/current/static/sql-syntax-lexical.html
postgres=# createdb test;ERROR: Syntax error at or near "createdb"liNE 1: createdb test; ^postgres=# create database test;CREATE DATABASEpostgres=# \List List of databases name | Owner | EnCoding | Collate | Ctype | Access privileges-----------+----------+----------+---------------------+---------------------+----------------------- postgres | postgres | UTF8 | German_Germany.1252 | German_Germany.1252 | template0 | postgres | UTF8 | German_Germany.1252 | German_Germany.1252 | =c/postgres + | | | | | postgres=CTc/postgres template1 | postgres | UTF8 | German_Germany.1252 | German_Germany.1252 | postgres=CTc/postgres+ | | | | | =c/postgres test | postgres | UTF8 | German_Germany.1252 | German_Germany.1252 | 10 rows)postgres=#总结
以上是内存溢出为你收集整理的postgresql-9.2 – 我的数据库在哪里发布了postgres?全部内容,希望文章能够帮你解决postgresql-9.2 – 我的数据库在哪里发布了postgres?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)