Skip to content
Discussion options

You must be logged in to vote

Thank you!

The correct steps are:

  1. Install your favorite SQLite DB Browser (I used DB Browser for SQLite, from sqlitebrowser.org.)
  2. Open the EXERCISE table; you should see that the HRM_FILE field contains '/home/your user name/...', because we moved the data from a Linux system. However, on MacOS this should be '/Users/your user name/...'.
  3. Execute this SQL:
    update EXERCISE SET
    HRM_FILE = replace(HRM_FILE, '/home//', '/Users/your user name/')
    WHERE
    HRM_FILE like '/home/your user name/%';

This will change all instances of '/home/your user name/' to '/Users/your user name/'; that should fix the problem.

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@The-BDD-Coach
Comment options

Answer selected by The-BDD-Coach
@ssaring
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants