Sqlite出現SQL error: database disk image is malformed的處理

來源:互聯網
上載者:User

標籤:

SQLite有一個很嚴重的缺點就是不提供Repair命令。
導致死亡提示database disk image is malformed
它的產生有很多種可能,比如,磁碟空間不足,還有就是寫入資料過程中突然掉電等。
官方對產生原因的一些說明:http://www.sqlite.org/lockingv3.html#how_to_corrupt

sqlite  my.sqlite3sqlite>PRAGMA integrity_check;

獲得提示

*** in database main ***Page 1518: btreeInitPage() returns error code 11On tree page 1566 cell 2: Child page depth differsOn tree page 1566 cell 3: Child page depth differsSQL error: database disk image is malformed

可以嘗試通過簡單的匯出匯入方式對損壞的庫檔案作回複。
首先匯出資料

sqlite3 my.sqlite3sqlite>.output tmp.sqlsqlite>.dumpsqlite>.quit

再倒入到一個新庫中

sqlite3 mynew.sqlite3sqlite>.read tmp.sqlsqlite>.quit

這時建立的mynew.sqlite3一般可用。

Sqlite出現SQL error: database disk image is malformed的處理

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.