> 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

_______________________________________________
Koha mailing list  http://koha-community.org
[email protected]
http://lists.katipo.co.nz/mailman/listinfo/koha

Reply via email to