Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/cocoa/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Postgresql 错误:关系“;复制“U测试”;不存在_Postgresql - Fatal编程技术网

Postgresql 错误:关系“;复制“U测试”;不存在

Postgresql 错误:关系“;复制“U测试”;不存在,postgresql,Postgresql,我是博士后的新手,经常出错 ERROR: relation "replication_test" does not exist 表确实存在。。我正试着听从命令 /usr/pgsql-9.2/bin/psql -dpgdb -Udunkin -h localhost -c "select * from replication_test;" dunkin用户可以访问pgdb数据库,并且是超级用户 当我执行以下命令时 /usr/pgsql-9.2/bin/psql -

我是博士后的新手,经常出错

ERROR:  relation "replication_test" does not exist
表确实存在。。我正试着听从命令

/usr/pgsql-9.2/bin/psql -dpgdb  -Udunkin -h localhost 
            -c "select * from replication_test;"
dunkin用户可以访问pgdb数据库,并且是超级用户 当我执行以下命令时

/usr/pgsql-9.2/bin/psql -dpgdb  -Udunkin -h localhost
我能够成功登录到数据库


请提供一些指针

谁是此表的所有者?!尝试将架构名称与表名称一起放置:
schemaName.replication\u test
如果表是使用带引号的标识符创建的,则还需要在查询中引用该标识符。您可以尝试:
select*from“replication\u test”
那么在
pgdb
中是否有具有该名称的表?也尝试了该操作,但得到了相同的错误,甚至检查了字母大小写