Hello.
Bundled DB engine is SQLite. You can try to export/reimport db into a new file (run in cmd.exe):
sqlite3.exe can be downloaded here: http://www.sqlite.org/2014/sqlite-shell-win32-x86-3080500.zip
This should produce a clean copy of the database in file netxms_db.new. Move original netxms_db tor backup and rename netxms_db.new to netxms_db.
I also highly recommend you to migrate to any other database engines, PostgreSQL is common and quite good choice - it's powerful, free and require just a little of the system resources in default configuration.
nxdbmgr can be used for migration (so you don't have to dump data and reimport it manually).
Bundled DB engine is SQLite. You can try to export/reimport db into a new file (run in cmd.exe):
Code Select
echo ".dump" | sqlite3 c:\netxms\ database\netxms_db | sqlite3 c:\netxms\ database\netxms_db.newsqlite3.exe can be downloaded here: http://www.sqlite.org/2014/sqlite-shell-win32-x86-3080500.zip
This should produce a clean copy of the database in file netxms_db.new. Move original netxms_db tor backup and rename netxms_db.new to netxms_db.
I also highly recommend you to migrate to any other database engines, PostgreSQL is common and quite good choice - it's powerful, free and require just a little of the system resources in default configuration.
nxdbmgr can be used for migration (so you don't have to dump data and reimport it manually).