[Koha] Report Help

Frédéric Demians frederic at tamil.fr
Sat Jul 2 04:23:48 NZST 2011


 > I wrote this report to get all subject headings in a Koha system that
 > start with key phrases:

You can get your headings with a Perl script.

You can also export all your biblio records in ISO2709 and then combine
various standard Linux commands to extract and select your headings.

For example, on Linux Shell:

   mysql my_koha_db_name -e 'SELECT marc FROM biblioitems' | \
   yaz-marcdump | grep ^610 | sort | uniq

After grep ^610, you can add a text filter to extract just $a without
field name and other subfields.

-- 
Frédéric DEMIANS
http://www.tamil.fr/u/fdemians.html



More information about the Koha mailing list