postgresql - Postgres 9.3 Foreign table | Not all rows returned from external view -
i have 2 pg databases. on 1st have view v_articles
, on second db have created foreign data table (ft_articles
) reads entries foreign data source view v_articles
(with foreign data wrapper). far worked great, today noticed no records view v_articles inside foreign data table. have suggestions cause kind of behavior. in cases works - during last few months there have been few records not "transferred" view v_articles
ft_articles
. suggestions should start?
i managed find temporal solution fix problem. on 1st server created materialized view mv_articles
, reads standard view v_articles
. on 2nd server read data foreign table ft_articles records materialized view mv_articles
rather v_articles
. in case have records in ft_articles
, doesn't answer question - why there 1 record missing in foreign table when reading standard view..
Comments
Post a Comment