Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/sql/77.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

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/amazon-web-services/13.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
Sql Amazon红移:错误:3F000:架构不存在_Sql_Amazon Web Services_Amazon Redshift - Fatal编程技术网

Sql Amazon红移:错误:3F000:架构不存在

Sql Amazon红移:错误:3F000:架构不存在,sql,amazon-web-services,amazon-redshift,Sql,Amazon Web Services,Amazon Redshift,当我尝试运行一个非常简单的查询时,使用我在postgres测试amazon的CDC时设置的一个愚蠢的小测试数据库: SELECT * FROM schemastreamtest.testdatatable 我得到以下信息: /* Current path set to $user, public */ /* ERROR: 3F000: schema "schemastreamtest" does not exist */ SELECT * FROM schemastreamtest.testd

当我尝试运行一个非常简单的查询时,使用我在postgres测试amazon的CDC时设置的一个愚蠢的小测试数据库:

SELECT * FROM schemastreamtest.testdatatable
我得到以下信息:

/*
Current path set to $user, public */
/*
ERROR: 3F000: schema "schemastreamtest" does not exist */
SELECT * FROM schemastreamtest.testdatatable;
同样,这不是一个伪查询,字面上称之为那些查询,使用数据迁移的CDC将数据从postgres推送到这个DB


我将Aginity IDE用于红移,pgAdmin3用于postgres,如果这很重要的话。根据美国焊接学会(AWS)的数据流入其中,这似乎只是一个检索问题

重新加载了数据库,它刷新了模式,现在可以工作了

当我右键单击我的表和data review>show top 100时,它可以正常工作,但除此之外,否。从pg_名称空间中选择*,其中nspname='schemastreamtest'将其作为结果提供给您?只是好奇,用户是否有此模式的选择权限?您是否尝试将搜索路径设置为此模式???@Milobelano-它提供nothing@hadooper-嗯。。。什么?我是T-SQL/SSMS DBA,对Redshift&PG非常陌生。