Subject | external backup |
---|---|
Author | S. Mindorf |
Post date | 2013-09-20T19:21:23Z |
Hello all,
I'll try to make a backup from a firebirdserver to my local computer via
python and fdb but I can't do.
Is is possibel?
And if yes how is the syntax?
I tried from my workstation:
from fdb import services
con = services.connect(host='fb.example.com', user='sysdba',
password='masterkey')
con.backup('/opt/firebird/data/my.fdb',
'localhost:/home/s.mindorf/employee.fbk', transportable=True)
backup_report = con.readlines()
but it doesn't work.
I also tried from my workstation:
from fdb import services
con = services.connect(host='fb.example.com', user='sysdba',
password='masterkey')
con.backup('/opt/firebird/data/my.fdb', '/home/test/fb.fbk',
transportable=True)
backup_report = con.readlines()
this is working but now the file is local on the server....
Both systems are linux.
Thanks for your help.
Soeren
--
Pflichtinformationen: Siehe www.euroimmun.de/impressum.htm
I'll try to make a backup from a firebirdserver to my local computer via
python and fdb but I can't do.
Is is possibel?
And if yes how is the syntax?
I tried from my workstation:
from fdb import services
con = services.connect(host='fb.example.com', user='sysdba',
password='masterkey')
con.backup('/opt/firebird/data/my.fdb',
'localhost:/home/s.mindorf/employee.fbk', transportable=True)
backup_report = con.readlines()
but it doesn't work.
I also tried from my workstation:
from fdb import services
con = services.connect(host='fb.example.com', user='sysdba',
password='masterkey')
con.backup('/opt/firebird/data/my.fdb', '/home/test/fb.fbk',
transportable=True)
backup_report = con.readlines()
this is working but now the file is local on the server....
Both systems are linux.
Thanks for your help.
Soeren
--
Pflichtinformationen: Siehe www.euroimmun.de/impressum.htm