Plugin:Dbx mdbx/pl: Difference between revisions

From Miranda NG
Plugin:Dbx mdbx/pl
Jump to navigation Jump to search
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 13: Line 13:
== Database repair ==
== Database repair ==


mdbx_dump.exe and mdbx_load.exe are located in the Miranda root folder.
mdbx_chk.exe is located in the Miranda root folder. Make a backup copy of the damaged database before restoring!


<pre style="overflow:auto;">
<pre style="overflow:auto;">
mdbx_dump.exe -n -a -f "%TEMP%\corrupted.tmp" "path\to\corrupted.dat"
mdbx_chk.exe -i -w -v -t -2 "path\to\corrupted.dat"
mdbx_load.exe -n -a -f "%TEMP%\corrupted.tmp" "path\to\repaired.dat"
</pre>
</pre>
This extracts as much data as possible from the corrupted.dat to the temporary file and builds repaired.dat.


== Database check ==
== Database check ==
Line 27: Line 24:


<pre style="overflow:auto;">
<pre style="overflow:auto;">
mdbx_chk.exe -v -n -w "path\to\database.dat"
mdbx_chk.exe -i -v -n -w "path\to\database.dat"
</pre>
</pre>


{{TNT|Note|"problems: wrong order of entries" messages should not be considered as errors.}}
{{TNT|Note|"problems: wrong order of entries" messages should not be considered as errors.}}
== If the above does not help ==
mdbx_dump.exe and mdbx_load.exe are located in the Miranda root folder.
<pre style="overflow:auto;">
mdbx_dump.exe -n -a -f "%TEMP%\corrupted.tmp" "path\to\corrupted.dat"
mdbx_load.exe -n -a -f "%TEMP%\corrupted.tmp" "path\to\repaired.dat"
</pre>
This extracts as much data as possible from the corrupted.dat to the temporary file and builds repaired.dat.


{{PluginGroups}}
{{PluginGroups}}

Revision as of 16:03, 9 October 2020

Other languages:
Miranda NG MDBX database driver

Nazwa pliku Dbx_mdbx.dll
Autor Miranda NG team
Pobierz
Wersja stabilna: 32-bit, 64-bit
Wersja rozwojowa: 32-bit, 64-bit

Uwaga
This database driver might suffer problems because of PC instability or disk damages. Thus that's vitally important to make backups once a day to minimize the chance of data loss.

Zapewnia obsługę bazy danych Mirandy: ustawień globalnych, kontaktów, historii, ustawień dla każdego kontaktu z osobna.

Wtyczka stworzona w oparciu o bibliotekę libmdbx.

Database repair

mdbx_chk.exe is located in the Miranda root folder. Make a backup copy of the damaged database before restoring!

mdbx_chk.exe -i -w -v -t -2 "path\to\corrupted.dat"

Database check

mdbx_chk.exe is located in the Miranda root folder.

mdbx_chk.exe -i -v -n -w "path\to\database.dat"
Informacja
"problems: wrong order of entries" messages should not be considered as errors.

If the above does not help

mdbx_dump.exe and mdbx_load.exe are located in the Miranda root folder.

mdbx_dump.exe -n -a -f "%TEMP%\corrupted.tmp" "path\to\corrupted.dat"
mdbx_load.exe -n -a -f "%TEMP%\corrupted.tmp" "path\to\repaired.dat"

This extracts as much data as possible from the corrupted.dat to the temporary file and builds repaired.dat.