Subject | Re: [firebird-support] How to transfer one fdb content to another? |
---|---|
Author | W O |
Post date | 2014-01-11T01:17:52Z |
And you can find several examples of that Ivan says, here:
Greetings.
Walter.
On Fri, Jan 10, 2014 at 9:07 PM, Ivan Přenosil <Ivan.Prenosil@...> wrote:
> I have a frebird database in which was copied and was updated at the same time. My questions is how can I transfer the content of one of the databases to another so that I can unify it and make it as a single file with all the contents of the 2 separated databases on it? They both share the same content, because they were duplicated and was updated at the same time but with different content.You can directly send data from one database into another and use them e.g. in Insert or Update.Inside EXECUTE BLOCK use EXECUTE STATEMENT with ON EXTERNAL.Look at syntax and examples in FB documentation, e.g. in FB directoryC:\Program Files\Firebird\Firebird_2_5\doc\sql.extensions\README.execute_statement2.txtIvan