Abgelaufene Aktivitäten entfernen
The backups were obviously done - but the logs are full of this entries, witch causes in red bar charts in the dashboard.
thx for help
--------------------
Details zu den Log-Einträgen
--------------------
Typ: Fehler
Datum und Zeit: 07.07.2014 13:18:31
Backup-Plan: [Keine]
Task: [Keine]
Typ der verwalteten Einheit: [Keine]
Verwaltete Einheit: [Keine]
Maschine: xyz.local
Code: 20.250.685(0x135003D)
Modul: 309
Besitzer: acronis62689244f0334
Nachricht:
Befehl 'Abgelaufene Aktivitäten entfernen' ist fehlgeschlagen.
Zusätzliche Info:
--------------------
Fehlercode: 61
Module: 309
Zeileninfo: 4a8728dc8a1c950f
Felder: $module : mms_vs_38774
Nachricht: Befehl 'Abgelaufene Aktivitäten entfernen' ist fehlgeschlagen.
--------------------
Acronis Knowledge Base: http://kb.acronis.com/errorcode
Ereignis-Code: 0x0135003D
--------------------

- Log in to post comments

Hello everyone.
the problem with removing expired activities failure is a known issue.
You can workaround this problem by using "remove_history" script as in the article below but applying it to MMS database.
https://kb.acronis.com/content/31547
You can see the modified script attached to this article.
1. Put it into folder "C:\ProgramData\Acronis\BackupAndRecovery\MMSData\DML"
2. Stop Acronis Managed Machine Service.
3. Copy F4CEEE47-042C-4828-95A0-DE44EC267A28.db3 somewhere (just in case)
4. open CMD as Admin and "cd" to that folder.
5. run remove_history_mms.bat YYYY-MM-DD [HH:MM:SS]. If you do not specify the arguments to the script it will remove all activities basically clearing the logs.
The problem itself is going to be fixed in our later builds.
Attachment | Size |
---|---|
182217-114187.zip | 250.16 KB |
- Log in to post comments

ok ... This seems to work. Thanks for the workaround. I hope the problem is solved in the next release.
- Log in to post comments

hello,
in my case, the .db3 was corrupt ("Error: database disk image is malformed"), so the log entries can't delete anymore (same error as above). i fixed this problem with this how-to (very simple! see step 3 and ignore "spiceworks"):
http://community.spiceworks.com/how_to/1468-how-to-fix-corrupt-sqlite-d…
kind regards,
andreas
- Log in to post comments

Hi Andreas,
thank you for sharing your experiences!
- Log in to post comments

... no problem - here the copy of my documentation:
1. Stop the Acronis MMS Service
2. Launch an MS-Dos Command
3. Then go to the database directory "C:\ProgramData\Acronis\BackupAndRecovery\MMSData\DML", and launch SQLite:
sqlite3 .db
4. You can check the database integrity by:
pragma integrity_check;
5. If it's OK, you don't need to made other treatment, your database is good. You can quit sqlite by : .quit
6. If you have error messages, export Data to SQL File:
echo .dump | sqlite3.exe .db > .sql
7. When the sql file is created, you can create a new database with your datas (don't forget to rename the old corrupt database):
sqlite3.exe -init .sql .db
8. Start the MMS Service
- Log in to post comments