You are not logged in.
Pages: 1
Hi,
I need to clone a database with all the objects inside and I don't need synchronization. I want to change database engine to another but first I need to clone structure and data inside.
There is a TSQLRest clone method to another TSQLRest without using syncronization? Or what is the best way to do this with mORMot.
Thanks!
Last edited by turrican (2016-10-20 11:17:40)
Offline
From/to which database engine are you migrating?
There is no built-in tool for this.
Only if you want to target SQlite3, you could try to use SynDBExplorer to create a SQLite3 file from any external DB connection.
Offline
SQLite3 to MSSQLServer
I'm suffering perfomance problems with SQLite3. Update batches are veeeeeryy slow on a 7GB table (no hardware issues or slow disk/network). I need to update more than a milion rows and it's painful.
Last edited by turrican (2016-10-20 15:46:03)
Offline
Maybe there are too much index on your sqlite table ? 7GB table may counts 2~3 billion rows , update is not easy on any RDBMS. I'm curious whether your MSSQL faster now ? @turrican
Offline
I had the same curiosity - turning performance is always a good topic.
Delphi XE4 Pro on Windows 7 64bit.
Lazarus trunk built with fpcupdelux on Windows with cross-compile for Linux 64bit.
Offline
Maybe there are too much index on your sqlite table ? 7GB table may counts 2~3 billion rows , update is not easy on any RDBMS. I'm curious whether your MSSQL faster now ? @turrican
Finally was the Hard Disk Volume perfomance... very fast with another server. I don't move from SQLite3 engine
Offline
@turrican, thanks for getting back to this thread and sharing the info with us. And yes, good to hear that, SQLite3 never failed us:)
Delphi XE4 Pro on Windows 7 64bit.
Lazarus trunk built with fpcupdelux on Windows with cross-compile for Linux 64bit.
Offline
Pages: 1