Replicação entre servidores
Como ajustar divergências de DDLs já executados?
RTREPLICATOR.FAQ-40982
Erros tipo:
- alter table/create table' com erro '... already exists'
- alter table com erro 'multiple primary keys for table ... are not allowed'
Executar:
update dml_logs
set queue = 'X'
where queue = 'E'
and (error_message like 'ERROR: %already exists' or error_message like 'ERROR: multiple primary keys for table%are not allowed')
and (dml like 'alter table%' or dml like 'create table%' or dml like 'create index%');
update dml_logs
set queue = 'X'
where queue = 'E'
and (error_message like 'ERROR: constraint % does not exist')
and dml like 'alter table % drop constraint %';
Ver também: