Dashboard : Afficher s'il y a des erreurs de réplication hors PK #21
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
afficher les erreurs de réplications qui ne sont pas des violations de PK
SELECT *
FROM repqueue.rpl_replication_data
WHERE publish_status = 'ERROR'
AND error_details NOT LIKE '%viol%';
select count(*) from repqueue.rpl_replication_data where publish_status = 'ERROR' AND error_details NOT LIKE '%viol%';