You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if downloader is run multiple times, it will reject any csv file upload if that file already matches rows in the db. GLOBALEVENTID has a PRIMARY KEY constraint that will throw a error: duplicate key value violates unique constraint error.
only an issue if downloader is run for the same dates multiple times with different filters. would be nice to ignore duplicates and let any new rows through, i.e. something like UPSERT.
The text was updated successfully, but these errors were encountered:
if downloader is run multiple times, it will reject any csv file upload if that file already matches rows in the db.
GLOBALEVENTID
has aPRIMARY KEY
constraint that will throw aerror: duplicate key value violates unique constraint
error.only an issue if downloader is run for the same dates multiple times with different filters. would be nice to ignore duplicates and let any new rows through, i.e. something like
UPSERT
.The text was updated successfully, but these errors were encountered: