Quote:
Originally Posted by angeladottavio
Thank you. I have been trying to figure out how to copy the bookmark table in the new database, but I haven't been able to understand it. Could you explain it, please?
|
One way would be to use .dump to dump the entire DB (warning: it's large), then copy the insert statements for the bookmark table to the other db.
The other way would be to use the ATTACH command to attach the other database, then copy between them using an INSERT and SELECT in the same statement.
If you're using a GUI, you might be able to copy the rows as-is.