The data is not syncing automatically from CouchDB to RDBMS

Hi @Marcelo_De_Guzman , the error on couch2pg suggests that the user that is running couch2pg doesn’t have access to some objects. In this case its throwing error for useview_telemetry . You can change the ownership of these objects by using sql like below:

ALTER MATERIALIZED VIEW useview_telemetry OWNER TO user_group;

Here, you need to replace user_group by the user name or user group for a postgres user that you configured on couch2pg.