我以这种方式正确地(它连接了我)一个带有外部数据的服务器:
CREATE SERVER myserver
FOREIGN DATA WRAPPER ogr_fdw
OPTIONS (
datasource 'C:\Program Files\PostgreSQL\9.5\tmp\test\myfile.dbf',
format 'ESRI Shapefile' );
然后我做一个这样的外表:
CREATE FOREIGN TABLE pt_test (
"field1" integer,
"field2" varchar,
"field3" varchar,
"field4" varchar,
"field5" varchar)
SERVER myserver
OPTIONS (layer 'pt_two');
当我对 pt_test 进行选择时,它给了我这个错误:
SQL Error: ERROR: unable to connect to layer to "pt_two"
HINT: Does the layer exist?
我现在不知道什么是层。有什么帮助吗?