Home/Docs/Database Management

Database Management

Database Architecture

Tag-AI uses SQLite, a powerful file-based database system, to store all photo metadata and tags efficiently.

Tag-AI Database Architecture

The database is designed for fast tag-based searches while maintaining data integrity with a normalized schema.

Database Location

The Tag-AI database is stored at:

Windows

%LOCALAPPDATA%\Tag-AI\photos.db

macOS

~/Library/Application Support/Tag-AI/photos.db

Linux

~/.local/share/Tag-AI/photos.db

The database is a single file that contains all your photo metadata and tags. The actual image files remain in their original locations.

Database Structure

The Tag-AI database consists of three main tables and a virtual table for full-text search:

Photos Table

Stores information about each processed photo:

Tags Table

Stores unique tags:

Photo_Tags Table

Junction table that associates photos with tags:

Full-Text Search

The database uses a virtual FTS5 table for advanced search capabilities:

Database Maintenance

Database Integrity

Tag-AI maintains database integrity through several mechanisms:

Optimization

To maintain optimal performance:

Database Size

The database size grows based on the number of photos and tags:

Database size remains very small compared to the actual image files, typically less than 1% of the total image storage.

Backup and Restore

Database Backup

To back up your Tag-AI database:

  1. Close Tag-AI to ensure no active database connections
  2. Copy the photos.db file to a safe location
  3. You may also want to back up the photos.db-wal and photos.db-shm files if they exist

Database Restore

To restore from a backup:

  1. Close Tag-AI
  2. Replace the current photos.db file with your backup
  3. Delete any existing photos.db-wal and photos.db-shm files
  4. Restart Tag-AI

Moving to a New Computer

To transfer your Tag-AI setup to a new computer:

  1. Install Tag-AI on the new computer
  2. Copy your database backup to the appropriate location on the new computer
  3. Update watch folder paths if your file organization has changed

Troubleshooting

Database Corruption

Signs of database corruption:

To address database corruption:

  1. Close Tag-AI
  2. Restore from a recent backup
  3. If no backup is available, you may need to rebuild the database by rescanning your photos

Database Locked Errors

If you encounter "database is locked" errors:

  1. Ensure Tag-AI isn't running multiple instances
  2. Check if other applications might be accessing the database
  3. Restart your computer if the issue persists
  4. If problems continue, try closing Tag-AI, waiting a minute, then restarting it

Missing Tags or Photos

If tags or photos appear to be missing from search results:

  1. Verify the photos were successfully processed during scanning
  2. Check if the search terms match the expected tags
  3. Ensure the photos are still in the locations where they were scanned
  4. Try running the Purge utility to clean up any missing file references

Advanced Database Operations

Logging and Diagnostics

Tag-AI logs database operations to help with troubleshooting:

Manual Database Access

Advanced users can directly examine the database using the SQLite command-line tool or DB Browser for SQLite:

  1. Close Tag-AI to avoid concurrent access issues
  2. Open the database file with your SQLite tool
  3. Use standard SQL queries to examine or modify the data

Direct database modification outside of Tag-AI is not recommended and could lead to data corruption. Only do this if you're comfortable with SQLite and database structures.

Database Reset

To completely reset your database and start fresh:

  1. Close Tag-AI
  2. Delete or rename the photos.db file
  3. Restart Tag-AI
  4. The application will create a new, empty database
  5. Rescan your photos to rebuild the database

Database Migration

If you need to migrate to a different database location:

  1. Back up your current database
  2. Close Tag-AI
  3. Move the database file to the new location
  4. Create a symbolic link from the original location to the new location
# Windows (Admin Command Prompt)
mklink %LOCALAPPDATA%\Tag-AI\photos.db D:\NewLocation\photos.db

# macOS/Linux
ln -s /new/location/photos.db ~/Library/Application\ Support/Tag-AI/photos.db