How To: Configure how long the reindex logs are kept 


Minion Reindex stores the "log retention in days" setting (LogRetDays) in the Minion.IndexSettingsDB table and the Minion.IndexSettingsTable table. You can therefore set the log retention for individual tables, individual databases and/or the system as a whole. 

To change the default log retention for the system, run an update statement on the MinionDefault row in Minion.IndexSettingsDB. For example:

UPDATE [Minion].[IndexSettingsDB]
SET  [LogRetDays] = 60
WHERE [DBName] = 'MinionDefault';


To change the log retention for a specific database, run an update statement on that database’s row in Minion.IndexSettingsDB. For example:

UPDATE [Minion].[IndexSettingsDB]
SET  [LogRetDays] = 90
WHERE [DBName] = 'YourDatabase';