I am storing data temporarily in a database... and periodically need
to update that huge database, so just has to copy that temp DB to the
original one.
Using sql may take a few hours to finish this operation. I think you
can do "export" from temp database into a file and "import" into the
huge database. That will be binary data exort and import and hence
will be faster. But, I am not sure if all databases will support that
though.
So, is there any other solution?
to update that huge database, so just has to copy that temp DB to the
original one.
Using sql may take a few hours to finish this operation. I think you
can do "export" from temp database into a file and "import" into the
huge database. That will be binary data exort and import and hence
will be faster. But, I am not sure if all databases will support that
though.
So, is there any other solution?
Comment