I am having this issue where I rebuilt my Plex server (using Windows), I have a bunch of TV Shows that appear as most recently on “Recently Added in TV Shows”, the thing is, I’ve added many more since then but cannot get these few to go away.
I researched and found out that I need to download SQLLite and update the the metadata_items table, update the added_at since they are null for these specific shows.
That leads to my next issue, when I try to update the records, it throws an error:
– Result: unknown tokenizer: collating
Searching as to why this occurs I found this link:
Now the issue with this, it appears to fix it for Linux server command line, but nothing is mentioned how to fix this in Windows or with SQL Lite (DB Browser). Does anyone know how to fix this?
On Windows, the path to the executable is: C:\Program Files\Plex\Plex Media Server\Plex SQLite.exe (for 64-bit PMS)
Or: C:\Program Files (x86)\Plex\Plex Media Server\Plex SQLite.exe (for 32-bit PMS)
so I am trying this command line tool and I keep getting “Error: no such table: metadata_items” Is there something else I have to do? I’ve never used this tool before today so not sure if I need to point to the .db file or not
GRRRRR!!! Ok, this is freaking terrible!! How do I open the freaking database??? The data is in a completely different directory, the file path has spaces on it… which Plex creates it that way, and command line doesn’t allow me to open this file from a different directory that has spaces…
Does anyone know how to get around this?!?! Why in Gods name cannot I not just use DB Browser for SQL lite in the data folder??
That appears to work, thank you. Now when I run this, I get a different prompt, is there something wrong with this? the …> I don’t know what that means
sqlite> update metadata_items set added_at = created_at where added_at = 910692730085 AND and metadata_type = 4
…>
…>