如何恢复损坏的 SQLite3 数据库?

2023-09-20数据库问题
5

本文介绍了如何恢复损坏的 SQLite3 数据库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

这是之前回答的帖子的后续问题:是否有用于在 Linux 中验证 SQLite 数据库的命令行实用程序?

This is a follow up question to a previously answered post: Is there a command line utility for validating SQLite databases in Linux?

如果数据库产生以下错误:

If a database is producing the following error:

$ sqlite3 mydata.db "PRAGMA integrity_check"
Error: database disk image is malformed

是否有任何清理处理可以将数据库恢复到可用状态?即使可能会丢失一些损坏的记录?

Is there any cleanup processing that can be done to recover the database to a usable state? Even at the potential loss of some corrupt records?

谢谢

推荐答案

UPDATE:现在有一个自动方法内置于 SQLite:.recover

UPDATE: There is now an automatic method that is built into SQLite: .recover

有时,损坏仅或大部分出现在索引中,在这种情况下,通过尝试使用 .dump 转储整个数据库,可以获取部分或大部分记录,并使用这些命令来创建一个新的数据库:

Sometimes, the corruption is only or mostly in indexes, in which case it would be possible to get some or most records by trying to dump the entire database with .dump, and use those commands to create a new database:

$ sqlite3 mydata.db ".dump" | sqlite3 new.db

然而,这并不总是可行的.

However, this is not always possible.

最简单、最可靠的方法是从备份中恢复数据库文件.

The easiest and most reliable way is to restore the database file from the backup.

这篇关于如何恢复损坏的 SQLite3 数据库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

统计分组返回的记录数
Count number of records returned by group by(统计分组返回的记录数)...
2024-04-16 数据库问题
10

定义外键有什么好处
what are the advantages of defining a foreign key(定义外键有什么好处)...
2024-04-16 数据库问题
7

音乐库 MySQL 数据库
Music library MySQL database(音乐库 MySQL 数据库)...
2024-04-16 数据库问题
6

理解mysql解释
understanding mysql explain(理解mysql解释)...
2024-04-16 数据库问题
8

价格是浮点数还是小数点?
Float or decimal for prices?(价格是浮点数还是小数点?)...
2024-04-16 数据库问题
5

存储用户并传入单表或单表
store users and pass in single table or separate table(存储用户并传入单表或单表)...
2024-04-16 数据库问题
5