> Is it possible to copy tables from one memory database to another > without going through an intermediate disk database?
did you try the really obvious way? create table db2.yourtable(...) insert into db2.yourtable select * from db1.yourtable
> Is it possible to copy tables from one memory database to another > without going through an intermediate disk database?
did you try the really obvious way? create table db2.yourtable(...) insert into db2.yourtable select * from db1.yourtable