Getting an error when trying to run update -

0 votes
could not execute SQL statement:
Error 1062 (23000): Duplicate entry '1311522-3935086' for key 'daily_betfair_mappings.PRIMARY'
Could not fetch latest timestamp for feed daily_runners_insights:
Error 1100 (HY000): Table 'daily_runners_insights' was not locked with LOCK TABLES
Could not fetch latest timestamp for feed historic:
Error 1100 (HY000): Table 'historic_races' was not locked with LOCK TABLES
Could not fetch latest timestamp for feed historic_beta:
Error 1100 (HY000): Table 'historic_races_beta' was not locked with LOCK TABLES
Could not fetch latest timestamp for feed historic_betfair_win_prices:
Error 1100 (HY000): Table 'historic_betfair_win_prices' was not locked with LOCK TABLES
Could not fetch latest timestamp for feed historic_runners_insights:
Error 1100 (HY000): Table 'historic_runners_insights' was not locked with LOCK TABLES
Could not fetch latest timestamp for feed non_runners:
Error 1100 (HY000): Table 'non_runners' was not locked with LOCK TABLES
asked Apr 1 in Smartform by Jojobrien Novice (200 points)

1 Answer

0 votes

Hi - this is because the daily_betfair_mappings table was updated yesterday per this question:

https://answers.betwise.net/1527/daily_betfair_mappings

However, your local database still has the old data. with an existing entry for yesterday's races in it, so cannot be updated, hence this error:

1062 (23000): Duplicate entry '1311522-3935086' for key 'daily_betfair_mappings.PRIMARY'

And also because it looks like you are running the smartform-updater for all-feeds.   Therefore it stops as soon as it encounters the error.

To fix the problem, see yeterday's question - in this case you will need to delete all data since yesterday, so follow these steps:

# log in to smartform database

> delete from daily_betfair_mappings where date >= "2024-03-31";

# log out of database and rerun smartform updates

smartform-updater daily_betfair_mappings

answered Apr 1 by colin Frankel (19,320 points)
...