5.5.5 Export Into Flat-Files
FrontBase can export an entire database, schema definitions and contents, into flat files in ASCII format
from which a database can later be rebuilt.
Two purposes of the flat-file export/import functionality are:
1. Backup and Restore of a database in ASCII form.
2. Porting of a database between platforms of different "endian" type (big-endian/little-endian).
The following SQL 92 statements will respectively export and import a complete database:
WRITE ALL OUTPUT(DIR='<path-to-export-directory>', CONTENT=TRUE);
SCRIPT <path-to-export-directory>/schema.sql;