We're putting together a small dynamic DNS auto-update system to handle some customer cloud instances.  This is PDNS using MySQL back end with MySQL replication between the master node and slave nodes.  Updating a given resource record in SQL is easy, but what about updating the serial number in the SOA for the given domain?  Our resource update SQL syntax looks like this:<div>
<br></div><div>"UPDATE records SET CONTENT=\"$1\", CHANGE_DATE=\"`date +%s`\" WHERE name=\"$2\""</div><div><br></div><div>$1 is the new IP of the host</div><div>$2 is the host name (i.e. <a href="http://host.domain.com">host.domain.com</a>)</div>
<div><br></div><div>Works perfectly, but what about updating the serial number for the zone in the SOA record?  In an SQL master/slave setup I can't think of a reason that it would matter.  Any thoughts on that?</div>