Exported list of journals
An internal researcher from my library (the physical entity through which I can do things like interlibrary loans; not the zotero "My Library") was doing the annual inquiry into what journals our department uses. I couldn't find an easy way to directly access this list via zotero, but obviously the data was in the zotero database.
Since I suspect I'm not the only person who might have need for such functionality, here's what I ended up doing (note: I'm on OS X, but I don't think there would be many non-obvious changes.):
Since I suspect I'm not the only person who might have need for such functionality, here's what I ended up doing (note: I'm on OS X, but I don't think there would be many non-obvious changes.):
- identified the location of my zotero.sqlite file
- duplicated it (I didn't want to accidentally corrupt it) as zotero.sqlite.manual.bak (via Finder's duplicate and rename functionality)
- downloaded Mike Titlebaum's SQLite Database Administrator Tool (http://saxmike.com/MySoftware/MySoftware.asp?Menu=MYSOFTWARE)
- opened Mike's SQLite Db Admin tool and connected to the zotero.sqlite.manual.bak file
- created a "New SQL"
- ran the following SQL statement:
SELECT DISTINCT itemDataValues.value
FROM itemDataValues
JOIN itemData on itemDataValues.valueID = itemData.valueID
WHERE itemData.fieldID = 12 - "Export"ed the results which I could then email to my library researcher.
I've generated "tags used list" as I needed it...
SELECT DISTINCT tags.name
FROM tags</code
(With SQLite Manager)