Ever Wanted to Own and Operate a Fully Featured Dynamic DNS Service?
Now You Can With MintDNS 2009 Enterprise - - Our Award Winning Dynamic DNS (DDNS) Server Suite!!!
It's never been easier to run your own DDNS service.

Looking for free Dynamic DNS (DDNS) services? Please use our free DDNS service at http://www.dynddns.us

MintDNS Knowledge Base



Go Back
Pruning the update logs.
 
Pruning the UpdateLogs table?

Run the following command in SQL management studio. (30 represents how old in days a record must be before it is removed.)
T-SQL Code:
Use [mintdata]
Delete From UpdateLogs Where DATEDIFF(d, DD, getdate()) > 30


Go Back