Subject Re: [firebird-support] Extract Metadata and Data in Text form
Author Milan Babuskov
Alberto Pesce wrote:
> How It's possible extract metadata and data in Text format.
> Using isql I extracted only metadata but non the statemant INSERT INTO....

You can try with FBExport. It does not extract the entire database, you have
to go table by table. You can use a script like this to get the commands:

select 'fbexport -S -V ' || rdb$relation_name || ';'
from rdb$relations
where rdb$system_flag = 0 or rdb$system_flag is null;

--
Milan Babuskov
http://fbexport.sourceforge.net