Last active
June 26, 2019 13:48
-
-
Save cmpscabral/d3b5e15b6c4b6819477be438e09a99e5 to your computer and use it in GitHub Desktop.
firebird export
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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