Skip to content

Instantly share code, notes, and snippets.

@cmpscabral
Last active June 26, 2019 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmpscabral/d3b5e15b6c4b6819477be438e09a99e5 to your computer and use it in GitHub Desktop.
Save cmpscabral/d3b5e15b6c4b6819477be438e09a99e5 to your computer and use it in GitHub Desktop.
firebird export
1) download firebird 2.5
2) install as a service
3) connect to database
> isql.exe <databasefile> -u sysdba -p masterkey
4) show tables
SQL> show tables
5) download fbexport
6) export data
> fbexport.exe -D <databasefile> -U sysdba -P masterkey -Si -V <tablename> -F <filename>.out
-J "Y-M-D" -K "H:M:S"
Where:
J - date format
K – time format
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment