[BVAVSA]
OnlyIncludeLocations=16mm film,CD-ROM,DVD,DVD magazine,Sound Effect\, ExCat CD\,CD accompanying book,sound recording,Special Collections - AV - Library Use Only,Video
+
+[BCREK]
+;fixme
+ExcludeentireOrg=true
OnlyIncludeLocations=Magazine,DVD magazine,Special Collections - Magazines - Library Use Only
[BCREK]
-OnlyIncludeCircModifiers=magzine
+ExcludeEntireOrg=true
+;OnlyIncludeCircModifiers=magzine
--- /dev/null
+#!/bin/bash
+
+cd /srv/openils/bin
+
+DATABASE=evergreen
+FULL_QUERY="select id from biblio.record_entry where not deleted"
+POSTSEC_QUERY="select record FROM asset.call_number where owning_lib = 610 and not deleted and label != '##URI##';"
+#POSTSEC_QUERY="select record FROM asset.call_number where owning_lib in (select id from actor.org_unit_descendants(27)) and not deleted and label != '##URI##';"
+
+# full dump for outlook public libraries
+psql -A -t -c "$FULL_QUERY" $DATABASE\
+|./marc_export_custom --config /srv/openils/conf/opensrf_core.xml --items --location SITKA --collapse_to_depth 2 --force901 --exclusion_ini sitka_full_outlook.ini
+
+# media for BC ELN post-secondary libraries
+psql -A -t -c "$POSTSEC_QUERY" $DATABASE\
+|./marc_export_custom --config /srv/openils/conf/opensrf_core.xml --items --location SITKA --collapse_to_depth 2 --force901 --exclusion_ini bc_eln_media.ini
+~
+# serials for BC ELN post-secondary libraries
+psql -A -t -c "$POSTSEC_QUERY" $DATABASE\
+|./marc_export_custom --config /srv/openils/conf/opensrf_core.xml --items --location SITKA --collapse_to_depth 2 --force901 --exclusion_ini bc_eln_serials.ini
DATABASE=evergreen
FULL_QUERY="select id from biblio.record_entry where not deleted"
-POSTSEC_QUERY="select * FROM asset.call_number where owning_lib in (select id from actor.org_unit_descendants(27)) and not deleted and label != '##URI##';"
+POSTSEC_QUERY="select record FROM asset.call_number where owning_lib in (select id from actor.org_unit_descendants(27)) and not deleted and label != '##URI##';"
# full dump for outlook public libraries
psql -A -t -c "$FULL_QUERY" $DATABASE\