问题
I have a legacy system using a remote Firebird 2.5 database. I need to clone this database for backup. I do not have access to file system of the server, I can only access it with connection string.
How can I do this?
回答1:
You can use GBAK
command to backup remote database to local hard disk.
Here's the GBAK command:
gbak -b -v 192.168.0.20:/dbases/mydb.fdb C:\mybackup.fbk -user SYSDBA -pass 123456
来源:https://stackoverflow.com/questions/43472517/i-need-to-backup-or-clone-one-remote-firebird-database-or-export-it-to-sql-serve