mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
Remove sqlite_sequence
This commit is contained in:
parent
05dbe6818d
commit
9a457c72af
@ -28,13 +28,14 @@ If it succeeds, you can proceed to the next step.
|
|||||||
|
|
||||||
## Create a dump of existing data
|
## Create a dump of existing data
|
||||||
|
|
||||||
We want to dump (almost) all existing values to some file - the exception being the `metadata` table. Be sure to stop/pause LLDAP during this step, as some
|
We want to dump (almost) all existing values to some file - the exception being the `metadata` table (and sometimes
|
||||||
|
the `sqlite_sequence`, when it exists). Be sure to stop/pause LLDAP during this step, as some
|
||||||
databases (SQLite in this example) will give an error if LLDAP is in the middle of a write. The dump should consist just INSERT
|
databases (SQLite in this example) will give an error if LLDAP is in the middle of a write. The dump should consist just INSERT
|
||||||
statements. There are various ways to do this, but a simple enough way is filtering a
|
statements. There are various ways to do this, but a simple enough way is filtering a
|
||||||
whole database dump. For example:
|
whole database dump. For example:
|
||||||
|
|
||||||
```
|
```
|
||||||
sqlite3 /path/to/lldap/config/users.db .dump | grep "^INSERT" | grep -v "^INSERT INTO metadata" > /path/to/dump.sql
|
sqlite3 /path/to/lldap/config/users.db .dump | grep "^INSERT" | grep -v "^INSERT INTO metadata" | grep -v "^INSERT INTO sqlite_sequence" > /path/to/dump.sql
|
||||||
```
|
```
|
||||||
|
|
||||||
## Sanitize data
|
## Sanitize data
|
||||||
|
Loading…
Reference in New Issue
Block a user