Backup & Recovery

Protect your data with one-click backups, automatic safety copies, and full project exports. This guide covers both SQLite (solo) and SQL Server (team) scenarios.

One-Click Backup Database

The fastest way to create a backup is from the File menu:

  1. Go to File > Backup Database — or use the Command Palette (Ctrl+K) and type "Backup".
  2. Choose a location — Select where to save the backup file.
  3. Backup completes instantly — For SQLite projects, GlyphFex copies the .glyphfex file and its attachments folder. For SQL Server projects, GlyphFex runs a BACKUP DATABASE command.

What gets backed up

Project Type Backup Contents File Format
SQLite (Solo) Database file + attachments folder .glyphfex copy
SQL Server (Team) Full database via BACKUP DATABASE .bak file
Tip Schedule a weekly backup as part of your routine. For SQL Server, consider setting up a SQL Server Agent job to automate nightly backups.

Automatic Safety Backups

GlyphFex automatically creates a timestamped .bak safety copy before certain operations that could modify your data:

These safety copies are saved alongside the original file with a timestamp suffix, such as MyProject_2026-03-22_143000.bak.

Note Automatic backups are a safety net, not a replacement for regular manual backups. Always maintain your own backup routine for critical production data.

Save As (Project Copy)

Use File > Save As (Ctrl+Shift+S) to create a complete copy of your project under a new name or location.

Tip Save As is the simplest way to create a point-in-time snapshot of a solo project. Before making major changes to your pipeline or categories, do a quick Save As to preserve the current state.

SQL Server Backup

For shared (team) projects running on SQL Server Express, GlyphFex uses the native BACKUP DATABASE command:

From GlyphFex

Use File > Backup Database while connected to a SQL Server project. GlyphFex will prompt you to choose a save location and then execute the backup command on the server.

From SQL Server Management Studio

IT administrators can also create backups directly from SSMS:

  1. Right-click the database in Object Explorer
  2. Select Tasks > Back Up...
  3. Choose Full backup type
  4. Select the destination path and click OK

Automated backups

For production environments, set up automated backups using SQL Server Agent (available in Express via sqlcmd scripts or Windows Task Scheduler):

Warning SQL Server Express does not include SQL Server Agent as a built-in service. Use Windows Task Scheduler with a sqlcmd script to automate backups on Express editions.

Restoring from Backup

Restoring a SQLite project

  1. Locate your backup file — Find the .glyphfex backup copy you created earlier.
  2. Replace the current file — Close GlyphFex, then copy the backup file over the current project file (or to a new location).
  3. Open in GlyphFex — Use File > Open Project to open the restored file.

Restoring a SQL Server database

  1. Disconnect all users — Ensure no one is connected to the database in GlyphFex.
  2. Restore via SSMS — Right-click the database in SQL Server Management Studio, select Tasks > Restore > Database, select your .bak file, and click OK.
  3. Reconnect in GlyphFex — Open your .glyphfex-server file to reconnect to the restored database.
Warning Restoring a database overwrites all current data with the backup contents. Any entries or changes made after the backup was created will be lost. Always verify you are restoring the correct backup file.

Export Full Project (ZIP)

For the most comprehensive backup, export your entire project as a ZIP archive:

  1. Go to File > Export > Full Project ZIP or press Ctrl+Shift+E.
  2. Choose whether to include attachments — GlyphFex will ask if you want to bundle all file attachments in the ZIP.
  3. Save the ZIP file — Choose a location and filename. The archive includes the database, all configuration, and optionally all attached files.

The ZIP export is ideal for:

Note The Full Project ZIP export is restricted to Admin users only. Editors and Viewers cannot create ZIP exports.

Disaster Recovery Guide (PDF)

GlyphFex includes a built-in 9-page Disaster Recovery Guide designed for IT administrators. Access it from Help > Disaster Recovery Guide or via the Command Palette.

The PDF guide covers:

Tip Print the Disaster Recovery Guide and keep a copy near your server. In an emergency, having paper instructions available ensures you can restore operations even if you cannot access digital documentation.

Backup Best Practices