From 7f2f4c09ae4a6c52230b461bf6cd43b7541fdff7 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Thu, 16 Jul 2015 15:57:23 -0400 Subject: [PATCH] LP#1521693 Sqitch instances for schema and concerto data * Creates a new sqitch instance under Open-ILS/src/sql/schema/ for deploying the base Evergreen schema. * Creates a new sqitch instance under Open-ILS/src/sql/test-data for deploying the sample (concerto) data set. All SQL changes up through 0980 are represented in the base schema file. Any schema changes beyond that are represented with individual deployment files, pending the next reification. Signed-off-by: Bill Erickson --- Open-ILS/src/sql/schema/README | 19 + Open-ILS/src/sql/schema/deploy/data.MODS-xsl.sql | 2146 + Open-ILS/src/sql/schema/deploy/data.MODS3-xsl.sql | 2867 + Open-ILS/src/sql/schema/deploy/data.MODS32-xsl.sql | 3323 ++ Open-ILS/src/sql/schema/deploy/data.MODS33-xsl.sql | 3491 ++ Open-ILS/src/sql/schema/deploy/data.base.sql | 16460 ++++++ .../src/sql/schema/deploy/data.marc21expand880.sql | 66 + Open-ILS/src/sql/schema/deploy/data.tag-tables.sql | 21169 +++++++ Open-ILS/src/sql/schema/deploy/schema.base.sql | 57144 +++++++++++++++++++ Open-ILS/src/sql/schema/revert/README.revert | 5 + Open-ILS/src/sql/schema/sqitch.conf | 14 + Open-ILS/src/sql/schema/sqitch.plan | 12 + .../schema/tools/create_database_extensions.sql | 22 + Open-ILS/src/sql/schema/verify/README.verify | 5 + Open-ILS/src/sql/test-data/deploy/acq.sql | 119 + .../src/sql/test-data/deploy/assets_concerto.sql | 141 + .../src/sql/test-data/deploy/assets_extras.sql | 167 + Open-ILS/src/sql/test-data/deploy/assets_fic.sql | 28 + Open-ILS/src/sql/test-data/deploy/assets_fre.sql | 26 + .../sql/test-data/deploy/assets_graphic_880.sql | 19 + Open-ILS/src/sql/test-data/deploy/assets_rda.sql | 28 + .../src/sql/test-data/deploy/auth_concerto.sql | 76 + .../src/sql/test-data/deploy/bibs_concerto.sql | 104 + Open-ILS/src/sql/test-data/deploy/bibs_fic.sql | 22 + Open-ILS/src/sql/test-data/deploy/bibs_fre.sql | 105 + .../src/sql/test-data/deploy/bibs_graphic_880.sql | 11 + Open-ILS/src/sql/test-data/deploy/bibs_insert.sql | 10 + Open-ILS/src/sql/test-data/deploy/bibs_maps.sql | 8 + Open-ILS/src/sql/test-data/deploy/bibs_rda.sql | 14 + Open-ILS/src/sql/test-data/deploy/env_create.sql | 218 + Open-ILS/src/sql/test-data/deploy/env_destroy.sql | 14 + Open-ILS/src/sql/test-data/deploy/libraries.sql | 68 + .../deploy/neg_bal_custom_transactions.sql | 185 + Open-ILS/src/sql/test-data/deploy/transactions.sql | 141 + .../src/sql/test-data/deploy/users_patrons_100.sql | 2108 + .../src/sql/test-data/deploy/users_staff_134.sql | 3618 ++ Open-ILS/src/sql/test-data/revert/README.revert | 5 + Open-ILS/src/sql/test-data/sqitch.conf | 14 + Open-ILS/src/sql/test-data/sqitch.plan | 26 + Open-ILS/src/sql/test-data/verify/README.verify | 5 + Open-ILS/src/support-scripts/eg_db_config.in | 60 +- 41 files changed, 114055 insertions(+), 28 deletions(-) create mode 100644 Open-ILS/src/sql/schema/README create mode 100644 Open-ILS/src/sql/schema/deploy/data.MODS-xsl.sql create mode 100644 Open-ILS/src/sql/schema/deploy/data.MODS3-xsl.sql create mode 100644 Open-ILS/src/sql/schema/deploy/data.MODS32-xsl.sql create mode 100644 Open-ILS/src/sql/schema/deploy/data.MODS33-xsl.sql create mode 100644 Open-ILS/src/sql/schema/deploy/data.base.sql create mode 100644 Open-ILS/src/sql/schema/deploy/data.marc21expand880.sql create mode 100644 Open-ILS/src/sql/schema/deploy/data.tag-tables.sql create mode 100644 Open-ILS/src/sql/schema/deploy/schema.base.sql create mode 100644 Open-ILS/src/sql/schema/revert/README.revert create mode 100644 Open-ILS/src/sql/schema/sqitch.conf create mode 100644 Open-ILS/src/sql/schema/sqitch.plan create mode 100644 Open-ILS/src/sql/schema/tools/create_database_extensions.sql create mode 100644 Open-ILS/src/sql/schema/verify/README.verify create mode 100644 Open-ILS/src/sql/test-data/deploy/acq.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/assets_concerto.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/assets_extras.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/assets_fic.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/assets_fre.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/assets_graphic_880.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/assets_rda.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/auth_concerto.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/bibs_concerto.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/bibs_fic.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/bibs_fre.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/bibs_graphic_880.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/bibs_insert.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/bibs_maps.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/bibs_rda.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/env_create.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/env_destroy.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/libraries.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/neg_bal_custom_transactions.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/transactions.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/users_patrons_100.sql create mode 100644 Open-ILS/src/sql/test-data/deploy/users_staff_134.sql create mode 100644 Open-ILS/src/sql/test-data/revert/README.revert create mode 100644 Open-ILS/src/sql/test-data/sqitch.conf create mode 100644 Open-ILS/src/sql/test-data/sqitch.plan create mode 100644 Open-ILS/src/sql/test-data/verify/README.verify diff --git a/Open-ILS/src/sql/schema/README b/Open-ILS/src/sql/schema/README new file mode 100644 index 0000000000..04a5cc7179 --- /dev/null +++ b/Open-ILS/src/sql/schema/README @@ -0,0 +1,19 @@ += Sqitch and DB Management Notes + +== DEPLOY + +$ sqitch deploy + +== ADD A CHANGE + +$ sqitch add [data|schema]. \ + --requires -n 'Brief comment' + +== PERIODIC DATABASE SCHEMA REIFICATION + +1. Install fresh DB from latest code +2. Update the schema.base.sql file with the new schema via pg_dump export + +$ pg_dump -s -U evergreen evergreen > deploy/schema.base.sql + +3. 'git rm' all deploy/schema.* files except deploy/schema.base.sql diff --git a/Open-ILS/src/sql/schema/deploy/data.MODS-xsl.sql b/Open-ILS/src/sql/schema/deploy/data.MODS-xsl.sql new file mode 100644 index 0000000000..1c44345b05 --- /dev/null +++ b/Open-ILS/src/sql/schema/deploy/data.MODS-xsl.sql @@ -0,0 +1,2146 @@ +BEGIN; + +UPDATE config.xml_transform SET xslt=$$ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BK + SE + + + BK + MM + CF + MP + VM + MU + + + + + + + + + + + + + b + afghk + + + + + abfghk + + + + + + + + + + + <xsl:value-of select="substring($title,@ind2+1)"/> + + + + + <xsl:value-of select="$title"/> + + + + + + + + + b + b + afghk + + + + + + + + + + + + + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">ab</xsl:with-param> + </xsl:call-template> + + + + + + + + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">abh</xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">abfh</xsl:with-param> + </xsl:call-template> + + + + + + + + + <xsl:variable name="str"> + <xsl:for-each select="marc:subfield"> + <xsl:if test="(contains('adfkmor',@code) and (not(../marc:subfield[@code='n' or @code='p']) or (following-sibling::marc:subfield[@code='n' or @code='p'])))"> + <xsl:value-of select="text()"/> + <xsl:text> </xsl:text> + </xsl:if> + </xsl:for-each> + </xsl:variable> + <xsl:value-of select="substring($str,1,string-length($str)-1)"/> + + + + + + + + + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">ah</xsl:with-param> + </xsl:call-template> + + + + + + + + + + + creator + + + + + + + + + + + creator + + + + + + + + + + creator + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + personal + + + + + + + + + + + yes + + + yes + + + + text + cartographic + notated music + sound recording + still image + moving image + three dimensional object + software, multimedia + mixed material + + + + + globe + + + + remote sensing image + + + + + + + map + + + atlas + + + + + + + + + database + + + loose-leaf + + + series + + + newspaper + + + periodical + + + web site + + + + + + + + + abstract or summary + + + bibliography + + + catalog + + + dictionary + + + encyclopedia + + + handbook + + + legal article + + + index + + + discography + + + legislation + + + theses + + + survey of literature + + + review + + + programmed text + + + filmography + + + directory + + + statistics + + + technical report + + + legal case and case notes + + + law report or digest + + + treaty + + + + + + conference publication + + + + + + + + + numeric data + + + database + + + font + + + game + + + + + + + patent + + + festschrift + + + + + biography + + + + + + essay + + + drama + + + comic strip + + + fiction + + + humor, satire + + + letter + + + novel + + + short story + + + speech + + + + + + + + biography + + + conference publication + + + drama + + + essay + + + fiction + + + folktale + + + history + + + humor, satire + + + memoir + + + poetry + + + rehersal + + + reporting + + + sound + + + speech + + + + + + + + art original + + + kit + + + art reproduction + + + diorama + + + filmstrip + + + legal article + + + picture + + + graphic + + + technical drawing + + + motion picture + + + chart + + + flash card + + + microscope slide + + + model + + + realia + + + slide + + + transparency + + + videorecording + + + toy + + + + + + + + + + + abvxyz + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + monographic + continuing + + + + + + + + ab + + + + + + + + + + + + rfc3066 + + + iso639-2b + + + + + + + + + + + + + + + + + reformatted digital + + + + + + + + + + + + + + + + + + + +
braille
+
+ +
print
+
+ +
electronic
+
+ +
microfiche
+
+ +
microfilm
+
+
+ + + + + access + + + preservation + + + replacement + + + + + + + + + + + +
+
+ + + + + abce + + + +
+ + + + + + + + + + + + ab + + + + + + + + + agrt + + + + + + + + ab + + + + + + + + + adolescent + + + adult + + + general + + + juvenile + + + preschool + + + specialized + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + defg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ab + + + + + + + + abx + + + + + + + + ab + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ab + + + + + + + + + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">av</xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">av</xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + + + + + + + abcq + t + g + + + + + + + + + + + + + + + + + + + + + + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">dg</xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + c + t + dgn + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + + + + + + + aqdc + t + gn + + + + + + + + + + + + + + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">adfgklmorsv</xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + <xsl:value-of select="marc:subfield[@code='a']"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + + + + + + + + + abcq + t + g + + + + + + + + + + + + + + + + + + + + + + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">dg</xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + c + t + dgn + + + + + + + + + + + + + + + + + + + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + + + + + + + aqdc + t + gn + + + + + + + + + + + + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">adfgklmorsv</xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + issue number + matrix number + music plate + music publisher + videorecording identifier + + + + ab + + + + + + + + + ab + + + + + + + + + ab + + + + + + + + + + doi + uri + + + + + + + + + + + + + + + + + + abj + + + + + + + + abcd35 + + + + + + + + abcde35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + n + n + fghkdlmor + + + + + p + p + fghkdlmor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cdn + + + + + + + + + + + abcq + + + + + + + + + + + acdeq + + + + + + + + constituent + related + + + + + + + + + <xsl:value-of select="."/> + + + + + + + + + + <xsl:value-of select="."/> + + + + + + + + + + + + + + + + + + + + + + + + lcsh + lcshac + mesh + + nal + csh + rvm + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abcq + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cdnp + + + + + + + + + + + + + + + + abcdeqnp + + + + + + + + + + + + + + + + + + + + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">adfhklor</xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + abcd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + yes + + + + + + + + Arabic + Latin + Chinese, Japanese, Korean + Cyrillic + Hebrew + Greek + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .:,;/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+$$ WHERE name = 'mods'; + +COMMIT; diff --git a/Open-ILS/src/sql/schema/deploy/data.MODS3-xsl.sql b/Open-ILS/src/sql/schema/deploy/data.MODS3-xsl.sql new file mode 100644 index 0000000000..0616040ce6 --- /dev/null +++ b/Open-ILS/src/sql/schema/deploy/data.MODS3-xsl.sql @@ -0,0 +1,2867 @@ +BEGIN; + +UPDATE config.xml_transform SET xslt=$$ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BK + SE + + + BK + MM + CF + MP + VM + MU + + + + + + + + + + b + afghk + + + + + abfgk + + + + + + + + + + + + + + + + + + + <xsl:value-of select="substring($titleChop,@ind2+1)"/> + + + + + <xsl:value-of select="$titleChop"/> + + + + + + + + + b + b + afghk + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">a</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <!-- 1/04 removed $h, b --> + <xsl:with-param name="codes">a</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <!-- 1/04 removed $h, $b --> + <xsl:with-param name="codes">af</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + <xsl:variable name="str"> + <xsl:for-each select="marc:subfield"> + <xsl:if test="(contains('adfklmor',@code) and (not(../marc:subfield[@code='n' or @code='p']) or (following-sibling::marc:subfield[@code='n' or @code='p'])))"> + <xsl:value-of select="text()"/> + <xsl:text> </xsl:text> + </xsl:if> + </xsl:for-each> + </xsl:variable> + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="substring($str,1,string-length($str)-1)"/> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">ah</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + creator + + + + + + + + + + creator + + + + + + + + + + creator + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + personal + + + + + + + + + + + + yes + + + yes + + + text + cartographic + notated music + sound recording-nonmusical + sound recording-musical + still image + moving image + three dimensional object + software, multimedia + mixed material + + + + + globe + + + + remote sensing image + + + + + + + map + + + atlas + + + + + + + + + database + + + loose-leaf + + + series + + + newspaper + + + periodical + + + web site + + + + + + + + + abstract or summary + + + bibliography + + + catalog + + + dictionary + + + encyclopedia + + + handbook + + + legal article + + + index + + + discography + + + legislation + + + theses + + + survey of literature + + + review + + + programmed text + + + filmography + + + directory + + + statistics + + + technical report + + + legal case and case notes + + + law report or digest + + + treaty + + + + + + conference publication + + + + + + + + + numeric data + + + database + + + font + + + game + + + + + + + patent + + + festschrift + + + + + biography + + + + + + essay + + + drama + + + comic strip + + + fiction + + + humor, satire + + + letter + + + novel + + + short story + + + speech + + + + + + + + biography + + + conference publication + + + drama + + + essay + + + fiction + + + folktale + + + history + + + humor, satire + + + memoir + + + poetry + + + rehearsal + + + reporting + + + sound + + + speech + + + + + + + + art original + + + kit + + + art reproduction + + + diorama + + + filmstrip + + + legal article + + + picture + + + graphic + + + technical drawing + + + motion picture + + + chart + + + flash card + + + microscope slide + + + model + + + realia + + + slide + + + transparency + + + videorecording + + + toy + + + + + + + + + + + abvxyz + - + + + + + + + + + + + code + marccountry + + + + + + + + + code + iso3166 + + + + + + + + + text + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + :,;/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + monographic + continuing + + + + + + + + ab + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + reformatted digital + + + + + + + + + + + + + + + + + + + +
braille
+
+ +
print
+
+ +
electronic
+
+ +
microfiche
+
+ +
microfilm
+
+
+ + +
+ + + + + +
+
+ + +
+ + + + + +
+
+ +
+ + + + + +
+
+ +
+ + + + + +
+
+ +
+ + + + + +
+
+ +
+ + + + + +
+
+ +
+ + +
+ + + + + access + + + preservation + + + replacement + + + + + + + + + + + + + + abce + + + +
+ + + + + + + + + + + + ab + + + + + + + + + agrt + + + + + + + + ab + + + + + + + + + + adolescent + + + adult + + + general + + + juvenile + + + preschool + + + specialized + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + defg + + + + + + + + + + + + + marcgac + + + + + + iso3166 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ab + + + + + + + + abx + + + + + + + + ab + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ab + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">av</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">av</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + abcx3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + aq + t + g + + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">dg</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + c + t + dgn + + + + + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + aqdc + t + gn + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">adfgklmorsv</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="marc:subfield[@code='a']"/> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + aq + t + g + + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">dg</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + + c + t + dgn + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + aqdc + t + gn + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">adfgklmorsv</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + issue number + matrix number + music plate + music publisher + videorecording identifier + + + + + + ba + ab + + + + + + + + + + + ab + + + + + + + + + ab + + + + + + + + + doi + hdl + uri + + + + + + + + + + + + + + + + + y3z + + + + + + + + + + + + + + + + + + + + + + y3 + + + + + + + + + + + + + + abje + + + + + + + + + abcd35 + + + + + + + + abcde35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + n + n + fghkdlmor + + + + + p + p + fghkdlmor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + g + g + pst + + + + + p + p + fghkdlmor + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cdn + + + + + + + + + + + aq + + + + :,;/ + + + + + + + + + + + acdeq + + + + + + + constituent + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="."/> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="."/> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="."/> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="."/> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + code + marcgac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lcsh + lcshac + mesh + + nal + csh + rvm + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aq + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cdnp + + + + + + + + + + + + + + + + abcdeqnp + + + + + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">adfhklor</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + <xsl:call-template name="part"/> + + + + + + + + + + + + + + abcd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bc + + + + + + + + + + + + + + + + + + + + + + + yes + + + + + + + + + + + + + + + + + + + + + + Arabic + Latin + Chinese, Japanese, Korean + Cyrillic + Hebrew + Greek + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .:,;/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
$$ WHERE name = 'mods3'; + +COMMIT; diff --git a/Open-ILS/src/sql/schema/deploy/data.MODS32-xsl.sql b/Open-ILS/src/sql/schema/deploy/data.MODS32-xsl.sql new file mode 100644 index 0000000000..da7389dd78 --- /dev/null +++ b/Open-ILS/src/sql/schema/deploy/data.MODS32-xsl.sql @@ -0,0 +1,3323 @@ + +BEGIN; + +UPDATE config.xml_transform SET xslt=$$ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BK + SE + + + BK + MM + CF + MP + VM + MU + + + + + + + + + b + afgk + + + + + abfgk + + + + + + + + + + + + + + + + + + <xsl:value-of select="substring($titleChop,@ind2+1)"/> + + + + + <xsl:value-of select="$titleChop"/> + + + + + + + + + b + b + afgk + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">abfgk</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + abfgk + + + + + + + + + + + <xsl:value-of select="substring($titleBrowseChop,@ind2+1)"/> + + + + + <xsl:value-of select="$titleBrowseChop"/> + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">a</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + a + + + + + + + + + + + + + <xsl:value-of select="$titleChop" /> + + + + + + + + + + + + + + + + + + <xsl:value-of select="substring($titleChop,@ind2+1)"/> + + + + + <xsl:value-of select="$titleChop" /> + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <!-- 1/04 removed $h, $b --> + <xsl:with-param name="codes">af</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="$titleChop"/> + + + + + + + + + + + <xsl:value-of select="substring($titleChop,$nfi+1)"/> + + + + + <xsl:value-of select="$titleChop"/> + + + + + + + + + + + + ah + + + + + + + <xsl:value-of select="$titleChop" /> + + + + + + + + + + + <xsl:value-of select="substring($titleChop,@ind1+1)"/> + + + + + <xsl:value-of select="$titleChop" /> + + + + + + + + + + + + + creator + + + + + + + + + + creator + + + + + + + + + + creator + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + personal + + + + + + + + + + + yes + + + yes + + + text + cartographic + notated music + sound recording-nonmusical + sound recording-musical + still image + moving image + three dimensional object + software, multimedia + mixed material + + + + globe + + + remote sensing image + + + + + + map + + + atlas + + + + + + + + database + + + loose-leaf + + + series + + + newspaper + + + periodical + + + web site + + + + + + + + abstract or summary + + + bibliography + + + catalog + + + dictionary + + + encyclopedia + + + handbook + + + legal article + + + index + + + discography + + + legislation + + + theses + + + survey of literature + + + review + + + programmed text + + + filmography + + + directory + + + statistics + + + technical report + + + legal case and case notes + + + law report or digest + + + treaty + + + + + + conference publication + + + + + + + + numeric data + + + database + + + font + + + game + + + + + + patent + + + festschrift + + + + biography + + + + + essay + + + drama + + + comic strip + + + fiction + + + humor, satire + + + letter + + + novel + + + short story + + + speech + + + + + + + biography + + + conference publication + + + drama + + + essay + + + fiction + + + folktale + + + history + + + humor, satire + + + memoir + + + poetry + + + rehearsal + + + reporting + + + sound + + + speech + + + + + + + art original + + + kit + + + art reproduction + + + diorama + + + filmstrip + + + legal article + + + picture + + + graphic + + + technical drawing + + + motion picture + + + chart + + + flash card + + + microscope slide + + + model + + + realia + + + slide + + + transparency + + + videorecording + + + toy + + + + + + + + + + abvxyz + - + + + + + + + + + code + marccountry + + + + + + + + code + iso3166 + + + + + + + + text + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + :,;/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + monographic + continuing + + + + + + + ab + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + reformatted digital + + + digitized microfilm + + + digitized other analog + + + + + + + + + + + + + + + +
braille
+
+ +
print
+
+ +
electronic
+
+ +
microfiche
+
+ +
microfilm
+
+
+ + +
+ + + + + +
+
+ +
+ + + + + +
+
+ +
+ + + + + +
+
+ +
+ + + + + +
+
+ +
+ + + + + +
+
+ +
+ + + + + +
+
+ +
+ +
+
+ + + + access + + + preservation + + + replacement + + + + + +
chip cartridge
+
+ +
computer optical disc cartridge
+
+ +
magnetic disc
+
+ +
magneto-optical disc
+
+ +
optical disc
+
+ +
remote
+
+ +
tape cartridge
+
+ +
tape cassette
+
+ +
tape reel
+
+ + +
celestial globe
+
+ +
earth moon globe
+
+ +
planetary or lunar globe
+
+ +
terrestrial globe
+
+ + +
kit
+
+ + +
atlas
+
+ +
diagram
+
+ +
map
+
+ +
model
+
+ +
profile
+
+ +
remote-sensing image
+
+ +
section
+
+ +
view
+
+ + +
aperture card
+
+ +
microfiche
+
+ +
microfiche cassette
+
+ +
microfilm cartridge
+
+ +
microfilm cassette
+
+ +
microfilm reel
+
+ +
microopaque
+
+ + +
film cartridge
+
+ +
film cassette
+
+ +
film reel
+
+ + +
chart
+
+ +
collage
+
+ +
drawing
+
+ +
flash card
+
+ +
painting
+
+ +
photomechanical print
+
+ +
photonegative
+
+ +
photoprint
+
+ +
picture
+
+ +
print
+
+ +
technical drawing
+
+ + +
notated music
+
+ + +
filmslip
+
+ +
filmstrip cartridge
+
+ +
filmstrip roll
+
+ +
other filmstrip type
+
+ +
slide
+
+ +
transparency
+
+ +
remote-sensing image
+
+ +
cylinder
+
+ +
roll
+
+ +
sound cartridge
+
+ +
sound cassette
+
+ +
sound disc
+
+ +
sound-tape reel
+
+ +
sound-track film
+
+ +
wire recording
+
+ + +
braille
+
+ +
combination
+
+ +
moon
+
+ +
tactile, with no writing system
+
+ + +
braille
+
+ +
large print
+
+ +
regular print
+
+ +
text in looseleaf binder
+
+ + +
videocartridge
+
+ +
videocassette
+
+ +
videodisc
+
+ +
videoreel
+
+ + + + + + + + + + abce + + + +
+ + + + + + + + + + ab + + + + + + + + agrt + + + + + + + ab + + + + + + + + + adolescent + + + adult + + + general + + + juvenile + + + preschool + + + specialized + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + defg + + + + + + + + + + + + marcgac + + + + + + iso3166 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ab + + + + + + + abx + + + + + + + ab + + + + + + + + + + + + + + + + + + + + + + + + + + + + ab + + + + + + + + + + av + + + + + + + <xsl:value-of select="$titleChop" /> + + + + + + + + + + + <xsl:value-of select="substring($titleChop,@ind2+1)"/> + + + + + + <xsl:value-of select="$titleChop" /> + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">av</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + abcx3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + aq + t + g + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">dg</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + c + t + dgn + + + + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + aqdc + t + gn + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">adfgklmorsv</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="$titleChop" /> + + + + + + + + + + + <xsl:value-of select="substring($titleChop,@ind1+1)"/> + + + + + <xsl:value-of select="$titleChop" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + aq + t + g + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">dg</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + c + t + dgn + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + aqdc + t + gn + + + + + + + + + + + + + + adfgklmorsv + + + + + + + <xsl:value-of select="$titleChop" /> + + + + + + + + + + + <xsl:value-of select="substring($titleChop,@ind2+1)"/> + + + + + <xsl:value-of select="$titleChop" /> + + + + + + + + + + + + + + + + + + isbn + + + + + + + + + + isrc + + + + + + + + + + ismn + + + + + + + + + + sici + + + + ab + + + + + + issn + + + + + + + + lccn + + + + + + + + + + issue number + matrix number + music plate + music publisher + videorecording identifier + + + + + + + ba + ab + + + + + + + + + + ab + + + + + + + + doi + hdl + uri + + + + + + + + + + + + + + + + + y3z + + + + + + + + + + + + + + + + + + + + + y3 + + + + + + + z + + + + + + + + + + + + + + + + + + abje + + + + + + + + abcd35 + + + + + + + abcde35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + n + n + fgkdlmor + + + + + p + p + fgkdlmor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + g + g + pst + + + + + p + p + fgkdlmor + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cdn + + + + + + + + + + aq + + + + :,;/ + + + + + + + + + + acdeq + + + + + + constituent + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="."></xsl:value-of> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="."></xsl:value-of> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="."></xsl:value-of> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="."></xsl:value-of> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + code + marcgac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lcsh + lcshac + mesh + + nal + csh + rvm + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aq + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cdnp + + + + + + + + + + + + + + + + abcdeqnp + + + + + + + + + + + + + + + + + + + + + adfhklor + + + + + + + <xsl:value-of select="$titleChop" /> + + + + + + + + + + + <xsl:value-of select="substring($titleChop,@ind1+1)"/> + + + + + + <xsl:value-of select="$titleChop" /> + + + + + + + + + + + + + + + + + abcd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bc + + + + + + + + + + + + + + + + + + + + + + + + + + + yes + + + + + + + + + + + + + + + + + + + + + + + + + + + Arabic + Latin + Chinese, Japanese, Korean + Cyrillic + Hebrew + Greek + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + summary or subtitle + sung or spoken text + libretto + table of contents + accompanying material + translation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + summary or subtitle + sung or spoken text + libretto + table of contents + accompanying material + translation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .:,;/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
$$ WHERE name = 'mods32'; + +COMMIT; diff --git a/Open-ILS/src/sql/schema/deploy/data.MODS33-xsl.sql b/Open-ILS/src/sql/schema/deploy/data.MODS33-xsl.sql new file mode 100644 index 0000000000..3fc19c216e --- /dev/null +++ b/Open-ILS/src/sql/schema/deploy/data.MODS33-xsl.sql @@ -0,0 +1,3491 @@ +BEGIN; + +UPDATE config.xml_transform SET xslt=$$ + + + + !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ + + + + ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ + + + + !'()*-.0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz~ + + + 0123456789ABCDEF + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BK + SE + + + BK + MM + CF + MP + VM + MU + + + + + + + + + b + afgk + + + + + abfgk + + + + + + + + + + + + + + + + + + <xsl:value-of select="substring($titleChop,@ind2+1)"/> + + + + + <xsl:value-of select="$titleChop"/> + + + + + + + + + b + b + afgk + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">a</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <!-- 1/04 removed $h, b --> + <xsl:with-param name="codes">a</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <!-- 1/04 removed $h, $b --> + <xsl:with-param name="codes">af</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + <xsl:call-template name="uri"/> + + <xsl:variable name="str"> + <xsl:for-each select="marc:subfield"> + <xsl:if + test="(contains('adfklmors',@code) and (not(../marc:subfield[@code='n' or @code='p']) or (following-sibling::marc:subfield[@code='n' or @code='p'])))"> + <xsl:value-of select="text()"/> + <xsl:text> </xsl:text> + </xsl:if> + </xsl:for-each> + </xsl:variable> + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="substring($str,1,string-length($str)-1)"/> + </xsl:with-param> + </xsl:call-template> + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">ah</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + creator + + + + + + + + + + + + creator + + + + + + + + + + + + creator + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + personal + + + + + + + + + + + yes + + + yes + + + text + cartographic + notated music + sound recording-nonmusical + sound recording-musical + still image + moving image + three dimensional object + software, multimedia + mixed material + + + + globe + + + remote-sensing image + + + + + + map + + + atlas + + + + + + + + database + + + loose-leaf + + + series + + + newspaper + + + periodical + + + web site + + + + + + + + abstract or summary + + + bibliography + + + catalog + + + dictionary + + + encyclopedia + + + handbook + + + legal article + + + index + + + discography + + + legislation + + + theses + + + survey of literature + + + review + + + programmed text + + + filmography + + + directory + + + statistics + + + technical report + + + legal case and case notes + + + law report or digest + + + treaty + + + + + + conference publication + + + + + + + + numeric data + + + database + + + font + + + game + + + + + + patent + + + offprint + + + festschrift + + + + biography + + + + + essay + + + drama + + + comic strip + + + fiction + + + humor, satire + + + letter + + + novel + + + short story + + + speech + + + + + + + biography + + + conference publication + + + drama + + + essay + + + fiction + + + folktale + + + history + + + humor, satire + + + memoir + + + poetry + + + rehearsal + + + reporting + + + sound + + + speech + + + + + + + art original + + + kit + + + art reproduction + + + diorama + + + filmstrip + + + legal article + + + picture + + + graphic + + + technical drawing + + + motion picture + + + chart + + + flash card + + + microscope slide + + + model + + + realia + + + slide + + + transparency + + + videorecording + + + toy + + + + + + + + + + + + + abcdef + - + + + + + + + + + + abvxyz + - + + + + + + + + + code + marccountry + + + + + + + + code + iso3166 + + + + + + + + text + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + :,;/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + monographic + continuing + + + + + + + ab + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + reformatted digital + + + digitized microfilm + + + digitized other analog + + + + + + + + + + + + + + + +
braille
+
+ +
print
+
+ +
electronic
+
+ +
microfiche
+
+ +
microfilm
+
+
+ + +
+ + + + + +
+
+ +
+ + + + + +
+
+ +
+ + + + + +
+
+ +
+ + + + + +
+
+ +
+ + + + + +
+
+ +
+ + + + + +
+
+ +
+ + +
+ + + + access + + + preservation + + + replacement + + + + + +
chip cartridge
+
+ +
computer optical disc cartridge
+
+ +
magnetic disc
+
+ +
magneto-optical disc
+
+ +
optical disc
+
+ +
remote
+
+ +
tape cartridge
+
+ +
tape cassette
+
+ +
tape reel
+
+ + +
celestial globe
+
+ +
earth moon globe
+
+ +
planetary or lunar globe
+
+ +
terrestrial globe
+
+ + +
kit
+
+ + +
atlas
+
+ +
diagram
+
+ +
map
+
+ +
model
+
+ +
profile
+
+ +
remote-sensing image
+
+ +
section
+
+ +
view
+
+ + +
aperture card
+
+ +
microfiche
+
+ +
microfiche cassette
+
+ +
microfilm cartridge
+
+ +
microfilm cassette
+
+ +
microfilm reel
+
+ +
microopaque
+
+ + +
film cartridge
+
+ +
film cassette
+
+ +
film reel
+
+ + +
chart
+
+ +
collage
+
+ +
drawing
+
+ +
flash card
+
+ +
painting
+
+ +
photomechanical print
+
+ +
photonegative
+
+ +
photoprint
+
+ +
picture
+
+ +
print
+
+ +
technical drawing
+
+ + +
notated music
+
+ + +
filmslip
+
+ +
filmstrip cartridge
+
+ +
filmstrip roll
+
+ +
other filmstrip type
+
+ +
slide
+
+ +
transparency
+
+ +
remote-sensing image
+
+ +
cylinder
+
+ +
roll
+
+ +
sound cartridge
+
+ +
sound cassette
+
+ +
sound disc
+
+ +
sound-tape reel
+
+ +
sound-track film
+
+ +
wire recording
+
+ + +
braille
+
+ +
combination
+
+ +
moon
+
+ +
tactile, with no writing system
+
+ + +
braille
+
+ +
large print
+
+ +
regular print
+
+ +
text in looseleaf binder
+
+ + +
videocartridge
+
+ +
videocassette
+
+ +
videodisc
+
+ +
videoreel
+
+ + + + + + + + + + abce + + + +
+ + + + + + + + + + ab + + + + + + + + agrt + + + + + + + ab + + + + + + + + + adolescent + + + adult + + + general + + + juvenile + + + preschool + + + specialized + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + defg + + + + + + + + + + + + marcgac + + + + + + iso3166 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ab + + + + + + + abx + + + + + + + ab + + + + + + + + + + + + + + + + + + + + + + + + + + + + ab + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">av</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">av</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + abcx3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + aq + t + g + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">dg</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + c + t + dgn + + + + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + aqdc + t + gn + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">adfgklmorsv</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="marc:subfield[@code='a']"/> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + aq + t + g + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklmorsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">dg</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + c + t + dgn + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="specialSubfieldSelect"> + <xsl:with-param name="anyCodes">tfklsv</xsl:with-param> + <xsl:with-param name="axis">t</xsl:with-param> + <xsl:with-param name="afterCodes">g</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + aqdc + t + gn + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">adfgklmorsv</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + isbn + + + + + + + + + + isrc + + + + + + + + + + ismn + + + + + + + + + + sici + + + + ab + + + + + + + issn + + + + + + + + issn-l + + + + + + + + + + + + lccn + + + + + + + + + + issue number + matrix number + music plate + music publisher + videorecording identifier + + + + + + + + ba + ab + + + + + + + + + + + ab + + + + + + + + doi + hdl + uri + + + + + + + + + + + + + + + + + y3z + + + + + + + + + + + + + + + + + + + + + + + + + y3 + + + + + + + z + + + + + + + + + + + + + + + + y3 + + + + + + + z + + + + + + + + + + + + + + + + + + abe + + + + + + + + + u + + + + + + + + hijklmt + + + + + + + + + + abcd35 + + + + + + + abcde35 + + + + + + + + + + aacr2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + n + n + fgkdlmor + + + + + p + p + fgkdlmor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + g + g + pst + + + + + p + p + fgkdlmor + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cdn + + + + + + + + + + aq + + + + :,;/ + + + + + + + + + + acdeq + + + + + + constituent + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="."/> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="."/> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="."/> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:value-of select="."/> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + code + marcgac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lcsh + lcshac + mesh + + nal + csh + rvm + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aq + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cdnp + + + + + + + + + + + + + + + abcdeqnp + + + + + + + + + + + + + + + + + + + <xsl:call-template name="chopPunctuation"> + <xsl:with-param name="chopString"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">adfhklor</xsl:with-param> + </xsl:call-template> + </xsl:with-param> + </xsl:call-template> + + + + + + + + + + + + + + + + + + + + + + abcd + + + + + + + + + + + + + + + + abcd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bc + + + + + + + + + + + + + + + + + + + + + + + + + + + yes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Arabic + Latin + Chinese, Japanese, Korean + Cyrillic + Hebrew + Greek + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + summary or subtitle + sung or spoken text + libretto + table of contents + accompanying material + translation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + summary or subtitle + sung or spoken text + libretto + table of contents + accompanying material + translation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abcdefghijklmnopqrstuvwxyz + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .:,;/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .:,;/] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warning: string contains a character + that is out of range! Substituting "?". + 63 + + + + + + + + + + + + + + + + +
$$ WHERE name = 'mods33'; + +COMMIT; diff --git a/Open-ILS/src/sql/schema/deploy/data.base.sql b/Open-ILS/src/sql/schema/deploy/data.base.sql new file mode 100644 index 0000000000..10178d980e --- /dev/null +++ b/Open-ILS/src/sql/schema/deploy/data.base.sql @@ -0,0 +1,16460 @@ +-- Deploy evergreen:base-data-2.10 to pg + +BEGIN; + +INSERT INTO config.biblio_fingerprint (name, xpath, format) + VALUES ( + 'Title', + '//marc:datafield[@tag="700"]/marc:subfield[@code="t"]|' || + '//marc:datafield[@tag="240"]/marc:subfield[@code="a"]|' || + '//marc:datafield[@tag="242"]/marc:subfield[@code="a"]|' || + '//marc:datafield[@tag="246"]/marc:subfield[@code="a"]|' || + '//marc:datafield[@tag="245"]/marc:subfield[@code="a"]', + 'marcxml' + ); + +INSERT INTO config.biblio_fingerprint (name, xpath, format, first_word) + VALUES ( + 'Author', + '//marc:datafield[@tag="700" and ./*[@code="t"]]/marc:subfield[@code="a"]|' + '//marc:datafield[@tag="100"]/marc:subfield[@code="a"]|' + '//marc:datafield[@tag="110"]/marc:subfield[@code="a"]|' + '//marc:datafield[@tag="111"]/marc:subfield[@code="a"]|' + '//marc:datafield[@tag="260"]/marc:subfield[@code="b"]', + 'marcxml', + TRUE + ); + + +INSERT INTO config.internal_flag (name) VALUES ('ingest.metarecord_mapping.skip_on_insert'); +INSERT INTO config.internal_flag (name) VALUES ('ingest.metarecord_mapping.skip_on_update'); +INSERT INTO config.internal_flag (name) VALUES ('ingest.reingest.force_on_same_marc'); +INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_located_uri'); +INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_full_rec'); +INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_rec_descriptor'); +INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_field_entry'); +INSERT INTO config.internal_flag (name) VALUES ('ingest.assume_inserts_only'); +INSERT INTO config.internal_flag (name) VALUES ('ingest.skip_browse_indexing'); +INSERT INTO config.internal_flag (name) VALUES ('ingest.skip_search_indexing'); +INSERT INTO config.internal_flag (name) VALUES ('ingest.skip_facet_indexing'); +INSERT INTO config.internal_flag (name) VALUES ('serial.rematerialize_on_same_holding_code'); +INSERT INTO config.internal_flag (name) VALUES ('ingest.metarecord_mapping.preserve_on_delete'); + + +INSERT INTO asset.call_number_class (name, normalizer, field) VALUES + ('Generic', 'asset.label_normalizer_generic', '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'), + ('Dewey (DDC)', 'asset.label_normalizer_dewey', '080ab,082ab,092abef'), + ('Library of Congress (LC)', 'asset.label_normalizer_lc', '050ab,055ab,090abef') +; + +INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('title','Title of work','//*[@tag="245"]/*[contains("abcmnopr",@code)]'); +INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('author','Author of work','//*[@tag="100" or @tag="110" or @tag="113"]/*[contains("ad",@code)]'); +INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('language','Language of work','//*[@tag="240"]/*[@code="l"][1]'); +INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('pagination','Pagination','//*[@tag="300"]/*[@code="a"][1]'); +INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath, remove ) VALUES ('isbn','ISBN','//*[@tag="020"]/*[@code="a"]', $r$(?:-|\s.+$)$r$); +INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath, remove ) VALUES ('issn','ISSN','//*[@tag="022"]/*[@code="a"]', $r$(?:-|\s.+$)$r$); +INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath, remove ) VALUES ('upc', 'UPC', '//*[@tag="024" and @ind1="1"]/*[@code="a"]', $r$(?:-|\s.+$)$r$); +INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('price','Price','//*[@tag="020" or @tag="022"]/*[@code="c"][1]'); +INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('identifier','Identifier','//*[@tag="001"]'); +INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('publisher','Publisher','//*[@tag="260"]/*[@code="b"][1]'); +INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('pubdate','Publication Date','//*[@tag="260"]/*[@code="c"][1]'); +INSERT INTO acq.lineitem_marc_attr_definition ( code, description, xpath ) VALUES ('edition','Edition','//*[@tag="250"]/*[@code="a"][1]'); + +INSERT INTO acq.lineitem_local_attr_definition ( code, description ) VALUES ('estimated_price', 'Estimated Price'); + +INSERT INTO acq.fiscal_calendar (name) VALUES ('Default'); + + + +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('checkout','circ','Item checked out to user'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('checkin','circ','Item checked in'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('lost','circ','Circulating Item marked Lost'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('lost.found','circ','Lost Circulating Item checked in'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('lost.auto','circ','Circulating Item automatically marked lost'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('claims_returned','circ','Circulating Item marked Claims Returned'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('claims_returned.found','circ','Claims Returned Circulating Item is checked in'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('missing','acp','Item marked Missing'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('missing.found','acp','Missing Item checked in'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('transit.start','acp','An Item is placed into transit'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('transit.finish','acp','An Item is received from a transit'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('hold_request.success','ahr','A hold is successfully placed'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('hold_request.failure','ahr','A hold is attempted but not successfully placed'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('hold.capture','ahr','A targeted Item is captured for a hold'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('hold.available','ahr','A held item is ready for pickup'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('hold_transit.start','ahtc','A hold-captured Item is placed into transit'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('hold_transit.finish','ahtc','A hold-captured Item is received from a transit'); +INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES ('checkout.due','circ','Checked out Item is Due',TRUE); +INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES ('penalty.PATRON_EXCEEDS_FINES','ausp','Patron has exceeded allowed fines',TRUE); +INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES ('penalty.PATRON_EXCEEDS_OVERDUE_COUNT','ausp','Patron has exceeded allowed overdue count',TRUE); +INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES ('penalty.PATRON_EXCEEDS_CHECKOUT_COUNT','ausp','Patron has exceeded allowed checkout count',TRUE); +INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES ('penalty.PATRON_EXCEEDS_COLLECTIONS_WARNING','ausp','Patron has exceeded maximum fine amount for collections department warning',TRUE); +INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES ('acqpo.activated','acqpo','Purchase order was activated',FALSE); +INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES ('format.po.html','acqpo','Formats a Purchase Order as an HTML document',TRUE); +INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES ('format.po.pdf','acqpo','Formats a Purchase Order as a PDF document',TRUE); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('damaged','acp','Item marked damaged'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('checkout.damaged','circ','A circulating item is marked damaged and the patron is fined'); +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('renewal','circ','Item renewed to user'); + + +INSERT INTO action_trigger.collector (module,description) VALUES ('fourty_two','Returns the answer to life, the universe and everything'); + +INSERT INTO action_trigger.validator (module,description) VALUES ('fourty_two','Returns the answer to life, the universe and everything'); +INSERT INTO action_trigger.validator (module,description) VALUES ('NOOP_True','Always returns true -- validation always passes'); +INSERT INTO action_trigger.validator (module,description) VALUES ('NOOP_False','Always returns false -- validation always fails'); +INSERT INTO action_trigger.validator (module,description) VALUES ('CircIsOpen','Check that the circulation is still open'); +INSERT INTO action_trigger.validator (module,description) VALUES ('HoldIsAvailable','Check that an item is on the hold shelf'); +INSERT INTO action_trigger.validator (module,description) VALUES ('CircIsOverdue','Check that the circulation is overdue'); +INSERT INTO action_trigger.validator (module,description) VALUES ('MaxPassiveDelayAge','Check that the event is not too far past the delay_field time -- requires a max_delay_age interval parameter'); +INSERT INTO action_trigger.validator (module,description) VALUES ('MinPassiveTargetAge','Check that the target is old enough to be used by this event -- requires a min_target_age interval parameter, and accepts an optional target_age_field to specify what time to use for offsetting'); + +INSERT INTO action_trigger.reactor (module,description) VALUES +( 'fourty_two', + oils_i18n_gettext( + 'fourty_two', + 'Returns the answer to life, the universe and everything', + 'atreact', + 'description' + ) +); +INSERT INTO action_trigger.reactor (module,description) VALUES +( 'NOOP_True', + oils_i18n_gettext( + 'NOOP_True', + 'Always returns true -- reaction always passes', + 'atreact', + 'description' + ) +); +INSERT INTO action_trigger.reactor (module,description) VALUES +( 'NOOP_False', + oils_i18n_gettext( + 'NOOP_False', + 'Always returns false -- reaction always fails', + 'atreact', + 'description' + ) +); +INSERT INTO action_trigger.reactor (module,description) VALUES +( 'SendEmail', + oils_i18n_gettext( + 'SendEmail', + 'Send an email based on a user-defined template', + 'atreact', + 'description' + ) +); + +-- TODO: build a PDF generator +--INSERT INTO action_trigger.reactor (module,description) VALUES +--( 'GenerateBatchOverduePDF', +-- oils_i18n_gettext( +-- 'GenerateBatchOverduePDF', +-- 'Output a batch PDF of overdue notices for printing', +-- 'atreact', +-- 'description' +-- ) +--); + +INSERT INTO action_trigger.reactor (module,description) VALUES +( 'MarkItemLost', + oils_i18n_gettext( + 'MarkItemLost', + 'Marks a circulation and associated item as lost', + 'atreact', + 'description' + ) +); +INSERT INTO action_trigger.reactor (module,description) VALUES +( 'ApplyCircFee', + oils_i18n_gettext( + 'ApplyCircFee', + 'Applies a billing with a pre-defined amount to a circulation', + 'atreact', + 'description' + ) +); +INSERT INTO action_trigger.reactor (module,description) VALUES +( 'ProcessTemplate', + oils_i18n_gettext( + 'ProcessTemplate', + 'Processes the configured template', + 'atreact', + 'description' + ) +); + +INSERT INTO action_trigger.cleanup (module,description) VALUES ('fourty_two','Returns the answer to life, the universe and everything'); +INSERT INTO action_trigger.cleanup (module,description) VALUES ('NOOP_True','Always returns true -- cleanup always passes'); +INSERT INTO action_trigger.cleanup (module,description) VALUES ('NOOP_False','Always returns false -- cleanup always fails'); +INSERT INTO action_trigger.cleanup (module,description) VALUES ('ClearAllPending','Remove all future, pending notifications for this target'); + +--002.schema.config.sql: +INSERT INTO config.bib_source (id, quality, source, transcendant, can_have_copies) VALUES + (1, 90, oils_i18n_gettext(1, 'oclc', 'cbs', 'source'), FALSE, TRUE); +INSERT INTO config.bib_source (id, quality, source, transcendant, can_have_copies) VALUES + (2, 10, oils_i18n_gettext(2, 'System Local', 'cbs', 'source'), FALSE, TRUE); +INSERT INTO config.bib_source (id, quality, source, transcendant, can_have_copies) VALUES + (3, 1, oils_i18n_gettext(3, 'Project Gutenberg', 'cbs', 'source'), TRUE, TRUE); +SELECT SETVAL('config.bib_source_id_seq'::TEXT, 100); + +INSERT INTO biblio.peer_type (id,name) VALUES + (1,oils_i18n_gettext(1,'Bound Volume','bpt','name')), + (2,oils_i18n_gettext(2,'Bilingual','bpt','name')), + (3,oils_i18n_gettext(3,'Back-to-back','bpt','name')), + (4,oils_i18n_gettext(4,'Set','bpt','name')), + (5,oils_i18n_gettext(5,'e-Reader Preload','bpt','name')); +SELECT SETVAL('biblio.peer_type_id_seq'::TEXT, 100); + +INSERT INTO config.standing (id, value) VALUES (1, oils_i18n_gettext(1, 'Good', 'cst', 'value')); +INSERT INTO config.standing (id, value) VALUES (2, oils_i18n_gettext(2, 'Barred', 'cst', 'value')); +SELECT SETVAL('config.standing_id_seq'::TEXT, 100); + +INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) + VALUES (1,'PATRON_EXCEEDS_FINES',oils_i18n_gettext(1, 'Patron exceeds fine threshold', 'csp', 'label'),'CIRC|FULFILL|HOLD|CAPTURE|RENEW', TRUE); +INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) + VALUES (2,'PATRON_EXCEEDS_OVERDUE_COUNT',oils_i18n_gettext(2, 'Patron exceeds max overdue item threshold', 'csp', 'label'),'CIRC|FULFILL|HOLD|CAPTURE|RENEW', TRUE); +INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) + VALUES (3,'PATRON_EXCEEDS_CHECKOUT_COUNT',oils_i18n_gettext(3, 'Patron exceeds max checked out item threshold', 'csp', 'label'),'CIRC|FULFILL', TRUE); +INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) + VALUES (4,'PATRON_EXCEEDS_COLLECTIONS_WARNING',oils_i18n_gettext(4, 'Patron exceeds pre-collections warning fine threshold', 'csp', 'label'),'CIRC|FULFILL|HOLD|CAPTURE|RENEW', TRUE); +INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) + VALUES (5,'PATRON_EXCEEDS_LOST_COUNT',oils_i18n_gettext(5, 'Patron exceeds max lost item threshold', 'csp', 'label'),'CIRC|FULFILL|HOLD|CAPTURE|RENEW', TRUE); + +INSERT INTO config.standing_penalty (id,name,label,staff_alert) VALUES (20,'ALERT_NOTE',oils_i18n_gettext(20, 'Alerting Note, no blocks', 'csp', 'label'),TRUE); +INSERT INTO config.standing_penalty (id,name,label) VALUES (21,'SILENT_NOTE',oils_i18n_gettext(21, 'Note, no blocks', 'csp', 'label')); +INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) VALUES (22,'STAFF_C',oils_i18n_gettext(22, 'Alerting block on Circ', 'csp', 'label'),'CIRC', TRUE); +INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) VALUES (23,'STAFF_CH',oils_i18n_gettext(23, 'Alerting block on Circ and Hold', 'csp', 'label'),'CIRC|HOLD', TRUE); +INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) VALUES (24,'STAFF_CR',oils_i18n_gettext(24, 'Alerting block on Circ and Renew', 'csp', 'label'),'CIRC|RENEW', TRUE); +INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) VALUES (25,'STAFF_CHR',oils_i18n_gettext(25, 'Alerting block on Circ, Hold and Renew', 'csp', 'label'),'CIRC|HOLD|RENEW', TRUE); +INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) VALUES (26,'STAFF_HR',oils_i18n_gettext(26, 'Alerting block on Hold and Renew', 'csp', 'label'),'HOLD|RENEW', TRUE); +INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) VALUES (27,'STAFF_H',oils_i18n_gettext(27, 'Alerting block on Hold', 'csp', 'label'),'HOLD', TRUE); +INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) VALUES (28,'STAFF_R',oils_i18n_gettext(28, 'Alerting block on Renew', 'csp', 'label'),'RENEW', TRUE); +INSERT INTO config.standing_penalty (id,name,label) VALUES (29,'INVALID_PATRON_ADDRESS',oils_i18n_gettext(29, 'Patron has an invalid address', 'csp', 'label')); +INSERT INTO config.standing_penalty (id,name,label) VALUES (30,'PATRON_IN_COLLECTIONS',oils_i18n_gettext(30, 'Patron has been referred to a collections agency', 'csp', 'label')); +INSERT INTO config.standing_penalty (id, name, label, staff_alert, org_depth) VALUES + ( + 31, + 'INVALID_PATRON_EMAIL_ADDRESS', + oils_i18n_gettext( + 31, + 'Patron had an invalid email address', + 'csp', + 'label' + ), + TRUE, + 0 + ), + ( + 32, + 'INVALID_PATRON_DAY_PHONE', + oils_i18n_gettext( + 32, + 'Patron had an invalid daytime phone number', + 'csp', + 'label' + ), + TRUE, + 0 + ), + ( + 33, + 'INVALID_PATRON_EVENING_PHONE', + oils_i18n_gettext( + 33, + 'Patron had an invalid evening phone number', + 'csp', + 'label' + ), + TRUE, + 0 + ), + ( + 34, + 'INVALID_PATRON_OTHER_PHONE', + oils_i18n_gettext( + 34, + 'Patron had an invalid other phone number', + 'csp', + 'label' + ), + TRUE, + 0 + ); + + +SELECT SETVAL('config.standing_penalty_id_seq', 100); + +INSERT INTO config.metabib_class ( name, label ) VALUES ( 'identifier', oils_i18n_gettext('identifier', 'Identifier', 'cmc', 'label') ); +INSERT INTO config.metabib_class ( name, label ) VALUES ( 'keyword', oils_i18n_gettext('keyword', 'Keyword', 'cmc', 'label') ); +INSERT INTO config.metabib_class ( name, label ) VALUES ( 'title', oils_i18n_gettext('title', 'Title', 'cmc', 'label') ); +INSERT INTO config.metabib_class ( name, label ) VALUES ( 'author', oils_i18n_gettext('author', 'Author', 'cmc', 'label') ); +INSERT INTO config.metabib_class ( name, label ) VALUES ( 'subject', oils_i18n_gettext('subject', 'Subject', 'cmc', 'label') ); +INSERT INTO config.metabib_class ( name, label ) VALUES ( 'series', oils_i18n_gettext('series', 'Series', 'cmc', 'label') ); + +-- enable combined search for only the subject class by default +UPDATE config.metabib_class SET combined = TRUE WHERE name = 'subject'; + +-- some more from 002.schema.config.sql: +INSERT INTO config.xml_transform VALUES ( 'marcxml', 'http://www.loc.gov/MARC21/slim', 'marc', '---' ); +INSERT INTO config.xml_transform VALUES ( 'mods', 'http://www.loc.gov/mods/', 'mods', ''); +INSERT INTO config.xml_transform VALUES ( 'mods3', 'http://www.loc.gov/mods/v3', 'mods3', ''); +INSERT INTO config.xml_transform VALUES ( 'mods32', 'http://www.loc.gov/mods/v3', 'mods32', ''); +INSERT INTO config.xml_transform VALUES ( 'mods33', 'http://www.loc.gov/mods/v3', 'mods33', ''); +INSERT INTO config.xml_transform VALUES ( 'marc21expand880', 'http://www.loc.gov/MARC21/slim', 'marc', '' ); + +-- Index Definitions +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, authority_xpath, browse_field ) VALUES + (1, 'series', 'seriestitle', oils_i18n_gettext(1, 'Series Title', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:relatedItem[@type="series"]/mods32:titleInfo[not(@type="nfi")]$$, TRUE, '//@xlink:href', FALSE ); + +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, authority_xpath ) VALUES + (2, 'title', 'abbreviated', oils_i18n_gettext(2, 'Abbreviated Title', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleInfo[mods32:title and (@type='abbreviated')]$$, '//@xlink:href' ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, authority_xpath, browse_sort_xpath ) VALUES + (3, 'title', 'translated', oils_i18n_gettext(3, 'Translated Title', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleInfo[mods32:title and (@type='translated-nfi')]$$, '//@xlink:href', $$*[local-name() != "nonSort"]$$ ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, authority_xpath, browse_sort_xpath ) VALUES + (4, 'title', 'alternative', oils_i18n_gettext(4, 'Alternate Title', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleInfo[mods32:title and starts-with(@type,'alternative')]$$, '//@xlink:href', $$*[local-name() != "nonSort"]$$ ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, authority_xpath, browse_sort_xpath ) VALUES + (5, 'title', 'uniform', oils_i18n_gettext(5, 'Uniform Title', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleInfo[mods32:title and (@type='uniform-nfi')]$$, '//@xlink:href', $$*[local-name() != "nonSort"]$$ ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, authority_xpath, browse_field ) VALUES + (6, 'title', 'proper', oils_i18n_gettext(6, 'Title Proper', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleNonfiling[mods32:title and not (@type)]$$, '//@xlink:href', FALSE ); + +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_xpath, facet_field , authority_xpath, browse_xpath) VALUES + (7, 'author', 'corporate', oils_i18n_gettext(7, 'Corporate Author', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:name[@type='corporate' and (mods32:role/mods32:roleTerm[text()='creator'] or mods32:role/mods32:roleTerm[text()='aut'] or mods32:role/mods32:roleTerm[text()='cre'])]$$, $$//*[local-name()='namePart']$$, TRUE, '//@xlink:href',$$//*[local-name()='namePart']$$ ); -- /* to fool vim */; +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_xpath, facet_field, authority_xpath, browse_xpath ) VALUES + (8, 'author', 'personal', oils_i18n_gettext(8, 'Personal Author', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:name[@type='personal' and mods32:role/mods32:roleTerm[text()='creator']]$$, $$//*[local-name()='namePart']$$, TRUE, '//@xlink:href',$$//*[local-name()='namePart']$$ ); -- /* to fool vim */; +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_xpath, facet_field, authority_xpath, browse_xpath ) VALUES + (9, 'author', 'conference', oils_i18n_gettext(9, 'Conference Author', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:name[@type='conference' and mods32:role/mods32:roleTerm[text()='creator']]$$, $$//*[local-name()='namePart']$$, TRUE, '//@xlink:href',$$//*[local-name()='namePart']$$ ); -- /* to fool vim */; +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_xpath, facet_field, authority_xpath, browse_xpath ) VALUES + (10, 'author', 'other', oils_i18n_gettext(10, 'Other Author', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:name[@type='personal' and not(mods32:role/mods32:roleTerm[text()='creator'])]$$, $$//*[local-name()='namePart']$$, TRUE, '//@xlink:href',$$//*[local-name()='namePart']$$ ); -- /* to fool vim */; + +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, authority_xpath ) VALUES + (11, 'subject', 'geographic', oils_i18n_gettext(11, 'Geographic Subject', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject/mods32:geographic$$, TRUE, '//@xlink:href' ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_xpath, facet_field, authority_xpath ) VALUES + (12, 'subject', 'name', oils_i18n_gettext(12, 'Name Subject', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject/mods32:name$$, $$//*[local-name()='namePart']$$, TRUE, '//@xlink:href' ); -- /* to fool vim */; +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, authority_xpath ) VALUES + (13, 'subject', 'temporal', oils_i18n_gettext(13, 'Temporal Subject', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject/mods32:temporal$$, TRUE, '//@xlink:href' ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, authority_xpath ) VALUES + (14, 'subject', 'topic', oils_i18n_gettext(14, 'Topic Subject', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject/mods32:topic$$, TRUE, '//@xlink:href' ); +--INSERT INTO config.metabib_field ( id, field_class, name, format, xpath ) VALUES +-- ( id, field_class, name, xpath ) VALUES ( 'subject', 'genre', 'mods32', $$//mods32:mods/mods32:genre$$ ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES + (15, 'keyword', 'keyword', oils_i18n_gettext(15, 'General Keywords', 'cmf', 'label'), 'mods32', $$//mods32:mods/*[not(local-name()='originInfo')]$$, FALSE ); -- /* to fool vim */; +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES + (16, 'subject', 'complete', oils_i18n_gettext(16, 'All Subjects', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject$$, FALSE ); + +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES + (17, 'identifier', 'accession', oils_i18n_gettext(17, 'Accession Number', 'cmf', 'label'), 'marcxml', $$//marc:controlfield[@tag='001']$$, FALSE ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES + (18, 'identifier', 'isbn', oils_i18n_gettext(18, 'ISBN', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='020']/marc:subfield[@code='a' or @code='z']$$, FALSE ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES + (19, 'identifier', 'issn', oils_i18n_gettext(19, 'ISSN', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='022']/marc:subfield[@code='a' or @code='z']$$, FALSE ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES + (20, 'identifier', 'upc', oils_i18n_gettext(20, 'UPC', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='024' and @ind1='1']/marc:subfield[@code='a' or @code='z']$$, FALSE ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES + (21, 'identifier', 'ismn', oils_i18n_gettext(21, 'ISMN', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='024' and @ind1='2']/marc:subfield[@code='a' or @code='z']$$, FALSE ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES + (22, 'identifier', 'ean', oils_i18n_gettext(22, 'EAN', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='024' and @ind1='3']/marc:subfield[@code='a' or @code='z']$$, FALSE ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES + (23, 'identifier', 'isrc', oils_i18n_gettext(23, 'ISRC', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='024' and @ind1='0']/marc:subfield[@code='a' or @code='z']$$, FALSE ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES + (24, 'identifier', 'sici', oils_i18n_gettext(24, 'SICI', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='024' and @ind1='4']/marc:subfield[@code='a' or @code='z']$$, FALSE ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES + (25, 'identifier', 'bibcn', oils_i18n_gettext(25, 'Local Free-Text Call Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='099']$$, FALSE ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES + (26, 'identifier', 'tcn', oils_i18n_gettext(26, 'Title Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='a']$$, FALSE ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES + (27, 'identifier', 'bibid', oils_i18n_gettext(27, 'Internal ID', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='c']$$, FALSE ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, search_field, facet_field, browse_field) VALUES + (28, 'identifier', 'authority_id', oils_i18n_gettext(28, 'Authority Record ID', 'cmf', 'label'), 'marcxml', '//marc:datafield/marc:subfield[@code="0"]', FALSE, TRUE, FALSE); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field) VALUES + (29, 'identifier', 'scn', oils_i18n_gettext(29, 'System Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='035']/marc:subfield[@code="a"]$$, FALSE); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field) VALUES + (30, 'identifier', 'lccn', oils_i18n_gettext(30, 'LC Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='010']/marc:subfield[@code="a" or @code='z']$$, FALSE); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, search_field, authority_xpath, browse_field, browse_sort_xpath ) VALUES + (31, 'title', 'browse', oils_i18n_gettext(31, 'Title Proper (Browse)', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleBrowse$$, FALSE, '//@xlink:href', TRUE, $$*[local-name() != "nonSort"]$$ ); +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, search_field, authority_xpath, browse_field, browse_sort_xpath ) VALUES + (32, 'series', 'browse', oils_i18n_gettext(32, 'Series Title (Browse)', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:relatedItem[@type="series"]/mods32:titleInfo[@type="nfi"]$$, FALSE, '//@xlink:href', TRUE, $$*[local-name() != "nonSort"]$$ ); + +INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field, facet_field, facet_xpath, joiner ) VALUES + (33, 'identifier', 'genre', oils_i18n_gettext(33, 'Genre', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='655']$$, FALSE, TRUE, $$//*[local-name()='subfield' and contains('abvxyz',@code)]$$, ' -- ' ); -- /* to fool vim */; + +UPDATE config.metabib_field SET joiner = ' -- ' WHERE field_class = 'subject' AND name NOT IN ('name', 'complete'); + +SELECT SETVAL('config.metabib_field_id_seq', GREATEST(1000, (SELECT MAX(id) FROM config.metabib_field))); + +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('kw','keyword'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.keyword','keyword'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.publisher','keyword'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.subjecttitle','keyword'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.genre','keyword'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.edition','keyword'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('srw.serverchoice','keyword'); + +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('id','identifier'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','identifier'); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.isbn','identifier', 18); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.issn','identifier', 19); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.upc','identifier', 20); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.callnumber','identifier', 25); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.tcn','identifier', 26); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.bibid','identifier', 27); + +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('au','author'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('name','author'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('creator','author'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.author','author'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.name','author'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.creator','author'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.contributor','author'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.name','author'); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonal','author',8); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalfamily','author',8); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalgiven','author',8); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namecorporate','author',7); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.nameconference','author',9); + +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('ti','title'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.title','title'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.title','title'); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleabbreviated','title',2); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleuniform','title',5); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titletranslated','title',3); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titlealternative','title',4); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.title','title',2); + +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('su','subject'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.subject','subject'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.subject','subject'); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectplace','subject',11); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectname','subject',12); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectoccupation','subject',16); + +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('se','series'); +INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.series','series'); +INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleseries','series',1); + + +INSERT INTO config.non_cataloged_type ( id, owning_lib, name ) VALUES ( 1, 1, oils_i18n_gettext(1, 'Paperback Book', 'cnct', 'name') ); +SELECT SETVAL('config.non_cataloged_type_id_seq'::TEXT, 100); + +INSERT INTO config.identification_type ( id, name ) VALUES + ( 1, oils_i18n_gettext(1, 'Drivers License', 'cit', 'name') ); +INSERT INTO config.identification_type ( id, name ) VALUES + ( 2, oils_i18n_gettext(2, 'SSN', 'cit', 'name') ); +INSERT INTO config.identification_type ( id, name ) VALUES + ( 3, oils_i18n_gettext(3, 'Other', 'cit', 'name') ); +SELECT SETVAL('config.identification_type_id_seq'::TEXT, 100); + +INSERT INTO config.rule_circ_duration VALUES + (1, oils_i18n_gettext(1, '7_days_0_renew', 'crcd', 'name'), '7 days', '7 days', '7 days', 0); +INSERT INTO config.rule_circ_duration VALUES + (2, oils_i18n_gettext(2, '28_days_2_renew', 'crcd', 'name'), '28 days', '28 days', '28 days', 2); +INSERT INTO config.rule_circ_duration VALUES + (3, oils_i18n_gettext(3, '3_months_0_renew', 'crcd', 'name'), '3 months', '3 months', '3 months', 0); +INSERT INTO config.rule_circ_duration VALUES + (4, oils_i18n_gettext(4, '3_days_1_renew', 'crcd', 'name'), '3 days', '3 days', '3 days', 1); +INSERT INTO config.rule_circ_duration VALUES + (5, oils_i18n_gettext(5, '2_months_2_renew', 'crcd', 'name'), '2 months', '2 months', '2 months', 2); +INSERT INTO config.rule_circ_duration VALUES + (6, oils_i18n_gettext(6, '35_days_1_renew', 'crcd', 'name'), '35 days', '35 days', '35 days', 1); +INSERT INTO config.rule_circ_duration VALUES + (7, oils_i18n_gettext(7, '7_days_2_renew', 'crcd', 'name'), '7 days', '7 days', '7 days', 2); +INSERT INTO config.rule_circ_duration VALUES + (8, oils_i18n_gettext(8, '1_hour_2_renew', 'crcd', 'name'), '1 hour', '1 hour', '1 hour', 2); +INSERT INTO config.rule_circ_duration VALUES + (9, oils_i18n_gettext(9, '28_days_0_renew', 'crcd', 'name'), '28 days', '28 days', '28 days', 0); +INSERT INTO config.rule_circ_duration VALUES + (10, oils_i18n_gettext(10, '14_days_2_renew', 'crcd', 'name'), '14 days', '14 days', '14 days', 2); +INSERT INTO config.rule_circ_duration VALUES + (11, oils_i18n_gettext(11, 'default', 'crcd', 'name'), '21 days', '14 days', '7 days', 2); +SELECT SETVAL('config.rule_circ_duration_id_seq'::TEXT, 100); + +INSERT INTO config.rule_max_fine VALUES + (1, oils_i18n_gettext(1, 'default', 'crmf', 'name'), 5.00); +INSERT INTO config.rule_max_fine VALUES + (2, oils_i18n_gettext(2, 'overdue_min', 'crmf', 'name'), 5.00); +INSERT INTO config.rule_max_fine VALUES + (3, oils_i18n_gettext(3, 'overdue_mid', 'crmf', 'name'), 10.00); +INSERT INTO config.rule_max_fine VALUES + (4, oils_i18n_gettext(4, 'overdue_max', 'crmf', 'name'), 100.00); +INSERT INTO config.rule_max_fine VALUES + (5, oils_i18n_gettext(5, 'overdue_equip_min', 'crmf', 'name'), 25.00); +INSERT INTO config.rule_max_fine VALUES + (6, oils_i18n_gettext(6, 'overdue_equip_mid', 'crmf', 'name'), 25.00); +INSERT INTO config.rule_max_fine VALUES + (7, oils_i18n_gettext(7, 'overdue_equip_max', 'crmf', 'name'), 100.00); +SELECT SETVAL('config.rule_max_fine_id_seq'::TEXT, 100); + +INSERT INTO config.rule_recurring_fine VALUES + (1, oils_i18n_gettext(1, 'default', 'crrf', 'name'), 0.50, 0.10, 0.05, '1 day', '1 day'); +INSERT INTO config.rule_recurring_fine VALUES + (2, oils_i18n_gettext(2, '10_cent_per_day', 'crrf', 'name'), 0.50, 0.10, 0.10, '1 day', '1 day'); +INSERT INTO config.rule_recurring_fine VALUES + (3, oils_i18n_gettext(3, '50_cent_per_day', 'crrf', 'name'), 0.50, 0.50, 0.50, '1 day', '1 day'); +SELECT SETVAL('config.rule_recurring_fine_id_seq'::TEXT, 100); + +INSERT INTO config.rule_age_hold_protect VALUES + (1, oils_i18n_gettext(1, '3month', 'crahp', 'name'), '3 months', 0); +INSERT INTO config.rule_age_hold_protect VALUES + (2, oils_i18n_gettext(2, '6month', 'crahp', 'name'), '6 months', 2); +SELECT SETVAL('config.rule_age_hold_protect_id_seq'::TEXT, 100); + +INSERT INTO config.copy_status (id,name,holdable,opac_visible,copy_active) VALUES (0,oils_i18n_gettext(0, 'Available', 'ccs', 'name'),'t','t','t'); +INSERT INTO config.copy_status (id,name,holdable,opac_visible,copy_active,restrict_copy_delete) VALUES (1,oils_i18n_gettext(1, 'Checked out', 'ccs', 'name'),'t','t','t','t'); +INSERT INTO config.copy_status (id,name) VALUES (2,oils_i18n_gettext(2, 'Bindery', 'ccs', 'name')); +INSERT INTO config.copy_status (id,name,restrict_copy_delete) VALUES (3,oils_i18n_gettext(3, 'Lost', 'ccs', 'name'),'t'); +INSERT INTO config.copy_status (id,name) VALUES (4,oils_i18n_gettext(4, 'Missing', 'ccs', 'name')); +INSERT INTO config.copy_status (id,name,holdable,opac_visible) VALUES (5,oils_i18n_gettext(5, 'In process', 'ccs', 'name'),'t','t'); +INSERT INTO config.copy_status (id,name,holdable,opac_visible,restrict_copy_delete) VALUES (6,oils_i18n_gettext(6, 'In transit', 'ccs', 'name'),'t','t','t'); +INSERT INTO config.copy_status (id,name,holdable,opac_visible,copy_active) VALUES (7,oils_i18n_gettext(7, 'Reshelving', 'ccs', 'name'),'t','t','t'); +INSERT INTO config.copy_status (id,name,holdable,opac_visible,copy_active,restrict_copy_delete) VALUES (8,oils_i18n_gettext(8, 'On holds shelf', 'ccs', 'name'),'t','t','t','t'); +INSERT INTO config.copy_status (id,name,holdable,opac_visible) VALUES (9,oils_i18n_gettext(9, 'On order', 'ccs', 'name'),'t','t'); +INSERT INTO config.copy_status (id,name,copy_active) VALUES (10,oils_i18n_gettext(10, 'ILL', 'ccs', 'name'),'t'); +INSERT INTO config.copy_status (id,name) VALUES (11,oils_i18n_gettext(11, 'Cataloging', 'ccs', 'name')); +INSERT INTO config.copy_status (id,name,opac_visible,copy_active) VALUES (12,oils_i18n_gettext(12, 'Reserves', 'ccs', 'name'),'t','t'); +INSERT INTO config.copy_status (id,name) VALUES (13,oils_i18n_gettext(13, 'Discard/Weed', 'ccs', 'name')); +INSERT INTO config.copy_status (id,name) VALUES (14,oils_i18n_gettext(14, 'Damaged', 'ccs', 'name')); +INSERT INTO config.copy_status (id,name,copy_active) VALUES (15,oils_i18n_gettext(15, 'On reservation shelf', 'ccs', 'name'),'t'); +INSERT INTO config.copy_status + (id, name, holdable, opac_visible, copy_active, restrict_copy_delete) + VALUES (16, oils_i18n_gettext(16, 'Long Overdue', 'ccs', 'name'), 'f', 'f', 'f', 't'); +INSERT INTO config.copy_status +(id, name, holdable, opac_visible, copy_active, restrict_copy_delete) +VALUES (17, 'Lost and Paid', FALSE, FALSE, FALSE, TRUE); + + +SELECT SETVAL('config.copy_status_id_seq'::TEXT, 100); + +INSERT INTO config.net_access_level (id, name) VALUES + (1, oils_i18n_gettext(1, 'Filtered', 'cnal', 'name')); +INSERT INTO config.net_access_level (id, name) VALUES + (2, oils_i18n_gettext(2, 'Unfiltered', 'cnal', 'name')); +INSERT INTO config.net_access_level (id, name) VALUES + (3, oils_i18n_gettext(3, 'No Access', 'cnal', 'name')); +SELECT SETVAL('config.net_access_level_id_seq'::TEXT, 100); + +-- available locales +INSERT INTO config.i18n_locale (code,marc_code,name,description) + VALUES ('en-US', 'eng', oils_i18n_gettext('en-US', 'English (US)', 'i18n_l', 'name'), + oils_i18n_gettext('en-US', 'American English', 'i18n_l', 'description')); +INSERT INTO config.i18n_locale (code,marc_code,name,description) + VALUES ('cs-CZ', 'cze', oils_i18n_gettext('cs-CZ', 'Czech', 'i18n_l', 'name'), + oils_i18n_gettext('cs-CZ', 'Czech', 'i18n_l', 'description')); +INSERT INTO config.i18n_locale (code,marc_code,name,description) + VALUES ('en-CA', 'eng', oils_i18n_gettext('en-CA', 'English (Canada)', 'i18n_l', 'name'), + oils_i18n_gettext('en-CA', 'Canadian English', 'i18n_l', 'description')); +INSERT INTO config.i18n_locale (code,marc_code,name,description) + VALUES ('fi-FI', 'fin', oils_i18n_gettext('fi-FI', 'Finnish', 'i18n_l', 'name'), + oils_i18n_gettext('fi-FI', 'Finnish', 'i18n_l', 'description')); +INSERT INTO config.i18n_locale (code,marc_code,name,description) + VALUES ('fr-CA', 'fre', oils_i18n_gettext('fr-CA', 'French (Canada)', 'i18n_l', 'name'), + oils_i18n_gettext('fr-CA', 'Canadian French', 'i18n_l', 'description')); +INSERT INTO config.i18n_locale (code,marc_code,name,description) + VALUES ('hy-AM', 'arm', oils_i18n_gettext('hy-AM', 'Armenian', 'i18n_l', 'name'), + oils_i18n_gettext('hy-AM', 'Armenian', 'i18n_l', 'description')); +--INSERT INTO config.i18n_locale (code,marc_code,name,description) +-- VALUES ('es-US', 'spa', oils_i18n_gettext('es-US', 'Spanish (US)', 'i18n_l', 'name'), +-- oils_i18n_gettext('es-US', 'American Spanish', 'i18n_l', 'description')); +--INSERT INTO config.i18n_locale (code,marc_code,name,description) +-- VALUES ('es-MX', 'spa', oils_i18n_gettext('es-MX', 'Spanish (Mexico)', 'i18n_l', 'name'), +-- oils_i18n_gettext('es-MX', 'Mexican Spanish', 'i18n_l', 'description')); +INSERT INTO config.i18n_locale (code,marc_code,name,description) + VALUES ('ru-RU', 'rus', oils_i18n_gettext('ru-RU', 'Russian', 'i18n_l', 'name'), + oils_i18n_gettext('ru-RU', 'Russian', 'i18n_l', 'description')); + +-- Z39.50 server attributes + +INSERT INTO config.z3950_source (name, label, host, port, db, auth) + VALUES ('loc', oils_i18n_gettext('loc', 'Library of Congress', 'czs', 'label'), 'lx2.loc.gov', 210, 'LCDB', FALSE); +INSERT INTO config.z3950_source (name, label, host, port, db, auth) + VALUES ('oclc', oils_i18n_gettext('oclc', 'OCLC', 'czs', 'label'), 'zcat.oclc.org', 210, 'OLUCWorldCat', TRUE); + +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (1, 'loc','tcn', oils_i18n_gettext(1, 'Title Control Number', 'cza', 'label'), 12, 1); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (2, 'loc', 'isbn', oils_i18n_gettext(2, 'ISBN', 'cza', 'label'), 7, 6); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (3, 'loc', 'lccn', oils_i18n_gettext(3, 'LCCN', 'cza', 'label'), 9, 6); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (4, 'loc', 'author', oils_i18n_gettext(4, 'Author', 'cza', 'label'), 1003, 6); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (5, 'loc', 'title', oils_i18n_gettext(5, 'Title', 'cza', 'label'), 4, 6); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (6, 'loc', 'issn', oils_i18n_gettext(6, 'ISSN', 'cza', 'label'), 8, 1); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (7, 'loc', 'publisher', oils_i18n_gettext(7, 'Publisher', 'cza', 'label'), 1018, 6); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (8, 'loc', 'pubdate', oils_i18n_gettext(8, 'Publication Date', 'cza', 'label'), 31, 1); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (9, 'loc', 'item_type', oils_i18n_gettext(9, 'Item Type', 'cza', 'label'), 1001, 1); + +UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'loc'; + +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (10, 'oclc', 'tcn', oils_i18n_gettext(10, 'Title Control Number', 'cza', 'label'), 12, 1); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (11, 'oclc', 'isbn', oils_i18n_gettext(11, 'ISBN', 'cza', 'label'), 7, 6); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (12, 'oclc', 'lccn', oils_i18n_gettext(12, 'LCCN', 'cza', 'label'), 9, 1); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (13, 'oclc', 'author', oils_i18n_gettext(13, 'Author', 'cza', 'label'), 1003, 6); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (14, 'oclc', 'title', oils_i18n_gettext(14, 'Title', 'cza', 'label'), 4, 6); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (15, 'oclc', 'issn', oils_i18n_gettext(15, 'ISSN', 'cza', 'label'), 8, 1); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (16, 'oclc', 'publisher', oils_i18n_gettext(16, 'Publisher', 'cza', 'label'), 1018, 6); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (17, 'oclc', 'pubdate', oils_i18n_gettext(17, 'Publication Date', 'cza', 'label'), 31, 1); +INSERT INTO config.z3950_attr (id, source, name, label, code, format) + VALUES (18, 'oclc', 'item_type', oils_i18n_gettext(18, 'Item Type', 'cza', 'label'), 1001, 1); + +SELECT SETVAL('config.z3950_attr_id_seq'::TEXT, 100); + +--005.schema.actors.sql: + +-- The PINES levels +INSERT INTO actor.org_unit_type (id, name, opac_label, depth, parent, can_have_users, can_have_vols) VALUES + ( 1, oils_i18n_gettext(1, 'Consortium', 'aout', 'name'), + oils_i18n_gettext(1, 'Everywhere', 'aout', 'opac_label'), 0, NULL, FALSE, FALSE ); +INSERT INTO actor.org_unit_type (id, name, opac_label, depth, parent, can_have_users, can_have_vols) VALUES + ( 2, oils_i18n_gettext(2, 'System', 'aout', 'name'), + oils_i18n_gettext(2, 'Local Library System', 'aout', 'opac_label'), 1, 1, FALSE, FALSE ); +INSERT INTO actor.org_unit_type (id, name, opac_label, depth, parent) VALUES + ( 3, oils_i18n_gettext(3, 'Branch', 'aout', 'name'), + oils_i18n_gettext(3, 'This Branch', 'aout', 'opac_label'), 2, 2 ); +INSERT INTO actor.org_unit_type (id, name, opac_label, depth, parent) VALUES + ( 4, oils_i18n_gettext(4, 'Sub-library', 'aout', 'name'), + oils_i18n_gettext(4, 'This Specialized Library', 'aout', 'opac_label'), 3, 3 ); +INSERT INTO actor.org_unit_type (id, name, opac_label, depth, parent) VALUES + ( 5, oils_i18n_gettext(5, 'Bookmobile', 'aout', 'name'), + oils_i18n_gettext(5, 'Your Bookmobile', 'aout', 'opac_label'), 3, 3 ); +SELECT SETVAL('actor.org_unit_type_id_seq'::TEXT, 100); + +-- We need one actor.org_unit to own many things +INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES + (1, NULL, 1, 'CONS', oils_i18n_gettext(1, 'Example Consortium', 'aou', 'name')); +SELECT SETVAL('actor.org_unit_id_seq'::TEXT, 100); + +INSERT INTO config.billing_type (id, name, owner) VALUES + ( 1, oils_i18n_gettext(1, 'Overdue Materials', 'cbt', 'name'), 1); +INSERT INTO config.billing_type (id, name, owner) VALUES + ( 2, oils_i18n_gettext(2, 'Long Overdue Collection Fee', 'cbt', 'name'), 1); +INSERT INTO config.billing_type (id, name, owner) VALUES + ( 3, oils_i18n_gettext(3, 'Lost Materials', 'cbt', 'name'), 1); +INSERT INTO config.billing_type (id, name, owner) VALUES + ( 4, oils_i18n_gettext(4, 'Lost Materials Processing Fee', 'cbt', 'name'), 1); +INSERT INTO config.billing_type (id, name, owner) VALUES + ( 5, oils_i18n_gettext(5, 'System: Deposit', 'cbt', 'name'), 1); +INSERT INTO config.billing_type (id, name, owner) VALUES + ( 6, oils_i18n_gettext(6, 'System: Rental', 'cbt', 'name'), 1); +INSERT INTO config.billing_type (id, name, owner) VALUES + ( 7, oils_i18n_gettext(7, 'Damaged Item', 'cbt', 'name'), 1); +INSERT INTO config.billing_type (id, name, owner) VALUES + ( 8, oils_i18n_gettext(8, 'Damaged Item Processing Fee', 'cbt', 'name'), 1); +INSERT INTO config.billing_type (id, name, owner) VALUES + ( 9, oils_i18n_gettext(9, 'Notification Fee', 'cbt', 'name'), 1); +INSERT INTO config.billing_type (id, owner, name) VALUES + (10, 1, oils_i18n_gettext(10, 'Long-Overdue Materials', 'cbt', 'name')); +INSERT INTO config.billing_type (id, owner, name) VALUES + (11, 1, oils_i18n_gettext(11, 'Long-Overdue Materials Processing Fee', 'cbt', 'name')); + + +INSERT INTO config.billing_type (id, name, owner) VALUES ( 101, oils_i18n_gettext(101, 'Misc', 'cbt', 'name'), 1); + +SELECT SETVAL('config.billing_type_id_seq'::TEXT, 101); + +--006.data.permissions.sql: +INSERT INTO permission.perm_list ( id, code, description ) VALUES + ( -1, 'EVERYTHING', oils_i18n_gettext( -1, + 'EVERYTHING', 'ppl', 'description' )), + ( 1, 'OPAC_LOGIN', oils_i18n_gettext( 1, + 'Allow a user to log in to the OPAC', 'ppl', 'description' )), + ( 2, 'STAFF_LOGIN', oils_i18n_gettext( 2, + 'Allow a user to log in to the staff client', 'ppl', 'description' )), + ( 3, 'MR_HOLDS', oils_i18n_gettext( 3, + 'Allow a user to create a metarecord holds', 'ppl', 'description' )), + ( 4, 'TITLE_HOLDS', oils_i18n_gettext( 4, + 'Allow a user to place a hold at the title level', 'ppl', 'description' )), + ( 5, 'VOLUME_HOLDS', oils_i18n_gettext( 5, + 'Allow a user to place a volume level hold', 'ppl', 'description' )), + ( 6, 'COPY_HOLDS', oils_i18n_gettext( 6, + 'Allow a user to place a hold on a specific copy', 'ppl', 'description' )), + ( 7, 'REQUEST_HOLDS', oils_i18n_gettext( 7, + 'Allow a user to create holds for another user (if true, we still check to make sure they have permission to make the type of hold they are requesting, for example, COPY_HOLDS)', 'ppl', 'description' )), + ( 8, 'REQUEST_HOLDS_OVERRIDE', oils_i18n_gettext( 8, + '* no longer applicable', 'ppl', 'description' )), + ( 9, 'VIEW_HOLD', oils_i18n_gettext( 9, + 'Allow a user to view another user''s holds', 'ppl', 'description' )), + ( 10, 'DELETE_HOLDS', oils_i18n_gettext( 10, + '* no longer applicable', 'ppl', 'description' )), + ( 11, 'UPDATE_HOLD', oils_i18n_gettext( 11, + 'Allow a user to update another user''s hold', 'ppl', 'description' )), + ( 12, 'RENEW_CIRC', oils_i18n_gettext( 12, + 'Allow a user to renew items', 'ppl', 'description' )), + ( 13, 'VIEW_USER_FINES_SUMMARY', oils_i18n_gettext( 13, + 'Allow a user to view bill details', 'ppl', 'description' )), + ( 14, 'VIEW_USER_TRANSACTIONS', oils_i18n_gettext( 14, + 'Allow a user to see another user''s grocery or circulation transactions in the Bills Interface; duplicate of VIEW_TRANSACTION', 'ppl', 'description' )), + ( 15, 'UPDATE_MARC', oils_i18n_gettext( 15, + 'Allow a user to edit a MARC record', 'ppl', 'description' )), + ( 16, 'CREATE_MARC', oils_i18n_gettext( 16, + 'Allow a user to create new MARC records', 'ppl', 'description' )), + ( 17, 'IMPORT_MARC', oils_i18n_gettext( 17, + 'Allow a user to import a MARC record via the Z39.50 interface', 'ppl', 'description' )), + ( 18, 'CREATE_VOLUME', oils_i18n_gettext( 18, + 'Allow a user to create a volume', 'ppl', 'description' )), + ( 19, 'UPDATE_VOLUME', oils_i18n_gettext( 19, + 'Allow a user to edit volumes - needed for merging records. This is a duplicate of VOLUME_UPDATE; user must have both permissions at appropriate level to merge records.', 'ppl', 'description' )), + ( 20, 'DELETE_VOLUME', oils_i18n_gettext( 20, + 'Allow a user to delete a volume', 'ppl', 'description' )), + ( 21, 'CREATE_COPY', oils_i18n_gettext( 21, + 'Allow a user to create a new copy object', 'ppl', 'description' )), + ( 22, 'UPDATE_COPY', oils_i18n_gettext( 22, + 'Allow a user to edit a copy', 'ppl', 'description' )), + ( 23, 'DELETE_COPY', oils_i18n_gettext( 23, + 'Allow a user to delete a copy', 'ppl', 'description' )), + ( 24, 'RENEW_HOLD_OVERRIDE', oils_i18n_gettext( 24, + 'Allow a user to continue to renew an item even if it is required for a hold', 'ppl', 'description' )), + ( 25, 'CREATE_USER', oils_i18n_gettext( 25, + 'Allow a user to create another user', 'ppl', 'description' )), + ( 26, 'UPDATE_USER', oils_i18n_gettext( 26, + 'Allow a user to edit a user''s record', 'ppl', 'description' )), + ( 27, 'DELETE_USER', oils_i18n_gettext( 27, + 'Allow a user to mark a user as deleted', 'ppl', 'description' )), + ( 28, 'VIEW_USER', oils_i18n_gettext( 28, + 'Allow a user to view another user''s Patron Record', 'ppl', 'description' )), + ( 29, 'COPY_CHECKIN', oils_i18n_gettext( 29, + 'Allow a user to check in a copy', 'ppl', 'description' )), + ( 30, 'CREATE_TRANSIT', oils_i18n_gettext( 30, + 'Allow a user to place an item in transit', 'ppl', 'description' )), + ( 31, 'VIEW_PERMISSION', oils_i18n_gettext( 31, + 'Allow a user to view user permissions within the user permissions editor', 'ppl', 'description' )), + ( 32, 'CHECKIN_BYPASS_HOLD_FULFILL', oils_i18n_gettext( 32, + '* no longer applicable', 'ppl', 'description' )), + ( 33, 'CREATE_PAYMENT', oils_i18n_gettext( 33, + 'Allow a user to record payments in the Billing Interface', 'ppl', 'description' )), + ( 34, 'SET_CIRC_LOST', oils_i18n_gettext( 34, + 'Allow a user to mark an item as ''lost''', 'ppl', 'description' )), + ( 35, 'SET_CIRC_MISSING', oils_i18n_gettext( 35, + 'Allow a user to mark an item as ''missing''', 'ppl', 'description' )), + ( 36, 'SET_CIRC_CLAIMS_RETURNED', oils_i18n_gettext( 36, + 'Allow a user to mark an item as ''claims returned''', 'ppl', 'description' )), + ( 37, 'CREATE_TRANSACTION', oils_i18n_gettext( 37, + 'Allow a user to create a new billable transaction', 'ppl', 'description' )), + ( 38, 'VIEW_TRANSACTION', oils_i18n_gettext( 38, + 'Allow a user may view another user''s transactions', 'ppl', 'description' )), + ( 39, 'CREATE_BILL', oils_i18n_gettext( 39, + 'Allow a user to create a new bill on a transaction', 'ppl', 'description' )), + ( 40, 'VIEW_CONTAINER', oils_i18n_gettext( 40, + 'Allow a user to view another user''s containers (buckets)', 'ppl', 'description' )), + ( 41, 'CREATE_CONTAINER', oils_i18n_gettext( 41, + 'Allow a user to create a new container for another user', 'ppl', 'description' )), + ( 42, 'UPDATE_ORG_UNIT', oils_i18n_gettext( 42, + 'Allow a user to change the settings for an organization unit', 'ppl', 'description' )), + ( 43, 'VIEW_CIRCULATIONS', oils_i18n_gettext( 43, + 'Allow a user to see what another user has checked out', 'ppl', 'description' )), + ( 44, 'DELETE_CONTAINER', oils_i18n_gettext( 44, + 'Allow a user to delete another user''s container', 'ppl', 'description' )), + ( 45, 'CREATE_CONTAINER_ITEM', oils_i18n_gettext( 45, + 'Allow a user to create a container item for another user', 'ppl', 'description' )), + ( 46, 'CREATE_USER_GROUP_LINK', oils_i18n_gettext( 46, + 'Allow a user to add other users to permission groups', 'ppl', 'description' )), + ( 47, 'REMOVE_USER_GROUP_LINK', oils_i18n_gettext( 47, + 'Allow a user to remove other users from permission groups', 'ppl', 'description' )), + ( 48, 'VIEW_PERM_GROUPS', oils_i18n_gettext( 48, + 'Allow a user to view other users'' permission groups', 'ppl', 'description' )), + ( 49, 'VIEW_PERMIT_CHECKOUT', oils_i18n_gettext( 49, + 'Allow a user to determine whether another user can check out an item', 'ppl', 'description' )), + ( 50, 'UPDATE_BATCH_COPY', oils_i18n_gettext( 50, + 'Allow a user to edit copies in batch', 'ppl', 'description' )), + ( 51, 'CREATE_PATRON_STAT_CAT', oils_i18n_gettext( 51, + 'User may create a new patron statistical category', 'ppl', 'description' )), + ( 52, 'CREATE_COPY_STAT_CAT', oils_i18n_gettext( 52, + 'User may create a copy statistical category', 'ppl', 'description' )), + ( 53, 'CREATE_PATRON_STAT_CAT_ENTRY', oils_i18n_gettext( 53, + 'User may create an entry in a patron statistical category', 'ppl', 'description' )), + ( 54, 'CREATE_COPY_STAT_CAT_ENTRY', oils_i18n_gettext( 54, + 'User may create an entry in a copy statistical category', 'ppl', 'description' )), + ( 55, 'UPDATE_PATRON_STAT_CAT', oils_i18n_gettext( 55, + 'User may update a patron statistical category', 'ppl', 'description' )), + ( 56, 'UPDATE_COPY_STAT_CAT', oils_i18n_gettext( 56, + 'User may update a copy statistical category', 'ppl', 'description' )), + ( 57, 'UPDATE_PATRON_STAT_CAT_ENTRY', oils_i18n_gettext( 57, + 'User may update an entry in a patron statistical category', 'ppl', 'description' )), + ( 58, 'UPDATE_COPY_STAT_CAT_ENTRY', oils_i18n_gettext( 58, + 'User may update an entry in a copy statistical category', 'ppl', 'description' )), + ( 59, 'CREATE_PATRON_STAT_CAT_ENTRY_MAP', oils_i18n_gettext( 59, + 'User may link another user to an entry in a statistical category', 'ppl', 'description' )), + ( 60, 'CREATE_COPY_STAT_CAT_ENTRY_MAP', oils_i18n_gettext( 60, + 'User may link a copy to an entry in a statistical category', 'ppl', 'description' )), + ( 61, 'DELETE_PATRON_STAT_CAT', oils_i18n_gettext( 61, + 'User may delete a patron statistical category', 'ppl', 'description' )), + ( 62, 'DELETE_COPY_STAT_CAT', oils_i18n_gettext( 62, + 'User may delete a copy statistical category', 'ppl', 'description' )), + ( 63, 'DELETE_PATRON_STAT_CAT_ENTRY', oils_i18n_gettext( 63, + 'User may delete an entry from a patron statistical category', 'ppl', 'description' )), + ( 64, 'DELETE_COPY_STAT_CAT_ENTRY', oils_i18n_gettext( 64, + 'User may delete an entry from a copy statistical category', 'ppl', 'description' )), + ( 65, 'DELETE_PATRON_STAT_CAT_ENTRY_MAP', oils_i18n_gettext( 65, + 'User may delete a patron statistical category entry map', 'ppl', 'description' )), + ( 66, 'DELETE_COPY_STAT_CAT_ENTRY_MAP', oils_i18n_gettext( 66, + 'User may delete a copy statistical category entry map', 'ppl', 'description' )), + ( 67, 'CREATE_NON_CAT_TYPE', oils_i18n_gettext( 67, + 'Allow a user to create a new non-cataloged item type', 'ppl', 'description' )), + ( 68, 'UPDATE_NON_CAT_TYPE', oils_i18n_gettext( 68, + 'Allow a user to update a non-cataloged item type', 'ppl', 'description' )), + ( 69, 'CREATE_IN_HOUSE_USE', oils_i18n_gettext( 69, + 'Allow a user to create a new in-house-use ', 'ppl', 'description' )), + ( 70, 'COPY_CHECKOUT', oils_i18n_gettext( 70, + 'Allow a user to check out a copy', 'ppl', 'description' )), + ( 71, 'CREATE_COPY_LOCATION', oils_i18n_gettext( 71, + 'Allow a user to create a new copy location', 'ppl', 'description' )), + ( 72, 'UPDATE_COPY_LOCATION', oils_i18n_gettext( 72, + 'Allow a user to update a copy location', 'ppl', 'description' )), + ( 73, 'DELETE_COPY_LOCATION', oils_i18n_gettext( 73, + 'Allow a user to delete a copy location', 'ppl', 'description' )), + ( 74, 'CREATE_COPY_TRANSIT', oils_i18n_gettext( 74, + 'Allow a user to create a transit_copy object for transiting a copy', 'ppl', 'description' )), + ( 75, 'COPY_TRANSIT_RECEIVE', oils_i18n_gettext( 75, + 'Allow a user to close out a transit on a copy', 'ppl', 'description' )), + ( 76, 'VIEW_HOLD_PERMIT', oils_i18n_gettext( 76, + 'Allow a user to see if another user has permission to place a hold on a given copy', 'ppl', 'description' )), + ( 77, 'VIEW_COPY_CHECKOUT_HISTORY', oils_i18n_gettext( 77, + 'Allow a user to view which users have checked out a given copy', 'ppl', 'description' )), + ( 78, 'REMOTE_Z3950_QUERY', oils_i18n_gettext( 78, + 'Allow a user to perform Z39.50 queries against remote servers', 'ppl', 'description' )), + ( 79, 'REGISTER_WORKSTATION', oils_i18n_gettext( 79, + 'Allow a user to register a new workstation', 'ppl', 'description' )), + ( 80, 'VIEW_COPY_NOTES', oils_i18n_gettext( 80, + 'Allow a user to view all notes attached to a copy', 'ppl', 'description' )), + ( 81, 'VIEW_VOLUME_NOTES', oils_i18n_gettext( 81, + 'Allow a user to view all notes attached to a volume', 'ppl', 'description' )), + ( 82, 'VIEW_TITLE_NOTES', oils_i18n_gettext( 82, + 'Allow a user to view all notes attached to a title', 'ppl', 'description' )), + ( 83, 'CREATE_COPY_NOTE', oils_i18n_gettext( 83, + 'Allow a user to create a new copy note', 'ppl', 'description' )), + ( 84, 'CREATE_VOLUME_NOTE', oils_i18n_gettext( 84, + 'Allow a user to create a new volume note', 'ppl', 'description' )), + ( 85, 'CREATE_TITLE_NOTE', oils_i18n_gettext( 85, + 'Allow a user to create a new title note', 'ppl', 'description' )), + ( 86, 'DELETE_COPY_NOTE', oils_i18n_gettext( 86, + 'Allow a user to delete another user''s copy notes', 'ppl', 'description' )), + ( 87, 'DELETE_VOLUME_NOTE', oils_i18n_gettext( 87, + 'Allow a user to delete another user''s volume note', 'ppl', 'description' )), + ( 88, 'DELETE_TITLE_NOTE', oils_i18n_gettext( 88, + 'Allow a user to delete another user''s title note', 'ppl', 'description' )), + ( 89, 'UPDATE_CONTAINER', oils_i18n_gettext( 89, + 'Allow a user to update another user''s container', 'ppl', 'description' )), + ( 90, 'CREATE_MY_CONTAINER', oils_i18n_gettext( 90, + 'Allow a user to create a container for themselves', 'ppl', 'description' )), + ( 91, 'VIEW_HOLD_NOTIFICATION', oils_i18n_gettext( 91, + 'Allow a user to view notifications attached to a hold', 'ppl', 'description' )), + ( 92, 'CREATE_HOLD_NOTIFICATION', oils_i18n_gettext( 92, + 'Allow a user to create new hold notifications', 'ppl', 'description' )), + ( 93, 'UPDATE_ORG_SETTING', oils_i18n_gettext( 93, + 'Allow a user to update an organization unit setting', 'ppl', 'description' )), + ( 94, 'OFFLINE_UPLOAD', oils_i18n_gettext( 94, + 'Allow a user to upload an offline script', 'ppl', 'description' )), + ( 95, 'OFFLINE_VIEW', oils_i18n_gettext( 95, + 'Allow a user to view uploaded offline script information', 'ppl', 'description' )), + ( 96, 'OFFLINE_EXECUTE', oils_i18n_gettext( 96, + 'Allow a user to execute an offline script batch', 'ppl', 'description' )), + ( 97, 'CIRC_OVERRIDE_DUE_DATE', oils_i18n_gettext( 97, + 'Allow a user to change the due date on an item to any date', 'ppl', 'description' )), + ( 98, 'CIRC_PERMIT_OVERRIDE', oils_i18n_gettext( 98, + 'Allow a user to bypass the circulation permit call for check out', 'ppl', 'description' )), + ( 99, 'COPY_IS_REFERENCE.override', oils_i18n_gettext( 99, + 'Allow a user to override the copy_is_reference event', 'ppl', 'description' )), + ( 100, 'VOID_BILLING', oils_i18n_gettext( 100, + 'Allow a user to void a bill', 'ppl', 'description' )), + ( 101, 'CIRC_CLAIMS_RETURNED.override', oils_i18n_gettext( 101, + 'Allow a user to check in or check out an item that has a status of ''claims returned''', 'ppl', 'description' )), + ( 102, 'COPY_BAD_STATUS.override', oils_i18n_gettext( 102, + 'Allow a user to check out an item in a non-circulatable status', 'ppl', 'description' )), + ( 103, 'COPY_ALERT_MESSAGE.override', oils_i18n_gettext( 103, + 'Allow a user to check in/out an item that has an alert message', 'ppl', 'description' )), + ( 104, 'COPY_STATUS_LOST.override', oils_i18n_gettext( 104, + 'Allow a user to remove the lost status from a copy', 'ppl', 'description' )), + ( 105, 'COPY_STATUS_MISSING.override', oils_i18n_gettext( 105, + 'Allow a user to change the missing status on a copy', 'ppl', 'description' )), + ( 106, 'ABORT_TRANSIT', oils_i18n_gettext( 106, + 'Allow a user to abort a copy transit if the user is at the transit destination or source', 'ppl', 'description' )), + ( 107, 'ABORT_REMOTE_TRANSIT', oils_i18n_gettext( 107, + 'Allow a user to abort a copy transit if the user is not at the transit source or dest', 'ppl', 'description' )), + ( 108, 'VIEW_ZIP_DATA', oils_i18n_gettext( 108, + 'Allow a user to query the ZIP code data method', 'ppl', 'description' )), + ( 109, 'CANCEL_HOLDS', oils_i18n_gettext( 109, + 'Allow a user to cancel holds', 'ppl', 'description' )), + ( 110, 'CREATE_DUPLICATE_HOLDS', oils_i18n_gettext( 110, + 'Allow a user to create duplicate holds (two or more holds on the same title)', 'ppl', 'description' )), + ( 111, 'actor.org_unit.closed_date.delete', oils_i18n_gettext( 111, + 'Allow a user to remove a closed date interval for a given location', 'ppl', 'description' )), + ( 112, 'actor.org_unit.closed_date.update', oils_i18n_gettext( 112, + 'Allow a user to update a closed date interval for a given location', 'ppl', 'description' )), + ( 113, 'actor.org_unit.closed_date.create', oils_i18n_gettext( 113, + 'Allow a user to create a new closed date for a location', 'ppl', 'description' )), + ( 114, 'DELETE_NON_CAT_TYPE', oils_i18n_gettext( 114, + 'Allow a user to delete a non cataloged type', 'ppl', 'description' )), + ( 115, 'money.collections_tracker.create', oils_i18n_gettext( 115, + 'Allow a user to put someone into collections', 'ppl', 'description' )), + ( 116, 'money.collections_tracker.delete', oils_i18n_gettext( 116, + 'Allow a user to remove someone from collections', 'ppl', 'description' )), + ( 117, 'BAR_PATRON', oils_i18n_gettext( 117, + 'Allow a user to bar a patron', 'ppl', 'description' )), + ( 118, 'UNBAR_PATRON', oils_i18n_gettext( 118, + 'Allow a user to un-bar a patron', 'ppl', 'description' )), + ( 119, 'DELETE_WORKSTATION', oils_i18n_gettext( 119, + 'Allow a user to remove an existing workstation so a new one can replace it', 'ppl', 'description' )), + ( 120, 'group_application.user', oils_i18n_gettext( 120, + 'Allow a user to add/remove users to/from the "User" group', 'ppl', 'description' )), + ( 121, 'group_application.user.patron', oils_i18n_gettext( 121, + 'Allow a user to add/remove users to/from the "Patron" group', 'ppl', 'description' )), + ( 122, 'group_application.user.staff', oils_i18n_gettext( 122, + 'Allow a user to add/remove users to/from the "Staff" group', 'ppl', 'description' )), + ( 123, 'group_application.user.staff.circ', oils_i18n_gettext( 123, + 'Allow a user to add/remove users to/from the "Circulator" group', 'ppl', 'description' )), + ( 124, 'group_application.user.staff.cat', oils_i18n_gettext( 124, + 'Allow a user to add/remove users to/from the "Cataloger" group', 'ppl', 'description' )), + ( 125, 'group_application.user.staff.admin.global_admin', oils_i18n_gettext( 125, + 'Allow a user to add/remove users to/from the "GlobalAdmin" group', 'ppl', 'description' )), + ( 126, 'group_application.user.staff.admin.local_admin', oils_i18n_gettext( 126, + 'Allow a user to add/remove users to/from the "LocalAdmin" group', 'ppl', 'description' )), + ( 127, 'group_application.user.staff.admin.lib_manager', oils_i18n_gettext( 127, + 'Allow a user to add/remove users to/from the "LibraryManager" group', 'ppl', 'description' )), + ( 128, 'group_application.user.staff.cat.cat1', oils_i18n_gettext( 128, + 'Allow a user to add/remove users to/from the "Cat1" group', 'ppl', 'description' )), + ( 129, 'group_application.user.staff.supercat', oils_i18n_gettext( 129, + 'Allow a user to add/remove users to/from the "Supercat" group', 'ppl', 'description' )), + ( 130, 'group_application.user.sip_client', oils_i18n_gettext( 130, + 'Allow a user to add/remove users to/from the "SIP-Client" group', 'ppl', 'description' )), + ( 131, 'group_application.user.vendor', oils_i18n_gettext( 131, + 'Allow a user to add/remove users to/from the "Vendor" group', 'ppl', 'description' )), + ( 132, 'ITEM_AGE_PROTECTED.override', oils_i18n_gettext( 132, + 'Allow a user to place a hold on an age-protected item', 'ppl', 'description' )), + ( 133, 'MAX_RENEWALS_REACHED.override', oils_i18n_gettext( 133, + 'Allow a user to renew an item past the maximum renewal count', 'ppl', 'description' )), + ( 134, 'PATRON_EXCEEDS_CHECKOUT_COUNT.override', oils_i18n_gettext( 134, + 'Allow staff to override checkout count failure', 'ppl', 'description' )), + ( 135, 'PATRON_EXCEEDS_OVERDUE_COUNT.override', oils_i18n_gettext( 135, + 'Allow staff to override overdue count failure', 'ppl', 'description' )), + ( 136, 'PATRON_EXCEEDS_FINES.override', oils_i18n_gettext( 136, + 'Allow staff to override fine amount checkout failure', 'ppl', 'description' )), + ( 137, 'CIRC_EXCEEDS_COPY_RANGE.override', oils_i18n_gettext( 137, + 'Allow staff to override circulation copy range failure', 'ppl', 'description' )), + ( 138, 'ITEM_ON_HOLDS_SHELF.override', oils_i18n_gettext( 138, + 'Allow staff to override item on holds shelf failure', 'ppl', 'description' )), + ( 139, 'COPY_NOT_AVAILABLE.override', oils_i18n_gettext( 139, + 'Allow staff to force checkout of Missing/Lost type items', 'ppl', 'description' )), + ( 140, 'HOLD_EXISTS.override', oils_i18n_gettext( 140, + 'Allow a user to place multiple holds on a single title', 'ppl', 'description' )), + ( 141, 'RUN_REPORTS', oils_i18n_gettext( 141, + 'Allow a user to run reports', 'ppl', 'description' )), + ( 142, 'SHARE_REPORT_FOLDER', oils_i18n_gettext( 142, + 'Allow a user to share report his own folders', 'ppl', 'description' )), + ( 143, 'VIEW_REPORT_OUTPUT', oils_i18n_gettext( 143, + 'Allow a user to view report output', 'ppl', 'description' )), + ( 144, 'COPY_CIRC_NOT_ALLOWED.override', oils_i18n_gettext( 144, + 'Allow a user to checkout an item that is marked as non-circ', 'ppl', 'description' )), + ( 145, 'DELETE_CONTAINER_ITEM', oils_i18n_gettext( 145, + 'Allow a user to delete an item out of another user''s container', 'ppl', 'description' )), + ( 146, 'ASSIGN_WORK_ORG_UNIT', oils_i18n_gettext( 146, + 'Allow a staff member to define where another staff member has their permissions', 'ppl', 'description' )), + ( 147, 'CREATE_FUNDING_SOURCE', oils_i18n_gettext( 147, + 'Allow a user to create a new funding source', 'ppl', 'description' )), + ( 148, 'DELETE_FUNDING_SOURCE', oils_i18n_gettext( 148, + 'Allow a user to delete a funding source', 'ppl', 'description' )), + ( 149, 'VIEW_FUNDING_SOURCE', oils_i18n_gettext( 149, + 'Allow a user to view a funding source', 'ppl', 'description' )), + ( 150, 'UPDATE_FUNDING_SOURCE', oils_i18n_gettext( 150, + 'Allow a user to update a funding source', 'ppl', 'description' )), + ( 151, 'CREATE_FUND', oils_i18n_gettext( 151, + 'Allow a user to create a new fund', 'ppl', 'description' )), + ( 152, 'DELETE_FUND', oils_i18n_gettext( 152, + 'Allow a user to delete a fund', 'ppl', 'description' )), + ( 153, 'VIEW_FUND', oils_i18n_gettext( 153, + 'Allow a user to view a fund', 'ppl', 'description' )), + ( 154, 'UPDATE_FUND', oils_i18n_gettext( 154, + 'Allow a user to update a fund', 'ppl', 'description' )), + ( 155, 'CREATE_FUND_ALLOCATION', oils_i18n_gettext( 155, + 'Allow a user to create a new fund allocation', 'ppl', 'description' )), + ( 156, 'DELETE_FUND_ALLOCATION', oils_i18n_gettext( 156, + 'Allow a user to delete a fund allocation', 'ppl', 'description' )), + ( 157, 'VIEW_FUND_ALLOCATION', oils_i18n_gettext( 157, + 'Allow a user to view a fund allocation', 'ppl', 'description' )), + ( 158, 'UPDATE_FUND_ALLOCATION', oils_i18n_gettext( 158, + 'Allow a user to update a fund allocation', 'ppl', 'description' )), + ( 159, 'GENERAL_ACQ', oils_i18n_gettext( 159, + 'Lowest level permission required to access the ACQ interface', 'ppl', 'description' )), + ( 160, 'CREATE_PROVIDER', oils_i18n_gettext( 160, + 'Allow a user to create a new provider', 'ppl', 'description' )), + ( 161, 'DELETE_PROVIDER', oils_i18n_gettext( 161, + 'Allow a user to delete a provider', 'ppl', 'description' )), + ( 162, 'VIEW_PROVIDER', oils_i18n_gettext( 162, + 'Allow a user to view a provider', 'ppl', 'description' )), + ( 163, 'UPDATE_PROVIDER', oils_i18n_gettext( 163, + 'Allow a user to update a provider', 'ppl', 'description' )), + ( 164, 'ADMIN_FUNDING_SOURCE', oils_i18n_gettext( 164, + 'Allow a user to create/view/update/delete a funding source', 'ppl', 'description' )), + ( 165, 'ADMIN_FUND', oils_i18n_gettext( 165, + '(Deprecated) Allow a user to create/view/update/delete a fund', 'ppl', 'description' )), + ( 166, 'MANAGE_FUNDING_SOURCE', oils_i18n_gettext( 166, + 'Allow a user to view/credit/debit a funding source', 'ppl', 'description' )), + ( 167, 'MANAGE_FUND', oils_i18n_gettext( 167, + 'Allow a user to view/credit/debit a fund', 'ppl', 'description' )), + ( 168, 'CREATE_PICKLIST', oils_i18n_gettext( 168, + 'Allows a user to create a picklist', 'ppl', 'description' )), + ( 169, 'ADMIN_PROVIDER', oils_i18n_gettext( 169, + 'Allow a user to create/view/update/delete a provider', 'ppl', 'description' )), + ( 170, 'MANAGE_PROVIDER', oils_i18n_gettext( 170, + 'Allow a user to view and purchase from a provider', 'ppl', 'description' )), + ( 171, 'VIEW_PICKLIST', oils_i18n_gettext( 171, + 'Allow a user to view another users picklist', 'ppl', 'description' )), + ( 172, 'DELETE_RECORD', oils_i18n_gettext( 172, + 'Allow a staff member to directly remove a bibliographic record', 'ppl', 'description' )), + ( 173, 'ADMIN_CURRENCY_TYPE', oils_i18n_gettext( 173, + 'Allow a user to create/view/update/delete a currency_type', 'ppl', 'description' )), + ( 174, 'MARK_BAD_DEBT', oils_i18n_gettext( 174, + 'Allow a user to mark a transaction as bad (unrecoverable) debt', 'ppl', 'description' )), + ( 175, 'VIEW_BILLING_TYPE', oils_i18n_gettext( 175, + 'Allow a user to view billing types', 'ppl', 'description' )), + ( 176, 'MARK_ITEM_AVAILABLE', oils_i18n_gettext( 176, + 'Allow a user to mark an item status as ''available''', 'ppl', 'description' )), + ( 177, 'MARK_ITEM_CHECKED_OUT', oils_i18n_gettext( 177, + 'Allow a user to mark an item status as ''checked out''', 'ppl', 'description' )), + ( 178, 'MARK_ITEM_BINDERY', oils_i18n_gettext( 178, + 'Allow a user to mark an item status as ''bindery''', 'ppl', 'description' )), + ( 179, 'MARK_ITEM_LOST', oils_i18n_gettext( 179, + 'Allow a user to mark an item status as ''lost''', 'ppl', 'description' )), + ( 180, 'MARK_ITEM_MISSING', oils_i18n_gettext( 180, + 'Allow a user to mark an item status as ''missing''', 'ppl', 'description' )), + ( 181, 'MARK_ITEM_IN_PROCESS', oils_i18n_gettext( 181, + 'Allow a user to mark an item status as ''in process''', 'ppl', 'description' )), + ( 182, 'MARK_ITEM_IN_TRANSIT', oils_i18n_gettext( 182, + 'Allow a user to mark an item status as ''in transit''', 'ppl', 'description' )), + ( 183, 'MARK_ITEM_RESHELVING', oils_i18n_gettext( 183, + 'Allow a user to mark an item status as ''reshelving''', 'ppl', 'description' )), + ( 184, 'MARK_ITEM_ON_HOLDS_SHELF', oils_i18n_gettext( 184, + 'Allow a user to mark an item status as ''on holds shelf''', 'ppl', 'description' )), + ( 185, 'MARK_ITEM_ON_ORDER', oils_i18n_gettext( 185, + 'Allow a user to mark an item status as ''on order''', 'ppl', 'description' )), + ( 186, 'MARK_ITEM_ILL', oils_i18n_gettext( 186, + 'Allow a user to mark an item status as ''inter-library loan''', 'ppl', 'description' )), + ( 187, 'group_application.user.staff.acq', oils_i18n_gettext( 187, + 'Allows a user to add/remove/edit users in the "ACQ" group', 'ppl', 'description' )), + ( 188, 'CREATE_PURCHASE_ORDER', oils_i18n_gettext( 188, + 'Allows a user to create a purchase order', 'ppl', 'description' )), + ( 189, 'VIEW_PURCHASE_ORDER', oils_i18n_gettext( 189, + 'Allows a user to view a purchase order', 'ppl', 'description' )), + ( 190, 'IMPORT_ACQ_LINEITEM_BIB_RECORD', oils_i18n_gettext( 190, + 'Allows a user to import a bib record from the acq staging area (on-order record) into the ILS bib data set', 'ppl', 'description' )), + ( 191, 'RECEIVE_PURCHASE_ORDER', oils_i18n_gettext( 191, + 'Allows a user to mark a purchase order, lineitem, or individual copy as received', 'ppl', 'description' )), + ( 192, 'VIEW_ORG_SETTINGS', oils_i18n_gettext( 192, + 'Allows a user to view all org settings at the specified level', 'ppl', 'description' )), + ( 193, 'CREATE_MFHD_RECORD', oils_i18n_gettext( 193, + 'Allows a user to create a new MFHD record', 'ppl', 'description' )), + ( 194, 'UPDATE_MFHD_RECORD', oils_i18n_gettext( 194, + 'Allows a user to update an MFHD record', 'ppl', 'description' )), + ( 195, 'DELETE_MFHD_RECORD', oils_i18n_gettext( 195, + 'Allows a user to delete an MFHD record', 'ppl', 'description' )), + ( 196, 'ADMIN_ACQ_FUND', oils_i18n_gettext( 196, + 'Allow a user to create/view/update/delete a fund', 'ppl', 'description' )), + ( 197, 'group_application.user.staff.acq_admin', oils_i18n_gettext( 197, + 'Allows a user to add/remove/edit users in the "Acquisitions Administrators" group', 'ppl', 'description' )), + ( 198, 'SET_CIRC_CLAIMS_RETURNED.override', oils_i18n_gettext( 198, + 'Allows staff to override the max claims returned value for a patron', 'ppl', 'description' )), + ( 199, 'UPDATE_PATRON_CLAIM_RETURN_COUNT', oils_i18n_gettext( 199, + 'Allows staff to manually change a patron''s claims returned count', 'ppl', 'description' )), + ( 200, 'UPDATE_BILL_NOTE', oils_i18n_gettext( 200, + 'Allows staff to edit the note for a bill on a transaction', 'ppl', 'description' )), + ( 201, 'UPDATE_PAYMENT_NOTE', oils_i18n_gettext( 201, + 'Allows staff to edit the note for a payment on a transaction', 'ppl', 'description' )), + ( 202, 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT', oils_i18n_gettext( 202, + 'Allows staff to manually change a patron''s claims never checkout out count', 'ppl', 'description' )), + ( 203, 'ADMIN_COPY_LOCATION_ORDER', oils_i18n_gettext( 203, + 'Allow a user to create/view/update/delete a copy location order', 'ppl', 'description' )), + ( 204, 'ASSIGN_GROUP_PERM', oils_i18n_gettext( 204, + 'ASSIGN_GROUP_PERM', 'ppl', 'description' )), + ( 205, 'CREATE_AUDIENCE', oils_i18n_gettext( 205, + 'CREATE_AUDIENCE', 'ppl', 'description' )), + ( 206, 'CREATE_BIB_LEVEL', oils_i18n_gettext( 206, + 'CREATE_BIB_LEVEL', 'ppl', 'description' )), + ( 207, 'CREATE_CIRC_DURATION', oils_i18n_gettext( 207, + 'CREATE_CIRC_DURATION', 'ppl', 'description' )), + ( 208, 'CREATE_CIRC_MOD', oils_i18n_gettext( 208, + 'CREATE_CIRC_MOD', 'ppl', 'description' )), + ( 209, 'CREATE_COPY_STATUS', oils_i18n_gettext( 209, + 'CREATE_COPY_STATUS', 'ppl', 'description' )), + ( 210, 'CREATE_HOURS_OF_OPERATION', oils_i18n_gettext( 210, + 'CREATE_HOURS_OF_OPERATION', 'ppl', 'description' )), + ( 211, 'CREATE_ITEM_FORM', oils_i18n_gettext( 211, + 'CREATE_ITEM_FORM', 'ppl', 'description' )), + ( 212, 'CREATE_ITEM_TYPE', oils_i18n_gettext( 212, + 'CREATE_ITEM_TYPE', 'ppl', 'description' )), + ( 213, 'CREATE_LANGUAGE', oils_i18n_gettext( 213, + 'CREATE_LANGUAGE', 'ppl', 'description' )), + ( 214, 'CREATE_LASSO', oils_i18n_gettext( 214, + 'CREATE_LASSO', 'ppl', 'description' )), + ( 215, 'CREATE_LASSO_MAP', oils_i18n_gettext( 215, + 'CREATE_LASSO_MAP', 'ppl', 'description' )), + ( 216, 'CREATE_LIT_FORM', oils_i18n_gettext( 216, + 'CREATE_LIT_FORM', 'ppl', 'description' )), + ( 217, 'CREATE_METABIB_FIELD', oils_i18n_gettext( 217, + 'CREATE_METABIB_FIELD', 'ppl', 'description' )), + ( 218, 'CREATE_NET_ACCESS_LEVEL', oils_i18n_gettext( 218, + 'CREATE_NET_ACCESS_LEVEL', 'ppl', 'description' )), + ( 219, 'CREATE_ORG_ADDRESS', oils_i18n_gettext( 219, + 'CREATE_ORG_ADDRESS', 'ppl', 'description' )), + ( 220, 'CREATE_ORG_TYPE', oils_i18n_gettext( 220, + 'CREATE_ORG_TYPE', 'ppl', 'description' )), + ( 221, 'CREATE_ORG_UNIT', oils_i18n_gettext( 221, + 'CREATE_ORG_UNIT', 'ppl', 'description' )), + ( 222, 'CREATE_ORG_UNIT_CLOSING', oils_i18n_gettext( 222, + 'CREATE_ORG_UNIT_CLOSING', 'ppl', 'description' )), + ( 223, 'CREATE_PERM', oils_i18n_gettext( 223, + 'CREATE_PERM', 'ppl', 'description' )), + ( 224, 'CREATE_RELEVANCE_ADJUSTMENT', oils_i18n_gettext( 224, + 'CREATE_RELEVANCE_ADJUSTMENT', 'ppl', 'description' )), + ( 225, 'CREATE_SURVEY', oils_i18n_gettext( 225, + 'CREATE_SURVEY', 'ppl', 'description' )), + ( 226, 'CREATE_VR_FORMAT', oils_i18n_gettext( 226, + 'CREATE_VR_FORMAT', 'ppl', 'description' )), + ( 227, 'CREATE_XML_TRANSFORM', oils_i18n_gettext( 227, + 'CREATE_XML_TRANSFORM', 'ppl', 'description' )), + ( 228, 'DELETE_AUDIENCE', oils_i18n_gettext( 228, + 'DELETE_AUDIENCE', 'ppl', 'description' )), + ( 229, 'DELETE_BIB_LEVEL', oils_i18n_gettext( 229, + 'DELETE_BIB_LEVEL', 'ppl', 'description' )), + ( 230, 'DELETE_CIRC_DURATION', oils_i18n_gettext( 230, + 'DELETE_CIRC_DURATION', 'ppl', 'description' )), + ( 231, 'DELETE_CIRC_MOD', oils_i18n_gettext( 231, + 'DELETE_CIRC_MOD', 'ppl', 'description' )), + ( 232, 'DELETE_COPY_STATUS', oils_i18n_gettext( 232, + 'DELETE_COPY_STATUS', 'ppl', 'description' )), + ( 233, 'DELETE_HOURS_OF_OPERATION', oils_i18n_gettext( 233, + 'DELETE_HOURS_OF_OPERATION', 'ppl', 'description' )), + ( 234, 'DELETE_ITEM_FORM', oils_i18n_gettext( 234, + 'DELETE_ITEM_FORM', 'ppl', 'description' )), + ( 235, 'DELETE_ITEM_TYPE', oils_i18n_gettext( 235, + 'DELETE_ITEM_TYPE', 'ppl', 'description' )), + ( 236, 'DELETE_LANGUAGE', oils_i18n_gettext( 236, + 'DELETE_LANGUAGE', 'ppl', 'description' )), + ( 237, 'DELETE_LASSO', oils_i18n_gettext( 237, + 'DELETE_LASSO', 'ppl', 'description' )), + ( 238, 'DELETE_LASSO_MAP', oils_i18n_gettext( 238, + 'DELETE_LASSO_MAP', 'ppl', 'description' )), + ( 239, 'DELETE_LIT_FORM', oils_i18n_gettext( 239, + 'DELETE_LIT_FORM', 'ppl', 'description' )), + ( 240, 'DELETE_METABIB_FIELD', oils_i18n_gettext( 240, + 'DELETE_METABIB_FIELD', 'ppl', 'description' )), + ( 241, 'DELETE_NET_ACCESS_LEVEL', oils_i18n_gettext( 241, + 'DELETE_NET_ACCESS_LEVEL', 'ppl', 'description' )), + ( 242, 'DELETE_ORG_ADDRESS', oils_i18n_gettext( 242, + 'DELETE_ORG_ADDRESS', 'ppl', 'description' )), + ( 243, 'DELETE_ORG_TYPE', oils_i18n_gettext( 243, + 'DELETE_ORG_TYPE', 'ppl', 'description' )), + ( 244, 'DELETE_ORG_UNIT', oils_i18n_gettext( 244, + 'DELETE_ORG_UNIT', 'ppl', 'description' )), + ( 245, 'DELETE_ORG_UNIT_CLOSING', oils_i18n_gettext( 245, + 'DELETE_ORG_UNIT_CLOSING', 'ppl', 'description' )), + ( 246, 'DELETE_PERM', oils_i18n_gettext( 246, + 'DELETE_PERM', 'ppl', 'description' )), + ( 247, 'DELETE_RELEVANCE_ADJUSTMENT', oils_i18n_gettext( 247, + 'DELETE_RELEVANCE_ADJUSTMENT', 'ppl', 'description' )), + ( 248, 'DELETE_SURVEY', oils_i18n_gettext( 248, + 'DELETE_SURVEY', 'ppl', 'description' )), + ( 249, 'DELETE_TRANSIT', oils_i18n_gettext( 249, + 'DELETE_TRANSIT', 'ppl', 'description' )), + ( 250, 'DELETE_VR_FORMAT', oils_i18n_gettext( 250, + 'DELETE_VR_FORMAT', 'ppl', 'description' )), + ( 251, 'DELETE_XML_TRANSFORM', oils_i18n_gettext( 251, + 'DELETE_XML_TRANSFORM', 'ppl', 'description' )), + ( 252, 'REMOVE_GROUP_PERM', oils_i18n_gettext( 252, + 'REMOVE_GROUP_PERM', 'ppl', 'description' )), + ( 253, 'TRANSIT_COPY', oils_i18n_gettext( 253, + 'TRANSIT_COPY', 'ppl', 'description' )), + ( 254, 'UPDATE_AUDIENCE', oils_i18n_gettext( 254, + 'UPDATE_AUDIENCE', 'ppl', 'description' )), + ( 255, 'UPDATE_BIB_LEVEL', oils_i18n_gettext( 255, + 'UPDATE_BIB_LEVEL', 'ppl', 'description' )), + ( 256, 'UPDATE_CIRC_DURATION', oils_i18n_gettext( 256, + 'UPDATE_CIRC_DURATION', 'ppl', 'description' )), + ( 257, 'UPDATE_CIRC_MOD', oils_i18n_gettext( 257, + 'UPDATE_CIRC_MOD', 'ppl', 'description' )), + ( 258, 'UPDATE_COPY_NOTE', oils_i18n_gettext( 258, + 'UPDATE_COPY_NOTE', 'ppl', 'description' )), + ( 259, 'UPDATE_COPY_STATUS', oils_i18n_gettext( 259, + 'UPDATE_COPY_STATUS', 'ppl', 'description' )), + ( 260, 'UPDATE_GROUP_PERM', oils_i18n_gettext( 260, + 'UPDATE_GROUP_PERM', 'ppl', 'description' )), + ( 261, 'UPDATE_HOURS_OF_OPERATION', oils_i18n_gettext( 261, + 'UPDATE_HOURS_OF_OPERATION', 'ppl', 'description' )), + ( 262, 'UPDATE_ITEM_FORM', oils_i18n_gettext( 262, + 'UPDATE_ITEM_FORM', 'ppl', 'description' )), + ( 263, 'UPDATE_ITEM_TYPE', oils_i18n_gettext( 263, + 'UPDATE_ITEM_TYPE', 'ppl', 'description' )), + ( 264, 'UPDATE_LANGUAGE', oils_i18n_gettext( 264, + 'UPDATE_LANGUAGE', 'ppl', 'description' )), + ( 265, 'UPDATE_LASSO', oils_i18n_gettext( 265, + 'UPDATE_LASSO', 'ppl', 'description' )), + ( 266, 'UPDATE_LASSO_MAP', oils_i18n_gettext( 266, + 'UPDATE_LASSO_MAP', 'ppl', 'description' )), + ( 267, 'UPDATE_LIT_FORM', oils_i18n_gettext( 267, + 'UPDATE_LIT_FORM', 'ppl', 'description' )), + ( 268, 'UPDATE_METABIB_FIELD', oils_i18n_gettext( 268, + 'UPDATE_METABIB_FIELD', 'ppl', 'description' )), + ( 269, 'UPDATE_NET_ACCESS_LEVEL', oils_i18n_gettext( 269, + 'UPDATE_NET_ACCESS_LEVEL', 'ppl', 'description' )), + ( 270, 'UPDATE_ORG_ADDRESS', oils_i18n_gettext( 270, + 'UPDATE_ORG_ADDRESS', 'ppl', 'description' )), + ( 271, 'UPDATE_ORG_TYPE', oils_i18n_gettext( 271, + 'UPDATE_ORG_TYPE', 'ppl', 'description' )), + ( 272, 'UPDATE_ORG_UNIT_CLOSING', oils_i18n_gettext( 272, + 'UPDATE_ORG_UNIT_CLOSING', 'ppl', 'description' )), + ( 273, 'UPDATE_PERM', oils_i18n_gettext( 273, + 'UPDATE_PERM', 'ppl', 'description' )), + ( 274, 'UPDATE_RELEVANCE_ADJUSTMENT', oils_i18n_gettext( 274, + 'UPDATE_RELEVANCE_ADJUSTMENT', 'ppl', 'description' )), + ( 275, 'UPDATE_SURVEY', oils_i18n_gettext( 275, + 'UPDATE_SURVEY', 'ppl', 'description' )), + ( 276, 'UPDATE_TRANSIT', oils_i18n_gettext( 276, + 'UPDATE_TRANSIT', 'ppl', 'description' )), + ( 277, 'UPDATE_VOLUME_NOTE', oils_i18n_gettext( 277, + 'UPDATE_VOLUME_NOTE', 'ppl', 'description' )), + ( 278, 'UPDATE_VR_FORMAT', oils_i18n_gettext( 278, + 'UPDATE_VR_FORMAT', 'ppl', 'description' )), + ( 279, 'UPDATE_XML_TRANSFORM', oils_i18n_gettext( 279, + 'UPDATE_XML_TRANSFORM', 'ppl', 'description' )), + ( 280, 'MERGE_BIB_RECORDS', oils_i18n_gettext( 280, + 'MERGE_BIB_RECORDS', 'ppl', 'description' )), + ( 281, 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF', oils_i18n_gettext( 281, + 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF', 'ppl', 'description' )), + ( 282, 'CREATE_ACQ_FUNDING_SOURCE', oils_i18n_gettext( 282, + 'CREATE_ACQ_FUNDING_SOURCE', 'ppl', 'description' )), + ( 283, 'CREATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', oils_i18n_gettext( 283, + 'CREATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', 'ppl', 'description' )), + ( 284, 'CREATE_AUTHORITY_IMPORT_QUEUE', oils_i18n_gettext( 284, + 'CREATE_AUTHORITY_IMPORT_QUEUE', 'ppl', 'description' )), + ( 285, 'CREATE_AUTHORITY_RECORD_NOTE', oils_i18n_gettext( 285, + 'CREATE_AUTHORITY_RECORD_NOTE', 'ppl', 'description' )), + ( 286, 'CREATE_BIB_IMPORT_FIELD_DEF', oils_i18n_gettext( 286, + 'CREATE_BIB_IMPORT_FIELD_DEF', 'ppl', 'description' )), + ( 287, 'CREATE_BIB_IMPORT_QUEUE', oils_i18n_gettext( 287, + 'CREATE_BIB_IMPORT_QUEUE', 'ppl', 'description' )), + ( 288, 'CREATE_LOCALE', oils_i18n_gettext( 288, + 'CREATE_LOCALE', 'ppl', 'description' )), + ( 289, 'CREATE_MARC_CODE', oils_i18n_gettext( 289, + 'CREATE_MARC_CODE', 'ppl', 'description' )), + ( 290, 'CREATE_TRANSLATION', oils_i18n_gettext( 290, + 'CREATE_TRANSLATION', 'ppl', 'description' )), + ( 291, 'DELETE_ACQ_FUNDING_SOURCE', oils_i18n_gettext( 291, + 'DELETE_ACQ_FUNDING_SOURCE', 'ppl', 'description' )), + ( 292, 'DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', oils_i18n_gettext( 292, + 'DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', 'ppl', 'description' )), + ( 293, 'DELETE_AUTHORITY_IMPORT_QUEUE', oils_i18n_gettext( 293, + 'DELETE_AUTHORITY_IMPORT_QUEUE', 'ppl', 'description' )), + ( 294, 'DELETE_AUTHORITY_RECORD_NOTE', oils_i18n_gettext( 294, + 'DELETE_AUTHORITY_RECORD_NOTE', 'ppl', 'description' )), + ( 295, 'DELETE_BIB_IMPORT_IMPORT_FIELD_DEF', oils_i18n_gettext( 295, + 'DELETE_BIB_IMPORT_IMPORT_FIELD_DEF', 'ppl', 'description' )), + ( 296, 'DELETE_BIB_IMPORT_QUEUE', oils_i18n_gettext( 296, + 'DELETE_BIB_IMPORT_QUEUE', 'ppl', 'description' )), + ( 297, 'DELETE_LOCALE', oils_i18n_gettext( 297, + 'DELETE_LOCALE', 'ppl', 'description' )), + ( 298, 'DELETE_MARC_CODE', oils_i18n_gettext( 298, + 'DELETE_MARC_CODE', 'ppl', 'description' )), + ( 299, 'DELETE_TRANSLATION', oils_i18n_gettext( 299, + 'DELETE_TRANSLATION', 'ppl', 'description' )), + ( 300, 'UPDATE_ACQ_FUNDING_SOURCE', oils_i18n_gettext( 300, + 'UPDATE_ACQ_FUNDING_SOURCE', 'ppl', 'description' )), + ( 301, 'UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', oils_i18n_gettext( 301, + 'UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', 'ppl', 'description' )), + ( 302, 'UPDATE_AUTHORITY_IMPORT_QUEUE', oils_i18n_gettext( 302, + 'UPDATE_AUTHORITY_IMPORT_QUEUE', 'ppl', 'description' )), + ( 303, 'UPDATE_AUTHORITY_RECORD_NOTE', oils_i18n_gettext( 303, + 'UPDATE_AUTHORITY_RECORD_NOTE', 'ppl', 'description' )), + ( 304, 'UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF', oils_i18n_gettext( 304, + 'UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF', 'ppl', 'description' )), + ( 305, 'UPDATE_BIB_IMPORT_QUEUE', oils_i18n_gettext( 305, + 'UPDATE_BIB_IMPORT_QUEUE', 'ppl', 'description' )), + ( 306, 'UPDATE_LOCALE', oils_i18n_gettext( 306, + 'UPDATE_LOCALE', 'ppl', 'description' )), + ( 307, 'UPDATE_MARC_CODE', oils_i18n_gettext( 307, + 'UPDATE_MARC_CODE', 'ppl', 'description' )), + ( 308, 'UPDATE_TRANSLATION', oils_i18n_gettext( 308, + 'UPDATE_TRANSLATION', 'ppl', 'description' )), + ( 309, 'VIEW_ACQ_FUNDING_SOURCE', oils_i18n_gettext( 309, + 'VIEW_ACQ_FUNDING_SOURCE', 'ppl', 'description' )), + ( 310, 'VIEW_AUTHORITY_RECORD_NOTES', oils_i18n_gettext( 310, + 'VIEW_AUTHORITY_RECORD_NOTES', 'ppl', 'description' )), + ( 311, 'CREATE_IMPORT_ITEM', oils_i18n_gettext( 311, + 'CREATE_IMPORT_ITEM', 'ppl', 'description' )), + ( 312, 'CREATE_IMPORT_ITEM_ATTR_DEF', oils_i18n_gettext( 312, + 'CREATE_IMPORT_ITEM_ATTR_DEF', 'ppl', 'description' )), + ( 313, 'CREATE_IMPORT_TRASH_FIELD', oils_i18n_gettext( 313, + 'CREATE_IMPORT_TRASH_FIELD', 'ppl', 'description' )), + ( 314, 'DELETE_IMPORT_ITEM', oils_i18n_gettext( 314, + 'DELETE_IMPORT_ITEM', 'ppl', 'description' )), + ( 315, 'DELETE_IMPORT_ITEM_ATTR_DEF', oils_i18n_gettext( 315, + 'DELETE_IMPORT_ITEM_ATTR_DEF', 'ppl', 'description' )), + ( 316, 'DELETE_IMPORT_TRASH_FIELD', oils_i18n_gettext( 316, + 'DELETE_IMPORT_TRASH_FIELD', 'ppl', 'description' )), + ( 317, 'UPDATE_IMPORT_ITEM', oils_i18n_gettext( 317, + 'UPDATE_IMPORT_ITEM', 'ppl', 'description' )), + ( 318, 'UPDATE_IMPORT_ITEM_ATTR_DEF', oils_i18n_gettext( 318, + 'UPDATE_IMPORT_ITEM_ATTR_DEF', 'ppl', 'description' )), + ( 319, 'UPDATE_IMPORT_TRASH_FIELD', oils_i18n_gettext( 319, + 'UPDATE_IMPORT_TRASH_FIELD', 'ppl', 'description' )), + ( 320, 'UPDATE_ORG_UNIT_SETTING_ALL', oils_i18n_gettext( 320, + 'UPDATE_ORG_UNIT_SETTING_ALL', 'ppl', 'description' )), + ( 321, 'UPDATE_ORG_UNIT_SETTING.circ.lost_materials_processing_fee', oils_i18n_gettext( 321, + 'UPDATE_ORG_UNIT_SETTING.circ.lost_materials_processing_fee', 'ppl', 'description' )), + ( 322, 'UPDATE_ORG_UNIT_SETTING.cat.default_item_price', oils_i18n_gettext( 322, + 'UPDATE_ORG_UNIT_SETTING.cat.default_item_price', 'ppl', 'description' )), + ( 323, 'UPDATE_ORG_UNIT_SETTING.auth.opac_timeout', oils_i18n_gettext( 323, + 'UPDATE_ORG_UNIT_SETTING.auth.opac_timeout', 'ppl', 'description' )), + ( 324, 'UPDATE_ORG_UNIT_SETTING.auth.staff_timeout', oils_i18n_gettext( 324, + 'UPDATE_ORG_UNIT_SETTING.auth.staff_timeout', 'ppl', 'description' )), + ( 325, 'UPDATE_ORG_UNIT_SETTING.org.bounced_emails', oils_i18n_gettext( 325, + 'UPDATE_ORG_UNIT_SETTING.org.bounced_emails', 'ppl', 'description' )), + ( 326, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_alert_interval', oils_i18n_gettext( 326, + 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_alert_interval', 'ppl', 'description' )), + ( 327, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_interval', oils_i18n_gettext( 327, + 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_interval', 'ppl', 'description' )), + ( 328, 'UPDATE_ORG_UNIT_SETTING.credit.payments.allow', oils_i18n_gettext( 328, + 'UPDATE_ORG_UNIT_SETTING.credit.payments.allow', 'ppl', 'description' )), + ( 329, 'UPDATE_ORG_UNIT_SETTING.circ.void_overdue_on_lost', oils_i18n_gettext( 329, + 'UPDATE_ORG_UNIT_SETTING.circ.void_overdue_on_lost', 'ppl', 'description' )), + ( 330, 'UPDATE_ORG_UNIT_SETTING.circ.hold_stalling.soft', oils_i18n_gettext( 330, + 'UPDATE_ORG_UNIT_SETTING.circ.hold_stalling.soft', 'ppl', 'description' )), + ( 331, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.hard', oils_i18n_gettext( 331, + 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.hard', 'ppl', 'description' )), + ( 332, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.soft', oils_i18n_gettext( 332, + 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.soft', 'ppl', 'description' )), + ( 333, 'UPDATE_ORG_UNIT_SETTING.opac.barcode_regex', oils_i18n_gettext( 333, + 'UPDATE_ORG_UNIT_SETTING.opac.barcode_regex', 'ppl', 'description' )), + ( 334, 'UPDATE_ORG_UNIT_SETTING.global.password_regex', oils_i18n_gettext( 334, + 'UPDATE_ORG_UNIT_SETTING.global.password_regex', 'ppl', 'description' )), + ( 335, 'UPDATE_ORG_UNIT_SETTING.circ.item_checkout_history.max', oils_i18n_gettext( 335, + 'UPDATE_ORG_UNIT_SETTING.circ.item_checkout_history.max', 'ppl', 'description' )), + ( 336, 'UPDATE_ORG_UNIT_SETTING.circ.reshelving_complete.interval', oils_i18n_gettext( 336, + 'UPDATE_ORG_UNIT_SETTING.circ.reshelving_complete.interval', 'ppl', 'description' )), + ( 337, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.patron_login_timeout', oils_i18n_gettext( 337, + 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.patron_login_timeout', 'ppl', 'description' )), + ( 338, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.alert_on_checkout_event', oils_i18n_gettext( 338, + 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.alert_on_checkout_event', 'ppl', 'description' )), + ( 339, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.require_patron_password', oils_i18n_gettext( 339, + 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.require_patron_password', 'ppl', 'description' )), + ( 340, 'UPDATE_ORG_UNIT_SETTING.global.juvenile_age_threshold', oils_i18n_gettext( 340, + 'UPDATE_ORG_UNIT_SETTING.global.juvenile_age_threshold', 'ppl', 'description' )), + ( 341, 'UPDATE_ORG_UNIT_SETTING.cat.bib.keep_on_empty', oils_i18n_gettext( 341, + 'UPDATE_ORG_UNIT_SETTING.cat.bib.keep_on_empty', 'ppl', 'description' )), + ( 342, 'UPDATE_ORG_UNIT_SETTING.cat.bib.alert_on_empty', oils_i18n_gettext( 342, + 'UPDATE_ORG_UNIT_SETTING.cat.bib.alert_on_empty', 'ppl', 'description' )), + ( 343, 'UPDATE_ORG_UNIT_SETTING.patron.password.use_phone', oils_i18n_gettext( 343, + 'UPDATE_ORG_UNIT_SETTING.patron.password.use_phone', 'ppl', 'description' )), + ( 344, 'HOLD_ITEM_CHECKED_OUT.override', oils_i18n_gettext( 344, + 'Allows a user to place a hold on an item that they already have checked out', 'ppl', 'description' )), + ( 345, 'ADMIN_ACQ_CANCEL_CAUSE', oils_i18n_gettext( 345, + 'Allow a user to create/update/delete reasons for order cancellations', 'ppl', 'description' )), + ( 346, 'ACQ_XFER_MANUAL_DFUND_AMOUNT', oils_i18n_gettext( 346, + 'Allow a user to transfer different amounts of money out of one fund and into another', 'ppl', 'description' )), + ( 347, 'OVERRIDE_HOLD_HAS_LOCAL_COPY', oils_i18n_gettext( 347, + 'Allow a user to override the circ.holds.hold_has_copy_at.block setting', 'ppl', 'description' )), + ( 348, 'UPDATE_PICKUP_LIB_FROM_TRANSIT', oils_i18n_gettext( 348, + 'Allow a user to change the pickup and transit destination for a captured hold item already in transit', 'ppl', 'description' )), + ( 349, 'COPY_NEEDED_FOR_HOLD.override', oils_i18n_gettext( 349, + 'Allow a user to force renewal of an item that could fulfill a hold request', 'ppl', 'description' )), + ( 350, 'MERGE_AUTH_RECORDS', oils_i18n_gettext( 350, + 'Allow a user to merge authority records together', 'ppl', 'description' )), + ( 351, 'ALLOW_ALT_TCN', oils_i18n_gettext( 351, + 'Allows staff to import a record using an alternate TCN to avoid conflicts', 'ppl', 'description' )), + ( 352, 'ADMIN_TRIGGER_EVENT_DEF', oils_i18n_gettext( 352, + 'Allow a user to administer trigger event definitions', 'ppl', 'description' )), + ( 353, 'ADMIN_TRIGGER_CLEANUP', oils_i18n_gettext( 353, + 'Allow a user to create, delete, and update trigger cleanup entries', 'ppl', 'description' )), + ( 354, 'CREATE_TRIGGER_CLEANUP', oils_i18n_gettext( 354, + 'Allow a user to create trigger cleanup entries', 'ppl', 'description' )), + ( 355, 'DELETE_TRIGGER_CLEANUP', oils_i18n_gettext( 355, + 'Allow a user to delete trigger cleanup entries', 'ppl', 'description' )), + ( 356, 'UPDATE_TRIGGER_CLEANUP', oils_i18n_gettext( 356, + 'Allow a user to update trigger cleanup entries', 'ppl', 'description' )), + ( 357, 'CREATE_TRIGGER_EVENT_DEF', oils_i18n_gettext( 357, + 'Allow a user to create trigger event definitions', 'ppl', 'description' )), + ( 358, 'DELETE_TRIGGER_EVENT_DEF', oils_i18n_gettext( 358, + 'Allow a user to delete trigger event definitions', 'ppl', 'description' )), + ( 359, 'UPDATE_TRIGGER_EVENT_DEF', oils_i18n_gettext( 359, + 'Allow a user to update trigger event definitions', 'ppl', 'description' )), + ( 360, 'VIEW_TRIGGER_EVENT_DEF', oils_i18n_gettext( 360, + 'Allow a user to view trigger event definitions', 'ppl', 'description' )), + ( 361, 'ADMIN_TRIGGER_HOOK', oils_i18n_gettext( 361, + 'Allow a user to create, update, and delete trigger hooks', 'ppl', 'description' )), + ( 362, 'CREATE_TRIGGER_HOOK', oils_i18n_gettext( 362, + 'Allow a user to create trigger hooks', 'ppl', 'description' )), + ( 363, 'DELETE_TRIGGER_HOOK', oils_i18n_gettext( 363, + 'Allow a user to delete trigger hooks', 'ppl', 'description' )), + ( 364, 'UPDATE_TRIGGER_HOOK', oils_i18n_gettext( 364, + 'Allow a user to update trigger hooks', 'ppl', 'description' )), + ( 365, 'ADMIN_TRIGGER_REACTOR', oils_i18n_gettext( 365, + 'Allow a user to create, update, and delete trigger reactors', 'ppl', 'description' )), + ( 366, 'CREATE_TRIGGER_REACTOR', oils_i18n_gettext( 366, + 'Allow a user to create trigger reactors', 'ppl', 'description' )), + ( 367, 'DELETE_TRIGGER_REACTOR', oils_i18n_gettext( 367, + 'Allow a user to delete trigger reactors', 'ppl', 'description' )), + ( 368, 'UPDATE_TRIGGER_REACTOR', oils_i18n_gettext( 368, + 'Allow a user to update trigger reactors', 'ppl', 'description' )), + ( 369, 'ADMIN_TRIGGER_TEMPLATE_OUTPUT', oils_i18n_gettext( 369, + 'Allow a user to delete trigger template output', 'ppl', 'description' )), + ( 370, 'DELETE_TRIGGER_TEMPLATE_OUTPUT', oils_i18n_gettext( 370, + 'Allow a user to delete trigger template output', 'ppl', 'description' )), + ( 371, 'ADMIN_TRIGGER_VALIDATOR', oils_i18n_gettext( 371, + 'Allow a user to create, update, and delete trigger validators', 'ppl', 'description' )), + ( 372, 'CREATE_TRIGGER_VALIDATOR', oils_i18n_gettext( 372, + 'Allow a user to create trigger validators', 'ppl', 'description' )), + ( 373, 'DELETE_TRIGGER_VALIDATOR', oils_i18n_gettext( 373, + 'Allow a user to delete trigger validators', 'ppl', 'description' )), + ( 374, 'UPDATE_TRIGGER_VALIDATOR', oils_i18n_gettext( 374, + 'Allow a user to update trigger validators', 'ppl', 'description' )), + ( 376, 'ADMIN_BOOKING_RESOURCE', oils_i18n_gettext( 376, + 'Enables the user to create/update/delete booking resources', 'ppl', 'description' )), + ( 377, 'ADMIN_BOOKING_RESOURCE_TYPE', oils_i18n_gettext( 377, + 'Enables the user to create/update/delete booking resource types', 'ppl', 'description' )), + ( 378, 'ADMIN_BOOKING_RESOURCE_ATTR', oils_i18n_gettext( 378, + 'Enables the user to create/update/delete booking resource attributes', 'ppl', 'description' )), + ( 379, 'ADMIN_BOOKING_RESOURCE_ATTR_MAP', oils_i18n_gettext( 379, + 'Enables the user to create/update/delete booking resource attribute maps', 'ppl', 'description' )), + ( 380, 'ADMIN_BOOKING_RESOURCE_ATTR_VALUE', oils_i18n_gettext( 380, + 'Enables the user to create/update/delete booking resource attribute values', 'ppl', 'description' )), + ( 381, 'ADMIN_BOOKING_RESERVATION', oils_i18n_gettext( 381, + 'Enables the user to create/update/delete booking reservations', 'ppl', 'description' )), + ( 382, 'ADMIN_BOOKING_RESERVATION_ATTR_VALUE_MAP', oils_i18n_gettext( 382, + 'Enables the user to create/update/delete booking reservation attribute value maps', 'ppl', 'description' )), + ( 383, 'RETRIEVE_RESERVATION_PULL_LIST', oils_i18n_gettext( 383, + 'Allows a user to retrieve a booking reservation pull list', 'ppl', 'description' )), + ( 384, 'CAPTURE_RESERVATION', oils_i18n_gettext( 384, + 'Allows a user to capture booking reservations', 'ppl', 'description' )), + ( 385, 'UPDATE_RECORD', oils_i18n_gettext( 385, + 'UPDATE_RECORD', 'ppl', 'description' )), + ( 386, 'UPDATE_ORG_UNIT_SETTING.circ.block_renews_for_holds', oils_i18n_gettext( 386, + 'UPDATE_ORG_UNIT_SETTING.circ.block_renews_for_holds', 'ppl', 'description' )), + ( 387, 'MERGE_USERS', oils_i18n_gettext( 387, + 'Allows user records to be merged', 'ppl', 'description' )), + ( 388, 'ISSUANCE_HOLDS', oils_i18n_gettext( 388, + 'Allow a user to place holds on serials issuances', 'ppl', 'description' )), + ( 389, 'VIEW_CREDIT_CARD_PROCESSING', oils_i18n_gettext( 389, + 'View org unit settings related to credit card processing', 'ppl', 'description' )), + ( 390, 'ADMIN_CREDIT_CARD_PROCESSING', oils_i18n_gettext( 390, + 'Update org unit settings related to credit card processing', 'ppl', 'description' )), + ( 391, 'ADMIN_ACQ_CLAIM', oils_i18n_gettext( 391, + 'ADMIN_ACQ_CLAIM', 'ppl', 'description' )), + ( 392, 'ADMIN_ACQ_CLAIM_EVENT_TYPE', oils_i18n_gettext( 392, + 'ADMIN_ACQ_CLAIM_EVENT_TYPE', 'ppl', 'description' )), + ( 393, 'ADMIN_ACQ_CLAIM_TYPE', oils_i18n_gettext( 393, + 'ADMIN_ACQ_CLAIM_TYPE', 'ppl', 'description' )), + ( 394, 'ADMIN_ACQ_DISTRIB_FORMULA', oils_i18n_gettext( 394, + 'ADMIN_ACQ_DISTRIB_FORMULA', 'ppl', 'description' )), + ( 395, 'ADMIN_ACQ_FISCAL_YEAR', oils_i18n_gettext( 395, + 'ADMIN_ACQ_FISCAL_YEAR', 'ppl', 'description' )), + ( 396, 'ADMIN_ACQ_FUND_ALLOCATION_PERCENT', oils_i18n_gettext( 396, + 'ADMIN_ACQ_FUND_ALLOCATION_PERCENT', 'ppl', 'description' )), + ( 397, 'ADMIN_ACQ_FUND_TAG', oils_i18n_gettext( 397, + 'ADMIN_ACQ_FUND_TAG', 'ppl', 'description' )), + ( 398, 'ADMIN_ACQ_LINEITEM_ALERT_TEXT', oils_i18n_gettext( 398, + 'ADMIN_ACQ_LINEITEM_ALERT_TEXT', 'ppl', 'description' )), + ( 399, 'ADMIN_AGE_PROTECT_RULE', oils_i18n_gettext( 399, + 'ADMIN_AGE_PROTECT_RULE', 'ppl', 'description' )), + ( 400, 'ADMIN_ASSET_COPY_TEMPLATE', oils_i18n_gettext( 400, + 'ADMIN_ASSET_COPY_TEMPLATE', 'ppl', 'description' )), + ( 401, 'ADMIN_BOOKING_RESERVATION_ATTR_MAP', oils_i18n_gettext( 401, + 'ADMIN_BOOKING_RESERVATION_ATTR_MAP', 'ppl', 'description' )), + ( 402, 'ADMIN_CIRC_MATRIX_MATCHPOINT', oils_i18n_gettext( 402, + 'ADMIN_CIRC_MATRIX_MATCHPOINT', 'ppl', 'description' )), + ( 403, 'ADMIN_CIRC_MOD', oils_i18n_gettext( 403, + 'ADMIN_CIRC_MOD', 'ppl', 'description' )), + ( 404, 'ADMIN_CLAIM_POLICY', oils_i18n_gettext( 404, + 'ADMIN_CLAIM_POLICY', 'ppl', 'description' )), + ( 405, 'ADMIN_CONFIG_REMOTE_ACCOUNT', oils_i18n_gettext( 405, + 'ADMIN_CONFIG_REMOTE_ACCOUNT', 'ppl', 'description' )), + ( 406, 'ADMIN_FIELD_DOC', oils_i18n_gettext( 406, + 'ADMIN_FIELD_DOC', 'ppl', 'description' )), + ( 407, 'ADMIN_GLOBAL_FLAG', oils_i18n_gettext( 407, + 'ADMIN_GLOBAL_FLAG', 'ppl', 'description' )), + ( 408, 'ADMIN_GROUP_PENALTY_THRESHOLD', oils_i18n_gettext( 408, + 'ADMIN_GROUP_PENALTY_THRESHOLD', 'ppl', 'description' )), + ( 409, 'ADMIN_HOLD_CANCEL_CAUSE', oils_i18n_gettext( 409, + 'ADMIN_HOLD_CANCEL_CAUSE', 'ppl', 'description' )), + ( 410, 'ADMIN_HOLD_MATRIX_MATCHPOINT', oils_i18n_gettext( 410, + 'ADMIN_HOLD_MATRIX_MATCHPOINT', 'ppl', 'description' )), + ( 411, 'ADMIN_IDENT_TYPE', oils_i18n_gettext( 411, + 'ADMIN_IDENT_TYPE', 'ppl', 'description' )), + ( 412, 'ADMIN_IMPORT_ITEM_ATTR_DEF', oils_i18n_gettext( 412, + 'ADMIN_IMPORT_ITEM_ATTR_DEF', 'ppl', 'description' )), + ( 413, 'ADMIN_INDEX_NORMALIZER', oils_i18n_gettext( 413, + 'ADMIN_INDEX_NORMALIZER', 'ppl', 'description' )), + ( 414, 'ADMIN_INVOICE', oils_i18n_gettext( 414, + 'ADMIN_INVOICE', 'ppl', 'description' )), + ( 415, 'ADMIN_INVOICE_METHOD', oils_i18n_gettext( 415, + 'ADMIN_INVOICE_METHOD', 'ppl', 'description' )), + ( 416, 'ADMIN_INVOICE_PAYMENT_METHOD', oils_i18n_gettext( 416, + 'ADMIN_INVOICE_PAYMENT_METHOD', 'ppl', 'description' )), + ( 417, 'ADMIN_LINEITEM_MARC_ATTR_DEF', oils_i18n_gettext( 417, + 'ADMIN_LINEITEM_MARC_ATTR_DEF', 'ppl', 'description' )), + ( 418, 'ADMIN_MARC_CODE', oils_i18n_gettext( 418, + 'ADMIN_MARC_CODE', 'ppl', 'description' )), + ( 419, 'ADMIN_MAX_FINE_RULE', oils_i18n_gettext( 419, + 'ADMIN_MAX_FINE_RULE', 'ppl', 'description' )), + ( 420, 'ADMIN_MERGE_PROFILE', oils_i18n_gettext( 420, + 'ADMIN_MERGE_PROFILE', 'ppl', 'description' )), + ( 421, 'ADMIN_ORG_UNIT_SETTING_TYPE', oils_i18n_gettext( 421, + 'ADMIN_ORG_UNIT_SETTING_TYPE', 'ppl', 'description' )), + ( 422, 'ADMIN_RECURRING_FINE_RULE', oils_i18n_gettext( 422, + 'ADMIN_RECURRING_FINE_RULE', 'ppl', 'description' )), + ( 423, 'ADMIN_SERIAL_SUBSCRIPTION', oils_i18n_gettext( 423, + 'ADMIN_SERIAL_SUBSCRIPTION', 'ppl', 'description' )), + ( 424, 'ADMIN_STANDING_PENALTY', oils_i18n_gettext( 424, + 'ADMIN_STANDING_PENALTY', 'ppl', 'description' )), + ( 425, 'ADMIN_SURVEY', oils_i18n_gettext( 425, + 'ADMIN_SURVEY', 'ppl', 'description' )), + ( 426, 'ADMIN_USER_REQUEST_TYPE', oils_i18n_gettext( 426, + 'ADMIN_USER_REQUEST_TYPE', 'ppl', 'description' )), + ( 427, 'ADMIN_USER_SETTING_GROUP', oils_i18n_gettext( 427, + 'ADMIN_USER_SETTING_GROUP', 'ppl', 'description' )), + ( 428, 'ADMIN_USER_SETTING_TYPE', oils_i18n_gettext( 428, + 'ADMIN_USER_SETTING_TYPE', 'ppl', 'description' )), + ( 429, 'ADMIN_Z3950_SOURCE', oils_i18n_gettext( 429, + 'ADMIN_Z3950_SOURCE', 'ppl', 'description' )), + ( 430, 'CREATE_BIB_BTYPE', oils_i18n_gettext( 430, + 'CREATE_BIB_BTYPE', 'ppl', 'description' )), + ( 431, 'CREATE_BIBLIO_FINGERPRINT', oils_i18n_gettext( 431, + 'CREATE_BIBLIO_FINGERPRINT', 'ppl', 'description' )), + ( 432, 'CREATE_BIB_SOURCE', oils_i18n_gettext( 432, + 'CREATE_BIB_SOURCE', 'ppl', 'description' )), + ( 433, 'CREATE_BILLING_TYPE', oils_i18n_gettext( 433, + 'CREATE_BILLING_TYPE', 'ppl', 'description' )), + ( 434, 'CREATE_CN_BTYPE', oils_i18n_gettext( 434, + 'CREATE_CN_BTYPE', 'ppl', 'description' )), + ( 435, 'CREATE_COPY_BTYPE', oils_i18n_gettext( 435, + 'CREATE_COPY_BTYPE', 'ppl', 'description' )), + ( 436, 'CREATE_INVOICE', oils_i18n_gettext( 436, + 'CREATE_INVOICE', 'ppl', 'description' )), + ( 437, 'CREATE_INVOICE_ITEM_TYPE', oils_i18n_gettext( 437, + 'CREATE_INVOICE_ITEM_TYPE', 'ppl', 'description' )), + ( 438, 'CREATE_INVOICE_METHOD', oils_i18n_gettext( 438, + 'CREATE_INVOICE_METHOD', 'ppl', 'description' )), + ( 439, 'CREATE_MERGE_PROFILE', oils_i18n_gettext( 439, + 'CREATE_MERGE_PROFILE', 'ppl', 'description' )), + ( 440, 'CREATE_METABIB_CLASS', oils_i18n_gettext( 440, + 'CREATE_METABIB_CLASS', 'ppl', 'description' )), + ( 441, 'CREATE_METABIB_SEARCH_ALIAS', oils_i18n_gettext( 441, + 'CREATE_METABIB_SEARCH_ALIAS', 'ppl', 'description' )), + ( 442, 'CREATE_USER_BTYPE', oils_i18n_gettext( 442, + 'CREATE_USER_BTYPE', 'ppl', 'description' )), + ( 443, 'DELETE_BIB_BTYPE', oils_i18n_gettext( 443, + 'DELETE_BIB_BTYPE', 'ppl', 'description' )), + ( 444, 'DELETE_BIBLIO_FINGERPRINT', oils_i18n_gettext( 444, + 'DELETE_BIBLIO_FINGERPRINT', 'ppl', 'description' )), + ( 445, 'DELETE_BIB_SOURCE', oils_i18n_gettext( 445, + 'DELETE_BIB_SOURCE', 'ppl', 'description' )), + ( 446, 'DELETE_BILLING_TYPE', oils_i18n_gettext( 446, + 'DELETE_BILLING_TYPE', 'ppl', 'description' )), + ( 447, 'DELETE_CN_BTYPE', oils_i18n_gettext( 447, + 'DELETE_CN_BTYPE', 'ppl', 'description' )), + ( 448, 'DELETE_COPY_BTYPE', oils_i18n_gettext( 448, + 'DELETE_COPY_BTYPE', 'ppl', 'description' )), + ( 449, 'DELETE_INVOICE_ITEM_TYPE', oils_i18n_gettext( 449, + 'DELETE_INVOICE_ITEM_TYPE', 'ppl', 'description' )), + ( 450, 'DELETE_INVOICE_METHOD', oils_i18n_gettext( 450, + 'DELETE_INVOICE_METHOD', 'ppl', 'description' )), + ( 451, 'DELETE_MERGE_PROFILE', oils_i18n_gettext( 451, + 'DELETE_MERGE_PROFILE', 'ppl', 'description' )), + ( 452, 'DELETE_METABIB_CLASS', oils_i18n_gettext( 452, + 'DELETE_METABIB_CLASS', 'ppl', 'description' )), + ( 453, 'DELETE_METABIB_SEARCH_ALIAS', oils_i18n_gettext( 453, + 'DELETE_METABIB_SEARCH_ALIAS', 'ppl', 'description' )), + ( 454, 'DELETE_USER_BTYPE', oils_i18n_gettext( 454, + 'DELETE_USER_BTYPE', 'ppl', 'description' )), + ( 455, 'MANAGE_CLAIM', oils_i18n_gettext( 455, + 'MANAGE_CLAIM', 'ppl', 'description' )), + ( 456, 'UPDATE_BIB_BTYPE', oils_i18n_gettext( 456, + 'UPDATE_BIB_BTYPE', 'ppl', 'description' )), + ( 457, 'UPDATE_BIBLIO_FINGERPRINT', oils_i18n_gettext( 457, + 'UPDATE_BIBLIO_FINGERPRINT', 'ppl', 'description' )), + ( 458, 'UPDATE_BIB_SOURCE', oils_i18n_gettext( 458, + 'UPDATE_BIB_SOURCE', 'ppl', 'description' )), + ( 459, 'UPDATE_BILLING_TYPE', oils_i18n_gettext( 459, + 'UPDATE_BILLING_TYPE', 'ppl', 'description' )), + ( 460, 'UPDATE_CN_BTYPE', oils_i18n_gettext( 460, + 'UPDATE_CN_BTYPE', 'ppl', 'description' )), + ( 461, 'UPDATE_COPY_BTYPE', oils_i18n_gettext( 461, + 'UPDATE_COPY_BTYPE', 'ppl', 'description' )), + ( 462, 'UPDATE_INVOICE_ITEM_TYPE', oils_i18n_gettext( 462, + 'UPDATE_INVOICE_ITEM_TYPE', 'ppl', 'description' )), + ( 463, 'UPDATE_INVOICE_METHOD', oils_i18n_gettext( 463, + 'UPDATE_INVOICE_METHOD', 'ppl', 'description' )), + ( 464, 'UPDATE_MERGE_PROFILE', oils_i18n_gettext( 464, + 'UPDATE_MERGE_PROFILE', 'ppl', 'description' )), + ( 465, 'UPDATE_METABIB_CLASS', oils_i18n_gettext( 465, + 'UPDATE_METABIB_CLASS', 'ppl', 'description' )), + ( 466, 'UPDATE_METABIB_SEARCH_ALIAS', oils_i18n_gettext( 466, + 'UPDATE_METABIB_SEARCH_ALIAS', 'ppl', 'description' )), + ( 467, 'UPDATE_USER_BTYPE', oils_i18n_gettext( 467, + 'UPDATE_USER_BTYPE', 'ppl', 'description' )), + ( 468, 'user_request.create', oils_i18n_gettext( 468, + 'user_request.create', 'ppl', 'description' )), + ( 469, 'user_request.delete', oils_i18n_gettext( 469, + 'user_request.delete', 'ppl', 'description' )), + ( 470, 'user_request.update', oils_i18n_gettext( 470, + 'user_request.update', 'ppl', 'description' )), + ( 471, 'user_request.view', oils_i18n_gettext( 471, + 'user_request.view', 'ppl', 'description' )), + ( 472, 'VIEW_ACQ_FUND_ALLOCATION_PERCENT', oils_i18n_gettext( 472, + 'VIEW_ACQ_FUND_ALLOCATION_PERCENT', 'ppl', 'description' )), + ( 473, 'VIEW_CIRC_MATRIX_MATCHPOINT', oils_i18n_gettext( 473, + 'VIEW_CIRC_MATRIX_MATCHPOINT', 'ppl', 'description' )), + ( 474, 'VIEW_CLAIM', oils_i18n_gettext( 474, + 'VIEW_CLAIM', 'ppl', 'description' )), + ( 475, 'VIEW_GROUP_PENALTY_THRESHOLD', oils_i18n_gettext( 475, + 'VIEW_GROUP_PENALTY_THRESHOLD', 'ppl', 'description' )), + ( 476, 'VIEW_HOLD_MATRIX_MATCHPOINT', oils_i18n_gettext( 476, + 'VIEW_HOLD_MATRIX_MATCHPOINT', 'ppl', 'description' )), + ( 477, 'VIEW_INVOICE', oils_i18n_gettext( 477, + 'VIEW_INVOICE', 'ppl', 'description' )), + ( 478, 'VIEW_MERGE_PROFILE', oils_i18n_gettext( 478, + 'VIEW_MERGE_PROFILE', 'ppl', 'description' )), + ( 479, 'VIEW_SERIAL_SUBSCRIPTION', oils_i18n_gettext( 479, + 'VIEW_SERIAL_SUBSCRIPTION', 'ppl', 'description' )), + ( 480, 'VIEW_STANDING_PENALTY', oils_i18n_gettext( 480, + 'VIEW_STANDING_PENALTY', 'ppl', 'description' )), + ( 481, 'ADMIN_SERIAL_CAPTION_PATTERN', oils_i18n_gettext( 481, + 'ADMIN_SERIAL_CAPTION_PATTERN', 'ppl', 'description' )), + ( 482, 'ADMIN_SERIAL_DISTRIBUTION', oils_i18n_gettext( 482, + 'ADMIN_SERIAL_DISTRIBUTION', 'ppl', 'description' )), + ( 483, 'ADMIN_SERIAL_STREAM', oils_i18n_gettext( 483, + 'ADMIN_SERIAL_STREAM', 'ppl', 'description' )), + ( 484, 'RECEIVE_SERIAL', oils_i18n_gettext(484, + 'Receive serial items', 'ppl', 'description')), + ( 485, 'CREATE_VOLUME_SUFFIX', oils_i18n_gettext(485, + 'Create suffix label definition.', 'ppl', 'description')), + ( 486, 'UPDATE_VOLUME_SUFFIX', oils_i18n_gettext(486, + 'Update suffix label definition.', 'ppl', 'description')), + ( 487, 'DELETE_VOLUME_SUFFIX', oils_i18n_gettext(487, + 'Delete suffix label definition.', 'ppl', 'description')), + ( 488, 'CREATE_VOLUME_PREFIX', oils_i18n_gettext(488, + 'Create prefix label definition.', 'ppl', 'description')), + ( 489, 'UPDATE_VOLUME_PREFIX', oils_i18n_gettext(489, + 'Update prefix label definition.', 'ppl', 'description')), + ( 490, 'DELETE_VOLUME_PREFIX', oils_i18n_gettext(490, + 'Delete prefix label definition.', 'ppl', 'description')), + ( 491, 'CREATE_MONOGRAPH_PART', oils_i18n_gettext(491, + 'Create monograph part definition.', 'ppl', 'description')), + ( 492, 'UPDATE_MONOGRAPH_PART', oils_i18n_gettext(492, + 'Update monograph part definition.', 'ppl', 'description')), + ( 493, 'DELETE_MONOGRAPH_PART', oils_i18n_gettext(493, + 'Delete monograph part definition.', 'ppl', 'description')), + ( 494, 'ADMIN_CODED_VALUE', oils_i18n_gettext(494, + 'Create/Update/Delete SVF Record Attribute Coded Value Map', 'ppl', 'description')), + ( 495, 'ADMIN_SERIAL_ITEM', oils_i18n_gettext(495, + 'Create/Retrieve/Update/Delete Serial Item', 'ppl', 'description')), + ( 496, 'ADMIN_SVF', oils_i18n_gettext(496, + 'Create/Update/Delete SVF Record Attribute Defintion', 'ppl', 'description')), + ( 497, 'CREATE_BIB_PTYPE', oils_i18n_gettext(497, + 'Create Bibliographic Record Peer Type', 'ppl', 'description')), + ( 498, 'CREATE_PURCHASE_REQUEST', oils_i18n_gettext(498, + 'Create User Purchase Request', 'ppl', 'description')), + ( 499, 'DELETE_BIB_PTYPE', oils_i18n_gettext(499, + 'Delete Bibliographic Record Peer Type', 'ppl', 'description')), + ( 500, 'MAP_MONOGRAPH_PART', oils_i18n_gettext(500, + 'Create/Update/Delete Copy Monograph Part Map', 'ppl', 'description')), + ( 501, 'MARK_ITEM_MISSING_PIECES', oils_i18n_gettext(501, + 'Allows the Mark Item Missing Pieces action.', 'ppl', 'description')), + ( 502, 'UPDATE_BIB_PTYPE', oils_i18n_gettext(502, + 'Update Bibliographic Record Peer Type', 'ppl', 'description')), + ( 503, 'UPDATE_HOLD_REQUEST_TIME', oils_i18n_gettext(503, + 'Allows editing of a hold''s request time, and/or its Cut-in-line/Top-of-queue flag.', 'ppl', 'description')), + ( 504, 'UPDATE_PICKLIST', oils_i18n_gettext(504, + 'Allows update/re-use of an acquisitions pick/selection list.', 'ppl', 'description')), + ( 505, 'UPDATE_WORKSTATION', oils_i18n_gettext(505, + 'Allows update of a workstation during workstation registration override.', 'ppl', 'description')), + ( 506, 'VIEW_USER_SETTING_TYPE', oils_i18n_gettext(506, + 'Allows viewing of configurable user setting types.', 'ppl', 'description')), + ( 507, 'ABORT_TRANSIT_ON_LOST', oils_i18n_gettext(507, + 'Allows a user to abort a transit on a copy with status of LOST', 'ppl', 'description')), + ( 508, 'ABORT_TRANSIT_ON_MISSING', oils_i18n_gettext(508, + 'Allows a user to abort a transit on a copy with status of MISSING', 'ppl', 'description')), + ( 509, 'TRANSIT_CHECKIN_INTERVAL_BLOCK.override', oils_i18n_gettext(509, + 'Allows a user to override the TRANSIT_CHECKIN_INTERVAL_BLOCK event', 'ppl', 'description')), + ( 510, 'UPDATE_PATRON_COLLECTIONS_EXEMPT', oils_i18n_gettext(510, + 'Allows a user to indicate that a patron is exempt from collections processing', 'ppl', 'description')), + ( 511, 'PERSISTENT_LOGIN', oils_i18n_gettext( 511, + 'Allows a user to authenticate and get a long-lived session (length configured in opensrf.xml)', 'ppl', 'description' )), + ( 512, 'ACQ_INVOICE_REOPEN', oils_i18n_gettext( 512, + 'Allows a user to reopen an Acquisitions invoice', 'ppl', 'description' )), + ( 513, 'DEBUG_CLIENT', oils_i18n_gettext( 513, + 'Allows a user to use debug functions in the staff client', 'ppl', 'description' )), + ( 514, 'UPDATE_PATRON_ACTIVE_CARD', oils_i18n_gettext( 514, + 'Allows a user to manually adjust a patron''s active cards', 'ppl', 'description')), + ( 515, 'UPDATE_PATRON_PRIMARY_CARD', oils_i18n_gettext( 515, + 'Allows a user to manually adjust a patron''s primary card', 'ppl', 'description')), + ( 516, 'CREATE_REPORT_TEMPLATE', oils_i18n_gettext( 516, + 'Allows a user to create report templates', 'ppl', 'description' )), + ( 517, 'COPY_HOLDS_FORCE', oils_i18n_gettext( 517, + 'Allow a user to place a force hold on a specific copy', 'ppl', 'description' )), + ( 518, 'COPY_HOLDS_RECALL', oils_i18n_gettext( 518, + 'Allow a user to place a cataloging recall on a specific copy', 'ppl', 'description' )), + ( 519, 'ADMIN_SMS_CARRIER', oils_i18n_gettext( 519, + 'Allows a user to add/create/delete SMS Carrier entries.', 'ppl', 'description' )), + ( 520, 'COPY_DELETE_WARNING.override', oils_i18n_gettext( 520, + 'Allow a user to override warnings about deleting copies in problematic situations.', 'ppl', 'description' )), + ( 521, 'IMPORT_ACQ_LINEITEM_BIB_RECORD_UPLOAD', oils_i18n_gettext( 521, + 'Allows a user to create new bibs directly from an ACQ MARC file upload', 'ppl', 'description' )), + ( 522, 'IMPORT_AUTHORITY_MARC', oils_i18n_gettext( 522, + 'Allows a user to create new authority records', 'ppl', 'description' )), + ( 523, 'ADMIN_TOOLBAR', oils_i18n_gettext( 523, + 'Allows a user to create, edit, and delete custom toolbars', 'ppl', 'description' )), + ( 524, 'PLACE_UNFILLABLE_HOLD', oils_i18n_gettext( 524, + 'Allows a user to place a hold that cannot currently be filled.', 'ppl', 'description' )), + ( 525, 'CREATE_PATRON_STAT_CAT_ENTRY_DEFAULT', oils_i18n_gettext( 525, + 'User may set a default entry in a patron statistical category', 'ppl', 'description' )), + ( 526, 'UPDATE_PATRON_STAT_CAT_ENTRY_DEFAULT', oils_i18n_gettext( 526, + 'User may reset a default entry in a patron statistical category', 'ppl', 'description' )), + ( 527, 'DELETE_PATRON_STAT_CAT_ENTRY_DEFAULT', oils_i18n_gettext( 527, + 'User may unset a default entry in a patron statistical category', 'ppl', 'description' )), + ( 528, 'ADMIN_ORG_UNIT_CUSTOM_TREE', oils_i18n_gettext( 528, + 'User may update custom org unit trees', 'ppl', 'description' )), + ( 529, 'ADMIN_IMPORT_MATCH_SET', oils_i18n_gettext( 529, + 'Allows a user to create/retrieve/update/delete vandelay match sets', 'ppl', 'description' )), + ( 530, 'VIEW_IMPORT_MATCH_SET', oils_i18n_gettext( 530, + 'Allows a user to view vandelay match sets', 'ppl', 'description' )), + ( 531, 'ADMIN_ADDRESS_ALERT', oils_i18n_gettext( 531, + 'Allows a user to create/retrieve/update/delete address alerts', 'ppl', 'description' )), + ( 532, 'VIEW_ADDRESS_ALERT', oils_i18n_gettext( 532, + 'Allows a user to view address alerts', 'ppl', 'description' )), + ( 533, 'ADMIN_COPY_LOCATION_GROUP', oils_i18n_gettext( 533, + 'Allows a user to create/retrieve/update/delete copy location groups', 'ppl', 'description' )), + ( 534, 'ADMIN_USER_ACTIVITY_TYPE', oils_i18n_gettext( 534, + 'Allows a user to create/retrieve/update/delete user activity types', 'ppl', 'description' )), +( 535, 'VIEW_TRIGGER_EVENT', oils_i18n_gettext( 535, + 'Allows a user to view circ- and hold-related action/trigger events', 'ppl', 'description')), +( 536, 'IMPORT_OVERLAY_COPY', oils_i18n_gettext( 536, + 'Allows a user to overlay copy data in MARC import', 'ppl', 'description')), + ( 537, 'ADMIN_SEARCH_FILTER_GROUP', oils_i18n_gettext( 537, + 'Allows staff to manage search filter groups and entries', 'ppl', 'description' )), + ( 538, 'VIEW_SEARCH_FILTER_GROUP', oils_i18n_gettext( 538, + 'Allows staff to view search filter groups and entries', 'ppl', 'description' )), + ( 539, 'UPDATE_ORG_UNIT_SETTING.ui.hide_copy_editor_fields', oils_i18n_gettext( 539, + 'Allows staff to edit displayed copy editor fields', 'ppl', 'description' )), + ( 540, 'ADMIN_TOOLBAR_FOR_ORG', oils_i18n_gettext( 540, + 'Allows a user to create, edit, and delete custom toolbars for org units', 'ppl', 'description')), + ( 541, 'ADMIN_TOOLBAR_FOR_WORKSTATION', oils_i18n_gettext( 541, + 'Allows a user to create, edit, and delete custom toolbars for workstations', 'ppl', 'description')), + ( 542, 'ADMIN_TOOLBAR_FOR_USER', oils_i18n_gettext( 542, + 'Allows a user to create, edit, and delete custom toolbars for users', 'ppl', 'description')), + ( 543, 'URL_VERIFY', oils_i18n_gettext( 543, + 'Allows a user to process and verify URLs', 'ppl', 'description')), + ( 544, 'URL_VERIFY_UPDATE_SETTINGS', oils_i18n_gettext( 544, + 'Allows a user to configure URL verification org unit settings', 'ppl', 'description')), + ( 545, 'SAVED_FILTER_DIALOG_FILTERS', oils_i18n_gettext( 545, + 'Allows users to save and load sets of filters for filter dialogs, available in certain staff interfaces', 'ppl', 'description')), + ( 546, 'ADMIN_HOLD_CAPTURE_SORT', oils_i18n_gettext( 546, + 'Allows a user to make changes to best-hold selection sort order', 'ppl', 'description')), + ( 547, 'ACQ_ADD_LINEITEM_IDENTIFIER', oils_i18n_gettext(547, + 'When granted, newly added lineitem identifiers will propagate to linked bib records', 'ppl', 'description')), + ( 548, 'ACQ_SET_LINEITEM_IDENTIFIER', oils_i18n_gettext(548, + 'Allows staff to change the lineitem identifier', 'ppl', 'description')), + ( 549, 'COPY_STATUS_LONGOVERDUE.override', oils_i18n_gettext(549, + 'Allows the user to check-in long-overdue items, prompting ' || + 'long-overdue check-in processing', 'ppl', 'code')), + ( 550, 'SET_CIRC_LONG_OVERDUE', oils_i18n_gettext(550, + 'Allows the user to mark a circulation as long-overdue', 'ppl', 'code')), + ( 551, 'ADMIN_SERVER_ADDON_FOR_WORKSTATION', oils_i18n_gettext( 551, + 'Allows a user to specify which Server Add-ons get invoked at the current workstation', 'ppl', 'description')), + ( 552, 'ADMIN_FLOAT_GROUPS', oils_i18n_gettext( 552, + 'Allows administration of floating groups', 'ppl', 'description' )), + ( 553, 'UPDATE_ORG_UNIT_SETTING.circ.min_item_price', oils_i18n_gettext( 553, + 'UPDATE_ORG_UNIT_SETTING.circ.min_item_price', 'ppl', 'description' )), + ( 554, 'UPDATE_ORG_UNIT_SETTING.circ.max_item_price', oils_i18n_gettext( 554, + 'UPDATE_ORG_UNIT_SETTING.circ.max_item_price', 'ppl', 'description' )), + ( 555, 'group_application.user.staff.admin.system_admin', oils_i18n_gettext( 555, + 'Allow a user to add/remove users to/from the "System Administrator" group', 'ppl', 'description' )), + ( 556, 'group_application.user.staff.cat_admin', oils_i18n_gettext( 556, + 'Allow a user to add/remove users to/from the "Cataloging Administrator" group', 'ppl', 'description' )), + ( 557, 'group_application.user.staff.circ_admin', oils_i18n_gettext( 557, + 'Allow a user to add/remove users to/from the "Circulation Administrator" group', 'ppl', 'description' )), + ( 558, 'group_application.user.staff.data_review', oils_i18n_gettext( 558, + 'Allow a user to add/remove users to/from the "Data Review" group', 'ppl', 'description' )), + ( 559, 'group_application.user.staff.volunteers', oils_i18n_gettext( 559, + 'Allow a user to add/remove users to/from the "Volunteers" group', 'ppl', 'description' )), + ( 560, 'TOTAL_HOLD_COPY_RATIO_EXCEEDED.override', oils_i18n_gettext( 560, + 'Override the TOTAL_HOLD_COPY_RATIO_EXCEEDED event', 'ppl', 'description')), + ( 561, 'AVAIL_HOLD_COPY_RATIO_EXCEEDED.override', oils_i18n_gettext( 561, + 'Override the AVAIL_HOLD_COPY_RATIO_EXCEEDED event', 'ppl', 'description')), + ( 562, 'ADMIN_TAG_TABLE', oils_i18n_gettext( 562, + 'Allow administration of MARC tag tables', 'ppl', 'description' )), + ( 563, 'ADJUST_BILLS', oils_i18n_gettext( 563, + 'Allow a user to adjust a bill (generally to zero)', 'ppl', 'description' )) +; + +SELECT SETVAL('permission.perm_list_id_seq'::TEXT, 1000); + +INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES + (1, oils_i18n_gettext(1, 'Users', 'pgt', 'name'), NULL, NULL, '3 years', FALSE, 'group_application.user'); +INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES + (2, oils_i18n_gettext(2, 'Patrons', 'pgt', 'name'), 1, NULL, '3 years', TRUE, 'group_application.user.patron'); +INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES + (3, oils_i18n_gettext(3, 'Staff', 'pgt', 'name'), 1, NULL, '3 years', FALSE, 'group_application.user.staff'); +INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES + (4, oils_i18n_gettext(4, 'Catalogers', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.cat'); +INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES + (5, oils_i18n_gettext(5, 'Circulators', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.circ'); +INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES + (6, oils_i18n_gettext(6, 'Acquisitions', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.acq'); +INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES + (7, oils_i18n_gettext(7, 'Acquisitions Administrator', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.acq_admin'); +INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES + (8, oils_i18n_gettext(8, 'Cataloging Administrator', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.cat_admin'); +INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES + (9, oils_i18n_gettext(9, 'Circulation Administrator', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.circ_admin'); +INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES + (10, oils_i18n_gettext(10, 'Local Administrator', 'pgt', 'name'), 3, + oils_i18n_gettext(10, 'Can do anything at the Branch level', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.admin.local_admin'); +INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES + (11, oils_i18n_gettext(11, 'Serials', 'pgt', 'name'), 3, + oils_i18n_gettext(11, 'Serials (includes admin features)', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.serials'); +INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES + (12, oils_i18n_gettext(12, 'System Administrator', 'pgt', 'name'), 3, + oils_i18n_gettext(12, 'Can do anything at the System level', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.admin.system_admin'); +INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES + (13, oils_i18n_gettext(13, 'Global Administrator', 'pgt', 'name'), 3, + oils_i18n_gettext(13, 'Can do anything at the Consortium level', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.admin.global_admin'); +INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES + (14, oils_i18n_gettext(14, 'Data Review', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.data_review'); +INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES + (15, oils_i18n_gettext(15, 'Volunteers', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.volunteers'); + +SELECT SETVAL('permission.grp_tree_id_seq'::TEXT, (SELECT MAX(id) FROM permission.grp_tree)); + +INSERT INTO permission.grp_penalty_threshold (grp,org_unit,penalty,threshold) + VALUES (1,1,1,10.0); +INSERT INTO permission.grp_penalty_threshold (grp,org_unit,penalty,threshold) + VALUES (1,1,2,10.0); +INSERT INTO permission.grp_penalty_threshold (grp,org_unit,penalty,threshold) + VALUES (1,1,3,10.0); +INSERT INTO permission.grp_penalty_threshold (grp,org_unit,penalty,threshold) + VALUES (1,1,5,10.0); + +SELECT SETVAL('permission.grp_penalty_threshold_id_seq'::TEXT, (SELECT MAX(id) FROM permission.grp_penalty_threshold)); + + +-- Add basic user permissions to the Users group + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, FALSE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Users' AND + aout.name = 'Consortium' AND + perm.code IN ( + 'COPY_CHECKIN', + 'CREATE_MY_CONTAINER', + 'CREATE_PURCHASE_REQUEST', + 'MR_HOLDS', + 'OPAC_LOGIN', + 'PERSISTENT_LOGIN', + 'RENEW_CIRC', + 'TITLE_HOLDS', + 'user_request.create' + ); + + +-- Add basic user permissions to the Data Review group + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, FALSE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Data Review' AND + aout.name = 'Consortium' AND + perm.code IN ( + 'CREATE_COPY_TRANSIT', + 'VIEW_BILLING_TYPE', + 'VIEW_CIRCULATIONS', + 'VIEW_COPY_NOTES', + 'VIEW_HOLD', + 'VIEW_ORG_SETTINGS', + 'VIEW_TITLE_NOTES', + 'VIEW_TRANSACTION', + 'VIEW_USER', + 'VIEW_USER_FINES_SUMMARY', + 'VIEW_USER_TRANSACTIONS', + 'VIEW_VOLUME_NOTES', + 'VIEW_ZIP_DATA'); + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, FALSE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Data Review' AND + aout.name = 'System' AND + perm.code IN ( + 'COPY_CHECKOUT', + 'COPY_HOLDS', + 'CREATE_IN_HOUSE_USE', + 'CREATE_TRANSACTION', + 'OFFLINE_EXECUTE', + 'OFFLINE_VIEW', + 'STAFF_LOGIN', + 'VOLUME_HOLDS'); + + +-- Add basic staff permissions to the Staff group + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, FALSE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Staff' AND + aout.name = 'Consortium' AND + perm.code IN ( + 'CREATE_CONTAINER', + 'CREATE_CONTAINER_ITEM', + 'CREATE_COPY_TRANSIT', + 'CREATE_HOLD_NOTIFICATION', + 'CREATE_TRANSACTION', + 'CREATE_TRANSIT', + 'DELETE_CONTAINER', + 'DELETE_CONTAINER_ITEM', + 'group_application.user', + 'group_application.user.patron', + 'REGISTER_WORKSTATION', + 'REMOTE_Z3950_QUERY', + 'REQUEST_HOLDS', + 'STAFF_LOGIN', + 'TRANSIT_COPY', + 'UPDATE_CONTAINER', + 'VIEW_CONTAINER', + 'VIEW_COPY_CHECKOUT_HISTORY', + 'VIEW_COPY_NOTES', + 'VIEW_HOLD', + 'VIEW_HOLD_NOTIFICATION', + 'VIEW_HOLD_PERMIT', + 'VIEW_PERM_GROUPS', + 'VIEW_PERMISSION', + 'VIEW_TITLE_NOTES', + 'VIEW_TRANSACTION', + 'VIEW_USER_SETTING_TYPE', + 'VIEW_VOLUME_NOTES' + ); + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, FALSE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Staff' AND + aout.name = 'System' AND + perm.code IN ( + 'CREATE_USER', + 'UPDATE_USER', + 'VIEW_BILLING_TYPE', + 'VIEW_CIRCULATIONS', + 'VIEW_ORG_SETTINGS', + 'VIEW_PERMIT_CHECKOUT', + 'VIEW_USER', + 'VIEW_USER_FINES_SUMMARY', + 'VIEW_USER_TRANSACTIONS'); + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, FALSE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Staff' AND + aout.name = 'Branch' AND + perm.code IN ( + 'CANCEL_HOLDS', + 'COPY_CHECKOUT', + 'COPY_HOLDS', + 'COPY_TRANSIT_RECEIVE', + 'CREATE_BILL', + 'CREATE_IN_HOUSE_USE', + 'CREATE_PAYMENT', + 'RENEW_HOLD_OVERRIDE', + 'UPDATE_COPY', + 'UPDATE_VOLUME', + 'ADMIN_TOOLBAR', + 'VOLUME_HOLDS'); + + +-- Add basic cataloguing permissions to the Catalogers group + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, FALSE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Catalogers' AND + aout.name = 'Consortium' AND + perm.code IN ( + 'ALLOW_ALT_TCN', + 'CREATE_BIB_IMPORT_QUEUE', + 'CREATE_IMPORT_ITEM', + 'CREATE_MARC', + 'CREATE_TITLE_NOTE', + 'DELETE_BIB_IMPORT_QUEUE', + 'DELETE_IMPORT_ITEM', + 'DELETE_RECORD', + 'DELETE_TITLE_NOTE', + 'IMPORT_ACQ_LINEITEM_BIB_RECORD', + 'IMPORT_MARC', + 'IMPORT_AUTHORITY_MARC', + 'MERGE_AUTH_RECORDS', + 'MERGE_BIB_RECORDS', + 'UPDATE_AUTHORITY_IMPORT_QUEUE', + 'UPDATE_AUTHORITY_RECORD_NOTE', + 'UPDATE_BIB_IMPORT_QUEUE', + 'UPDATE_MARC', + 'UPDATE_RECORD', + 'user_request.view', + 'VIEW_AUTHORITY_RECORD_NOTES'); + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, FALSE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Catalogers' AND + aout.name = 'System' AND + perm.code IN ( + 'CREATE_COPY', + 'CREATE_COPY_NOTE', + 'CREATE_MFHD_RECORD', + 'CREATE_VOLUME', + 'CREATE_VOLUME_NOTE', + 'DELETE_COPY', + 'DELETE_COPY_NOTE', + 'DELETE_MFHD_RECORD', + 'DELETE_VOLUME', + 'DELETE_VOLUME_NOTE', + 'MAP_MONOGRAPH_PART', + 'MARK_ITEM_AVAILABLE', + 'MARK_ITEM_BINDERY', + 'MARK_ITEM_CHECKED_OUT', + 'MARK_ITEM_ILL', + 'MARK_ITEM_IN_PROCESS', + 'MARK_ITEM_IN_TRANSIT', + 'MARK_ITEM_LOST', + 'MARK_ITEM_MISSING', + 'MARK_ITEM_ON_HOLDS_SHELF', + 'MARK_ITEM_ON_ORDER', + 'MARK_ITEM_RESHELVING', + 'UPDATE_COPY', + 'UPDATE_COPY_NOTE', + 'UPDATE_IMPORT_ITEM', + 'UPDATE_MFHD_RECORD', + 'UPDATE_VOLUME', + 'UPDATE_VOLUME_NOTE', + 'VIEW_SERIAL_SUBSCRIPTION'); + + +-- Add advanced cataloguing permissions to the Cataloging Admin group + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, TRUE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Cataloging Administrator' AND + aout.name = 'Consortium' AND + perm.code IN ( + 'ADMIN_IMPORT_ITEM_ATTR_DEF', + 'ADMIN_MERGE_PROFILE', + 'CREATE_AUTHORITY_IMPORT_IMPORT_DEF', + 'CREATE_BIB_IMPORT_FIELD_DEF', + 'CREATE_BIB_PTYPE', + 'CREATE_BIB_SOURCE', + 'CREATE_IMPORT_ITEM_ATTR_DEF', + 'CREATE_IMPORT_TRASH_FIELD', + 'CREATE_MERGE_PROFILE', + 'CREATE_MONOGRAPH_PART', + 'CREATE_VOLUME_PREFIX', + 'CREATE_VOLUME_SUFFIX', + 'DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', + 'DELETE_BIB_PTYPE', + 'DELETE_BIB_SOURCE', + 'DELETE_IMPORT_ITEM_ATTR_DEF', + 'DELETE_IMPORT_TRASH_FIELD', + 'DELETE_MERGE_PROFILE', + 'DELETE_MONOGRAPH_PART', + 'DELETE_VOLUME_PREFIX', + 'DELETE_VOLUME_SUFFIX', + 'MAP_MONOGRAPH_PART', + 'UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', + 'UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF', + 'UPDATE_BIB_PTYPE', + 'UPDATE_IMPORT_ITEM_ATTR_DEF', + 'UPDATE_IMPORT_TRASH_FIELD', + 'UPDATE_MERGE_PROFILE', + 'UPDATE_MONOGRAPH_PART', + 'UPDATE_VOLUME_PREFIX', + 'UPDATE_VOLUME_SUFFIX' + ); + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, TRUE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Cataloging Administrator' AND + aout.name = 'System' AND + perm.code IN ( + 'CREATE_COPY_STAT_CAT', + 'CREATE_COPY_STAT_CAT_ENTRY', + 'CREATE_COPY_STAT_CAT_ENTRY_MAP', + 'RUN_REPORTS', + 'CREATE_REPORT_TEMPLATE', + 'SHARE_REPORT_FOLDER', + 'UPDATE_COPY_LOCATION', + 'UPDATE_COPY_STAT_CAT', + 'UPDATE_COPY_STAT_CAT_ENTRY', + 'VIEW_REPORT_OUTPUT'); + + +-- Add basic circulation permissions to the Circulators group + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, FALSE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Circulators' AND + aout.name = 'Branch' AND + perm.code IN ( + 'ADJUST_BILLS', + 'ADMIN_BOOKING_RESERVATION', + 'ADMIN_BOOKING_RESOURCE', + 'ADMIN_BOOKING_RESOURCE_ATTR', + 'ADMIN_BOOKING_RESOURCE_ATTR_MAP', + 'ADMIN_BOOKING_RESOURCE_ATTR_VALUE', + 'ADMIN_BOOKING_RESOURCE_TYPE', + 'ASSIGN_GROUP_PERM', + 'MARK_ITEM_AVAILABLE', + 'MARK_ITEM_BINDERY', + 'MARK_ITEM_CHECKED_OUT', + 'MARK_ITEM_ILL', + 'MARK_ITEM_IN_PROCESS', + 'MARK_ITEM_IN_TRANSIT', + 'MARK_ITEM_LOST', + 'MARK_ITEM_MISSING', + 'MARK_ITEM_MISSING_PIECES', + 'MARK_ITEM_ON_HOLDS_SHELF', + 'MARK_ITEM_ON_ORDER', + 'MARK_ITEM_RESHELVING', + 'OFFLINE_UPLOAD', + 'OFFLINE_VIEW', + 'REMOVE_USER_GROUP_LINK', + 'SET_CIRC_CLAIMS_RETURNED', + 'SET_CIRC_CLAIMS_RETURNED.override', + 'SET_CIRC_LOST', + 'SET_CIRC_MISSING', + 'UPDATE_BILL_NOTE', + 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT', + 'UPDATE_PATRON_CLAIM_RETURN_COUNT', + 'UPDATE_PAYMENT_NOTE', + 'UPDATE_PICKUP_LIB FROM_TRANSIT', + 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF', + 'VIEW_GROUP_PENALTY_THRESHOLD', + 'VIEW_STANDING_PENALTY', + 'VOID_BILLING', + 'VOLUME_HOLDS'); + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, FALSE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Circulators' AND + aout.name = 'System' AND + perm.code IN ( + 'ABORT_REMOTE_TRANSIT', + 'ABORT_TRANSIT', + 'CAPTURE_RESERVATION', + 'CIRC_CLAIMS_RETURNED.override', + 'CIRC_EXCEEDS_COPY_RANGE.override', + 'CIRC_OVERRIDE_DUE_DATE', + 'CIRC_PERMIT_OVERRIDE', + 'COPY_ALERT_MESSAGE.override', + 'COPY_BAD_STATUS.override', + 'COPY_CIRC_NOT_ALLOWED.override', + 'COPY_IS_REFERENCE.override', + 'COPY_NEEDED_FOR_HOLD.override', + 'COPY_NOT_AVAILABLE.override', + 'COPY_STATUS_LOST.override', + 'COPY_STATUS_MISSING.override', + 'CREATE_DUPLICATE_HOLDS', + 'CREATE_USER_GROUP_LINK', + 'DELETE_TRANSIT', + 'HOLD_EXISTS.override', + 'HOLD_ITEM_CHECKED_OUT.override', + 'ISSUANCE_HOLDS', + 'ITEM_AGE_PROTECTED.override', + 'ITEM_ON_HOLDS_SHELF.override', + 'MAX_RENEWALS_REACHED.override', + 'OVERRIDE_HOLD_HAS_LOCAL_COPY', + 'PATRON_EXCEEDS_CHECKOUT_COUNT.override', + 'PATRON_EXCEEDS_FINES.override', + 'PATRON_EXCEEDS_OVERDUE_COUNT.override', + 'RETRIEVE_RESERVATION_PULL_LIST', + 'UPDATE_HOLD'); + + +-- Add advanced circulation permissions to the Circulation Admin group + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, TRUE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Circulation Administrator' AND + aout.name = 'Branch' AND + perm.code IN ( + 'DELETE_USER'); + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, TRUE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Circulation Administrator' AND + aout.name = 'Consortium' AND + perm.code IN ( + 'ADMIN_MAX_FINE_RULE', + 'CREATE_CIRC_DURATION', + 'DELETE_CIRC_DURATION', + 'MARK_ITEM_MISSING_PIECES', + 'UPDATE_CIRC_DURATION', + 'UPDATE_HOLD_REQUEST_TIME', + 'UPDATE_NET_ACCESS_LEVEL', + 'VIEW_CIRC_MATRIX_MATCHPOINT', + 'ABORT_TRANSIT_ON_LOST', + 'ABORT_TRANSIT_ON_MISSING', + 'UPDATE_PATRON_COLLECTIONS_EXEMPT', + 'VIEW_HOLD_MATRIX_MATCHPOINT'); + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, TRUE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Circulation Administrator' AND + aout.name = 'System' AND + perm.code IN ( + 'ADJUST_BILLS', + 'ADMIN_BOOKING_RESERVATION', + 'ADMIN_BOOKING_RESERVATION_ATTR_MAP', + 'ADMIN_BOOKING_RESERVATION_ATTR_VALUE_MAP', + 'ADMIN_BOOKING_RESOURCE', + 'ADMIN_BOOKING_RESOURCE_ATTR', + 'ADMIN_BOOKING_RESOURCE_ATTR_MAP', + 'ADMIN_BOOKING_RESOURCE_ATTR_VALUE', + 'ADMIN_BOOKING_RESOURCE_TYPE', + 'ADMIN_COPY_LOCATION_ORDER', + 'ADMIN_HOLD_CANCEL_CAUSE', + 'ASSIGN_GROUP_PERM', + 'BAR_PATRON', + 'COPY_HOLDS', + 'COPY_TRANSIT_RECEIVE', + 'CREATE_BILL', + 'CREATE_BILLING_TYPE', + 'CREATE_NON_CAT_TYPE', + 'CREATE_PATRON_STAT_CAT', + 'CREATE_PATRON_STAT_CAT_ENTRY', + 'CREATE_PATRON_STAT_CAT_ENTRY_DEFAULT', + 'CREATE_PATRON_STAT_CAT_ENTRY_MAP', + 'CREATE_USER_GROUP_LINK', + 'DELETE_BILLING_TYPE', + 'DELETE_NON_CAT_TYPE', + 'DELETE_PATRON_STAT_CAT', + 'DELETE_PATRON_STAT_CAT_ENTRY', + 'DELETE_PATRON_STAT_CAT_ENTRY_DEFAULT', + 'DELETE_PATRON_STAT_CAT_ENTRY_MAP', + 'DELETE_TRANSIT', + 'group_application.user.staff', + 'MANAGE_BAD_DEBT', + 'MARK_ITEM_AVAILABLE', + 'MARK_ITEM_BINDERY', + 'MARK_ITEM_CHECKED_OUT', + 'MARK_ITEM_ILL', + 'MARK_ITEM_IN_PROCESS', + 'MARK_ITEM_IN_TRANSIT', + 'MARK_ITEM_LOST', + 'MARK_ITEM_MISSING', + 'MARK_ITEM_ON_HOLDS_SHELF', + 'MARK_ITEM_ON_ORDER', + 'MARK_ITEM_RESHELVING', + 'MERGE_USERS', + 'money.collections_tracker.create', + 'money.collections_tracker.delete', + 'OFFLINE_EXECUTE', + 'OFFLINE_UPLOAD', + 'OFFLINE_VIEW', + 'REMOVE_USER_GROUP_LINK', + 'SET_CIRC_CLAIMS_RETURNED', + 'SET_CIRC_CLAIMS_RETURNED.override', + 'SET_CIRC_LOST', + 'SET_CIRC_MISSING', + 'UNBAR_PATRON', + 'UPDATE_BILL_NOTE', + 'UPDATE_NON_CAT_TYPE', + 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT', + 'UPDATE_PATRON_CLAIM_RETURN_COUNT', + 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF', + 'UPDATE_PICKUP_LIB_FROM_TRANSIT', + 'UPDATE_USER', + 'VIEW_REPORT_OUTPUT', + 'VIEW_STANDING_PENALTY', + 'VOID_BILLING', + 'TRANSIT_CHECKIN_INTERVAL_BLOCK.override', + 'VOLUME_HOLDS'); + + +-- Add basic sys admin permissions to the Local Administrator group + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, TRUE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Local Administrator' AND + aout.name = 'Branch' AND + perm.code IN ( + 'EVERYTHING'); + + +-- Add administration permissions to the System Administrator group + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, TRUE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'System Administrator' AND + aout.name = 'System' AND + perm.code IN ( + 'EVERYTHING'); + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, FALSE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'System Administrator' AND + aout.name = 'Consortium' AND + perm.code ~ '^VIEW_TRIGGER'; + + +-- Add administration permissions to the Global Administrator group + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, TRUE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Global Administrator' AND + aout.name = 'Consortium' AND + perm.code IN ( + 'EVERYTHING'); + + +-- Add basic acquisitions permissions to the Acquisitions group + +SELECT SETVAL('permission.grp_perm_map_id_seq'::TEXT, (SELECT MAX(id) FROM permission.grp_perm_map)); + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, FALSE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Acquisitions' AND + aout.name = 'Consortium' AND + perm.code IN ( + 'ALLOW_ALT_TCN', + 'CREATE_BIB_IMPORT_QUEUE', + 'CREATE_IMPORT_ITEM', + 'CREATE_INVOICE', + 'CREATE_MARC', + 'CREATE_PICKLIST', + 'CREATE_PURCHASE_ORDER', + 'DELETE_BIB_IMPORT_QUEUE', + 'DELETE_IMPORT_ITEM', + 'DELETE_RECORD', + 'DELETE_VOLUME', + 'DELETE_VOLUME_NOTE', + 'GENERAL_ACQ', + 'IMPORT_ACQ_LINEITEM_BIB_RECORD', + 'IMPORT_MARC', + 'MANAGE_CLAIM', + 'MANAGE_FUND', + 'MANAGE_FUNDING_SOURCE', + 'MANAGE_PROVIDER', + 'MARK_ITEM_AVAILABLE', + 'MARK_ITEM_BINDERY', + 'MARK_ITEM_CHECKED_OUT', + 'MARK_ITEM_ILL', + 'MARK_ITEM_IN_PROCESS', + 'MARK_ITEM_IN_TRANSIT', + 'MARK_ITEM_LOST', + 'MARK_ITEM_MISSING', + 'MARK_ITEM_ON_HOLDS_SHELF', + 'MARK_ITEM_ON_ORDER', + 'MARK_ITEM_RESHELVING', + 'RECEIVE_PURCHASE_ORDER', + 'UPDATE_BATCH_COPY', + 'UPDATE_BIB_IMPORT_QUEUE', + 'UPDATE_COPY', + 'UPDATE_FUND', + 'UPDATE_FUND_ALLOCATION', + 'UPDATE_FUNDING_SOURCE', + 'UPDATE_IMPORT_ITEM', + 'UPDATE_MARC', + 'UPDATE_PICKLIST', + 'UPDATE_RECORD', + 'UPDATE_VOLUME', + 'user_request.delete', + 'user_request.update', + 'user_request.view', + 'VIEW_ACQ_FUND_ALLOCATION_PERCENT', + 'VIEW_ACQ_FUNDING_SOURCE', + 'VIEW_FUND', + 'VIEW_FUND_ALLOCATION', + 'VIEW_FUNDING_SOURCE', + 'VIEW_HOLDS', + 'VIEW_INVOICE', + 'VIEW_ORG_SETTINGS', + 'VIEW_PICKLIST', + 'VIEW_PROVIDER', + 'VIEW_PURCHASE_ORDER', + 'VIEW_REPORT_OUTPUT'); + + +-- Add acquisitions administration permissions to the Acquisitions Admin group + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, TRUE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Acquisitions Administrator' AND + aout.name = 'Consortium' AND + perm.code IN ( + 'ACQ_INVOICE_REOPEN', + 'ACQ_XFER_MANUAL_DFUND_AMOUNT', + 'ADMIN_ACQ_CANCEL_CAUSE', + 'ADMIN_ACQ_CLAIM', + 'ADMIN_ACQ_CLAIM_EVENT_TYPE', + 'ADMIN_ACQ_CLAIM_TYPE', + 'ADMIN_ACQ_DISTRIB_FORMULA', + 'ADMIN_ACQ_FISCAL_YEAR', + 'ADMIN_ACQ_FUND', + 'ADMIN_ACQ_FUND_ALLOCATION_PERCENT', + 'ADMIN_ACQ_FUND_TAG', + 'ADMIN_ACQ_LINE_ITEM_ALERT_TEXT', + 'ADMIN_CLAIM_POLICY', + 'ADMIN_CURRENCY_TYPE', + 'ADMIN_FUND', + 'ADMIN_FUNDING_SOURCE', + 'ADMIN_INVOICE', + 'ADMIN_INVOICE_METHOD', + 'ADMIN_INVOICE_PAYMENT_METHOD', + 'ADMIN_LINEITEM_MARC_ATTR_DEF', + 'ADMIN_PROVIDER', + 'ADMIN_USER_REQUEST_TYPE', + 'CREATE_ACQ_FUNDING_SOURCE', + 'CREATE_FUND', + 'CREATE_FUND_ALLOCATION', + 'CREATE_FUNDING_SOURCE', + 'CREATE_INVOICE_ITEM_TYPE', + 'CREATE_INVOICE_METHOD', + 'CREATE_PROVIDER', + 'DELETE_ACQ_FUNDING_SOURCE', + 'DELETE_FUND', + 'DELETE_FUND_ALLOCATION', + 'DELETE_FUNDING_SOURCE', + 'DELETE_INVOICE_ITEM_TYPE', + 'DELETE_INVOICE_METHOD', + 'DELETE_PROVIDER', + 'RUN_REPORTS', + 'CREATE_REPORT_TEMPLATE', + 'SHARE_REPORT_FOLDER', + 'UPDATE_ACQ_FUNDING_SOURCE', + 'UPDATE_INVOICE_ITEM_TYPE', + 'UPDATE_INVOICE_METHOD', + 'UPDATE_PICKLIST' + ); + +-- Add serials permissions to the Serials group + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, FALSE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Serials' AND + aout.name = 'System' AND + perm.code IN ( + 'ADMIN_ASSET_COPY_TEMPLATE', + 'ADMIN_SERIAL_CAPTION_PATTERN', + 'ADMIN_SERIAL_DISTRIBUTION', + 'ADMIN_SERIAL_ITEM', + 'ADMIN_SERIAL_STREAM', + 'ADMIN_SERIAL_SUBSCRIPTION', + 'ISSUANCE_HOLDS', + 'RECEIVE_SERIAL'); + + +-- Add basic staff permissions to the Volunteers group + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, FALSE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Volunteers' AND + aout.name = 'Branch' AND + perm.code IN ( + 'COPY_CHECKOUT', + 'CREATE_BILL', + 'CREATE_IN_HOUSE_USE', + 'CREATE_PAYMENT', + 'VIEW_BILLING_TYPE', + 'VIEW_CIRCS', + 'VIEW_COPY_CHECKOUT', + 'VIEW_HOLD', + 'VIEW_TITLE_HOLDS', + 'VIEW_TRANSACTION', + 'VIEW_USER', + 'VIEW_USER_FINES_SUMMARY', + 'VIEW_USER_TRANSACTIONS'); + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, FALSE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Volunteers' AND + aout.name = 'Consortium' AND + perm.code IN ( + 'CREATE_COPY_TRANSIT', + 'CREATE_TRANSACTION', + 'CREATE_TRANSIT', + 'STAFF_LOGIN', + 'TRANSIT_COPY', + 'VIEW_ORG_SETTINGS'); + + +-- Admin user account +INSERT INTO actor.passwd_type + (code, name, login, crypt_algo, iter_count) + VALUES ('main', 'Main Login Password', TRUE, 'bf', 10); + +INSERT INTO actor.usr ( profile, card, usrname, passwd, first_given_name, family_name, dob, master_account, super_user, ident_type, ident_value, home_ou ) VALUES ( 1, 1, md5(random()::text), md5(random()::text), 'Administrator', 'System Account', '1979-01-22', TRUE, TRUE, 1, 'identification', 1 ); + +-- Admin user barcode +INSERT INTO actor.card (usr, barcode) VALUES (1,md5(random()::text)); +UPDATE actor.usr SET card = (SELECT currval('actor.card_id_seq')) WHERE id = 1; + +-- Admin user permissions +INSERT INTO permission.usr_perm_map (usr,perm,depth) VALUES (1,-1,0); + +-- Set a work_ou for the Administrator user +INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (1, 1); + +--010.schema.biblio.sql: +ALTER TABLE biblio.record_entry DISABLE TRIGGER ALL; +INSERT INTO biblio.record_entry VALUES (-1,1,1,1,-1,NOW(),NOW(),FALSE,FALSE,'','AUTOGEN','-1','','FOO'); +ALTER TABLE biblio.record_entry ENABLE TRIGGER ALL; + +--040.schema.asset.sql: +INSERT INTO asset.copy_location (id, name,owning_lib) VALUES (1, oils_i18n_gettext(1, 'Stacks', 'acpl', 'name'),1); +SELECT SETVAL('asset.copy_location_id_seq'::TEXT, 100); + +INSERT INTO asset.call_number_suffix (id, owning_lib, label) VALUES (-1, 1, ''); +INSERT INTO asset.call_number_prefix (id, owning_lib, label) VALUES (-1, 1, ''); +ALTER TABLE asset.call_number DISABLE TRIGGER ALL; +INSERT INTO asset.call_number VALUES (-1,1,NOW(),1,NOW(),-1,1,'UNCATALOGED',DEFAULT,DEFAULT,DEFAULT,1); +ALTER TABLE asset.call_number ENABLE TRIGGER ALL; + +--090.schema.action.sql +INSERT INTO action.hold_request_cancel_cause (id,label) VALUES (1, oils_i18n_gettext(1, 'Untargeted expiration', 'ahrcc', 'label')); +INSERT INTO action.hold_request_cancel_cause (id,label) VALUES (2, oils_i18n_gettext(2, 'Hold Shelf expiration', 'ahrcc', 'label')); +INSERT INTO action.hold_request_cancel_cause (id,label) VALUES (3, oils_i18n_gettext(3, 'Patron via phone', 'ahrcc', 'label')); +INSERT INTO action.hold_request_cancel_cause (id,label) VALUES (4, oils_i18n_gettext(4, 'Patron in person', 'ahrcc', 'label')); +INSERT INTO action.hold_request_cancel_cause (id,label) VALUES (5, oils_i18n_gettext(5, 'Staff forced', 'ahrcc', 'label')); +INSERT INTO action.hold_request_cancel_cause (id,label) VALUES (6, oils_i18n_gettext(6, 'Patron via OPAC', 'ahrcc', 'label')); +INSERT INTO action.hold_request_cancel_cause (id,label) VALUES (7, oils_i18n_gettext(7, 'Patron via SIP', 'ahrcc', 'label')); +SELECT SETVAL('action.hold_request_cancel_cause_id_seq', 100); + + +-- circ matrix +INSERT INTO config.circ_matrix_matchpoint (org_unit,grp,circulate,duration_rule,recurring_fine_rule,max_fine_rule) VALUES (1,1,true,11,1,1); + +INSERT INTO config.circ_matrix_weights(name, org_unit, grp, circ_modifier, copy_location, marc_type, marc_form, marc_bib_level, marc_vr_format, copy_circ_lib, copy_owning_lib, user_home_ou, ref_flag, juvenile_flag, is_renewal, usr_age_upper_bound, usr_age_lower_bound, item_age) VALUES + ('Default', 10.0, 11.0, 5.0, 5.0, 4.0, 3.0, 2.0, 2.0, 8.0, 8.0, 8.0, 1.0, 6.0, 7.0, 0.0, 0.0, 0.0), + ('Org_Unit_First', 11.0, 10.0, 5.0, 5.0, 4.0, 3.0, 2.0, 2.0, 8.0, 8.0, 8.0, 1.0, 6.0, 7.0, 0.0, 0.0, 0.0), + ('Item_Owner_First', 8.0, 8.0, 5.0, 5.0, 4.0, 3.0, 2.0, 2.0, 10.0, 11.0, 8.0, 1.0, 6.0, 7.0, 0.0, 0.0, 0.0), + ('All_Equal', 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + +-- hold matrix - 110.hold_matrix.sql: +INSERT INTO config.hold_matrix_matchpoint (requestor_grp) VALUES (1); + +INSERT INTO config.hold_matrix_weights(name, user_home_ou, request_ou, pickup_ou, item_owning_ou, item_circ_ou, usr_grp, requestor_grp, circ_modifier, marc_type, marc_form, marc_bib_level, marc_vr_format, juvenile_flag, ref_flag, item_age) VALUES + ('Default', 5.0, 5.0, 5.0, 5.0, 5.0, 7.0, 8.0, 4.0, 3.0, 2.0, 1.0, 1.0, 4.0, 0.0, 0.0), + ('Item_Owner_First', 5.0, 5.0, 5.0, 8.0, 7.0, 5.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 4.0, 0.0, 0.0), + ('User_Before_Requestor', 5.0, 5.0, 5.0, 5.0, 5.0, 8.0, 7.0, 4.0, 3.0, 2.0, 1.0, 1.0, 4.0, 0.0, 0.0), + ('All_Equal', 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + +-- dynamic weight associations +INSERT INTO config.weight_assoc(active, org_unit, circ_weights, hold_weights) VALUES + (true, 1, 1, 1); + +-- User setting types +INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype) + VALUES ('opac.default_font', TRUE, + oils_i18n_gettext('opac.default_font', 'OPAC Font Size', 'cust', 'label'), + oils_i18n_gettext('opac.default_font', 'OPAC Font Size', 'cust', 'description'), + 'string'); + +INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype) + VALUES ('opac.default_search_depth', TRUE, + oils_i18n_gettext('opac.default_search_depth', 'OPAC Search Depth', 'cust', 'label'), + oils_i18n_gettext('opac.default_search_depth', 'OPAC Search Depth', 'cust', 'description'), + 'integer'); + +INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype) + VALUES ('opac.default_search_location', TRUE, + oils_i18n_gettext('opac.default_search_location', 'OPAC Search Location', 'cust', 'label'), + oils_i18n_gettext('opac.default_search_location', 'OPAC Search Location', 'cust', 'description'), + 'integer'); + +INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype) + VALUES ('opac.hits_per_page', TRUE, + oils_i18n_gettext('opac.hits_per_page', 'Hits per Page', 'cust', 'label'), + oils_i18n_gettext('opac.hits_per_page', 'Hits per Page', 'cust', 'description'), + 'string'); + +INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype) + VALUES ('opac.hold_notify', TRUE, + oils_i18n_gettext('opac.hold_notify', 'Hold Notification Format', 'cust', 'label'), + oils_i18n_gettext('opac.hold_notify', 'Hold Notification Format', 'cust', 'description'), + 'string'); + +INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype) + VALUES ('staff_client.catalog.record_view.default', TRUE, + oils_i18n_gettext('staff_client.catalog.record_view.default', 'Default Record View', 'cust', 'label'), + oils_i18n_gettext('staff_client.catalog.record_view.default', 'Default Record View', 'cust', 'description'), + 'string'); + +INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype) + VALUES ('staff_client.copy_editor.templates', TRUE, + oils_i18n_gettext('staff_client.copy_editor.templates', 'Copy Editor Template', 'cust', 'label'), + oils_i18n_gettext('staff_client.copy_editor.templates', 'Copy Editor Template', 'cust', 'description'), + 'object'); + +INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype) + VALUES ('circ.holds_behind_desk', FALSE, + oils_i18n_gettext('circ.holds_behind_desk', 'Hold is behind Circ Desk', 'cust', 'label'), + oils_i18n_gettext('circ.holds_behind_desk', 'Hold is behind Circ Desk', 'cust', 'description'), + 'bool'); + +INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype) + VALUES ('opac.default_pickup_location', TRUE, + oils_i18n_gettext('opac.default_pickup_location', 'Default Hold Pickup Location', 'cust', 'label'), + oils_i18n_gettext('opac.default_pickup_location', 'Default location for holds pickup', 'cust', 'description'), + 'integer'); + +INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype) + VALUES ( + 'opac.lists_per_page', + TRUE, + oils_i18n_gettext( + 'opac.lists_per_page', + 'Lists per Page', + 'cust', + 'label' + ), + oils_i18n_gettext( + 'opac.lists_per_page', + 'A number designating the amount of lists displayed per page.', + 'cust', + 'description' + ), + 'string' + ); + +INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype) + VALUES ( + 'opac.list_items_per_page', + TRUE, + oils_i18n_gettext( + 'opac.list_items_per_page', + 'List Items per Page', + 'cust', + 'label' + ), + oils_i18n_gettext( + 'opac.list_items_per_page', + 'A number designating the amount of list items displayed per page of a selected list.', + 'cust', + 'description' + ), + 'string' + ); + +-- Add groups for org_unit settings +INSERT INTO config.settings_group (name, label) VALUES +('acq', oils_i18n_gettext('config.settings_group.system', 'Acquisitions', 'coust', 'label')), +('sys', oils_i18n_gettext('config.settings_group.system', 'System', 'coust', 'label')), +('gui', oils_i18n_gettext('config.settings_group.gui', 'GUI', 'coust', 'label')), +('lib', oils_i18n_gettext('config.settings_group.lib', 'Library', 'coust', 'label')), +('sec', oils_i18n_gettext('config.settings_group.sec', 'Security', 'coust', 'label')), +('cat', oils_i18n_gettext('config.settings_group.cat', 'Cataloging', 'coust', 'label')), +('holds', oils_i18n_gettext('config.settings_group.holds', 'Holds', 'coust', 'label')), +('circ', oils_i18n_gettext('config.settings_group.circulation', 'Circulation', 'coust', 'label')), +('self', oils_i18n_gettext('config.settings_group.self', 'Self Check', 'coust', 'label')), +('opac', oils_i18n_gettext('config.settings_group.opac', 'OPAC', 'coust', 'label')), +('prog', oils_i18n_gettext('config.settings_group.program', 'Program', 'coust', 'label')), +('glob', oils_i18n_gettext('config.settings_group.global', 'Global', 'coust', 'label')), +('finance', oils_i18n_gettext('config.settings_group.finances', 'Finances', 'coust', 'label')), +('credit', oils_i18n_gettext('config.settings_group.ccp', 'Credit Card Processing', 'coust', 'label')), +('serial', oils_i18n_gettext('config.settings_group.serial', 'Serials', 'coust', 'label')), +('recall', oils_i18n_gettext('config.settings_group.recall', 'Recalls', 'coust', 'label')), +('booking', oils_i18n_gettext('config.settings_group.booking', 'Booking', 'coust', 'label')), +('offline', oils_i18n_gettext('config.settings_group.offline', 'Offline', 'coust', 'label')), +('receipt_template', oils_i18n_gettext('config.settings_group.receipt_template', 'Receipt Template', 'coust', 'label')), +('sms', oils_i18n_gettext('sms','SMS Text Messages','csg','label')), +('vandelay', oils_i18n_gettext('vandelay','Vandelay','coust','label')) +; + + +INSERT INTO acq.user_request_type (id,label) VALUES (1, oils_i18n_gettext('1', 'Books', 'aurt', 'label')); +INSERT INTO acq.user_request_type (id,label) VALUES (2, oils_i18n_gettext('2', 'Journal/Magazine & Newspaper Articles', 'aurt', 'label')); +INSERT INTO acq.user_request_type (id,label) VALUES (3, oils_i18n_gettext('3', 'Audiobooks', 'aurt', 'label')); +INSERT INTO acq.user_request_type (id,label) VALUES (4, oils_i18n_gettext('4', 'Music', 'aurt', 'label')); +INSERT INTO acq.user_request_type (id,label) VALUES (5, oils_i18n_gettext('5', 'DVDs', 'aurt', 'label')); + +SELECT SETVAL('acq.user_request_type_id_seq'::TEXT, 6); + + +-- org_unit setting types +INSERT into config.org_unit_setting_type +( name, grp, label, description, datatype, fm_class ) VALUES + +( 'acq.copy_creator_uses_receiver', 'acq', + oils_i18n_gettext('acq.copy_creator_uses_receiver', + 'Set copy creator as receiver', + 'coust', 'label'), + oils_i18n_gettext('acq.copy_creator_uses_receiver', + 'When receiving a copy in acquisitions, set the copy "creator" to be the staff that received the copy', + 'coust', 'description'), + 'bool', null) + +,( 'acq.default_circ_modifier', 'acq', + oils_i18n_gettext('acq.default_circ_modifier', + 'Default circulation modifier', + 'coust', 'label'), + oils_i18n_gettext('acq.default_circ_modifier', + 'Default circulation modifier', + 'coust', 'description'), + 'string', null) + +,( 'acq.default_copy_location', 'acq', + oils_i18n_gettext('acq.default_copy_location', + 'Default copy location', + 'coust', 'label'), + oils_i18n_gettext('acq.default_copy_location', + 'Default copy location', + 'coust', 'description'), + 'link', 'acpl') + +,( 'acq.fund.balance_limit.block', 'acq', + oils_i18n_gettext('acq.fund.balance_limit.block', + 'Fund Spending Limit for Block', + 'coust', 'label'), + oils_i18n_gettext('acq.fund.balance_limit.block', + 'When the amount remaining in the fund, including spent money and encumbrances, goes below this percentage, attempts to spend from the fund will be blocked.', + 'coust', 'description'), + 'integer', null) + +,( 'acq.fund.balance_limit.warn', 'acq', + oils_i18n_gettext('acq.fund.balance_limit.warn', + 'Fund Spending Limit for Warning', + 'coust', 'label'), + oils_i18n_gettext('acq.fund.balance_limit.warn', + 'When the amount remaining in the fund, including spent money and encumbrances, goes below this percentage, attempts to spend from the fund will result in a warning to the staff.', + 'coust', 'description'), + 'integer', null) + +,( 'acq.holds.allow_holds_from_purchase_request', 'acq', + oils_i18n_gettext('acq.holds.allow_holds_from_purchase_request', + 'Allows patrons to create automatic holds from purchase requests.', + 'coust', 'label'), + oils_i18n_gettext('acq.holds.allow_holds_from_purchase_request', + 'Allows patrons to create automatic holds from purchase requests.', + 'coust', 'description'), + 'bool', null) + +,( 'acq.tmp_barcode_prefix', 'acq', + oils_i18n_gettext('acq.tmp_barcode_prefix', + 'Temporary barcode prefix', + 'coust', 'label'), + oils_i18n_gettext('acq.tmp_barcode_prefix', + 'Temporary barcode prefix', + 'coust', 'description'), + 'string', null) + +,( 'acq.tmp_callnumber_prefix', 'acq', + oils_i18n_gettext('acq.tmp_callnumber_prefix', + 'Temporary call number prefix', + 'coust', 'label'), + oils_i18n_gettext('acq.tmp_callnumber_prefix', + 'Temporary call number prefix', + 'coust', 'description'), + 'string', null) + +,( 'auth.opac_timeout', 'sec', + oils_i18n_gettext('auth.opac_timeout', + 'OPAC Inactivity Timeout (in seconds)', + 'coust', 'label'), + oils_i18n_gettext('auth.opac_timeout', + 'OPAC Inactivity Timeout (in seconds)', + 'coust', 'description'), + 'integer', null) + +,( 'auth.persistent_login_interval', 'sec', + oils_i18n_gettext('auth.persistent_login_interval', + 'Persistent Login Duration', + 'coust', 'label'), + oils_i18n_gettext('auth.persistent_login_interval', + 'How long a persistent login lasts. E.g. ''2 weeks''', + 'coust', 'description'), + 'interval', null) + +,( 'auth.staff_timeout', 'sec', + oils_i18n_gettext('auth.staff_timeout', + 'Staff Login Inactivity Timeout (in seconds)', + 'coust', 'label'), + oils_i18n_gettext('auth.staff_timeout', + 'Staff Login Inactivity Timeout (in seconds)', + 'coust', 'description'), + 'integer', null) + +,( 'booking.allow_email_notify', 'booking', + oils_i18n_gettext('booking.allow_email_notify', + 'Allow Email Notify', + 'coust', 'label'), + oils_i18n_gettext('booking.allow_email_notify', + 'Permit email notification when a reservation is ready for pickup.', + 'coust', 'description'), + 'bool', null) + +,( 'cat.bib.alert_on_empty', 'gui', + oils_i18n_gettext('cat.bib.alert_on_empty', + 'Alert on empty bib records', + 'coust', 'label'), + oils_i18n_gettext('cat.bib.alert_on_empty', + 'Alert staff when the last copy for a record is being deleted', + 'coust', 'description'), + 'bool', null) + +,( 'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel', 'cat', + oils_i18n_gettext('cat.bib.delete_on_no_copy_via_acq_lineitem_cancel', + 'Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', + 'coust', 'label'), + oils_i18n_gettext('cat.bib.delete_on_no_copy_via_acq_lineitem_cancel', + 'Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', + 'coust', 'description'), + 'bool', null) + +,( 'cat.bib.keep_on_empty', 'prog', + oils_i18n_gettext('cat.bib.keep_on_empty', + 'Retain empty bib records', + 'coust', 'label'), + oils_i18n_gettext('cat.bib.keep_on_empty', + 'Retain a bib record even when all attached copies are deleted', + 'coust', 'description'), + 'bool', null) + +,( 'cat.default_classification_scheme', 'cat', + oils_i18n_gettext('cat.default_classification_scheme', + 'Default Classification Scheme', + 'coust', 'label'), + oils_i18n_gettext('cat.default_classification_scheme', + 'Defines the default classification scheme for new call numbers: 1 = Generic; 2 = Dewey; 3 = LC', + 'coust', 'description'), + 'link', 'acnc') + +,( 'cat.default_copy_status_fast', 'cat', + oils_i18n_gettext('cat.default_copy_status_fast', + 'Default copy status (fast add)', + 'coust', 'label'), + oils_i18n_gettext('cat.default_copy_status_fast', + 'Default status when a copy is created using the "Fast Add" interface.', + 'coust', 'description'), + 'link', 'ccs') + +,( 'cat.default_copy_status_normal', 'cat', + oils_i18n_gettext('cat.default_copy_status_normal', + 'Default copy status (normal)', + 'coust', 'label'), + oils_i18n_gettext('cat.default_copy_status_normal', + 'Default status when a copy is created using the normal volume/copy creator interface.', + 'coust', 'description'), + 'link', 'ccs') + +,( 'cat.default_item_price', 'finance', + oils_i18n_gettext('cat.default_item_price', + 'Default Item Price', + 'coust', 'label'), + oils_i18n_gettext('cat.default_item_price', + 'Default Item Price', + 'coust', 'description'), + 'currency', null) + +,( 'circ.min_item_price', 'finance', + oils_i18n_gettext('circ.min_item_price', + 'Minimum Item Price', + 'coust', 'label'), + oils_i18n_gettext('circ.min_item_price', + 'When charging for lost items, charge this amount as a minimum.', + 'coust', 'description'), + 'currency', null) + +,( 'circ.max_item_price', 'finance', + oils_i18n_gettext('circ.max_item_price', + 'Maximum Item Price', + 'coust', 'label'), + oils_i18n_gettext('circ.max_item_price', + 'When charging for lost items, limit the charge to this as a maximum.', + 'coust', 'description'), + 'currency', null) + +,( 'cat.label.font.family', 'cat', + oils_i18n_gettext('cat.label.font.family', + 'Spine and pocket label font family', + 'coust', 'label'), + oils_i18n_gettext('cat.label.font.family', + 'Set the preferred font family for spine and pocket labels. You can specify a list of fonts, separated by commas, in order of preference; the system will use the first font it finds with a matching name. For example, "Arial, Helvetica, serif".', + 'coust', 'description'), + 'string', null) + +,( 'cat.label.font.size', 'cat', + oils_i18n_gettext('cat.label.font.size', + 'Spine and pocket label font size', + 'coust', 'label'), + oils_i18n_gettext('cat.label.font.size', + 'Set the default font size for spine and pocket labels', + 'coust', 'description'), + 'integer', null) + +,( 'cat.label.font.weight', 'cat', + oils_i18n_gettext('cat.label.font.weight', + 'Spine and pocket label font weight', + 'coust', 'label'), + oils_i18n_gettext('cat.label.font.weight', + 'Set the preferred font weight for spine and pocket labels. You can specify "normal", "bold", "bolder", or "lighter".', + 'coust', 'description'), + 'string', null) + +,( 'cat.marc_control_number_identifier', 'cat', + oils_i18n_gettext('cat.marc_control_number_identifier', + 'Defines the control number identifier used in 003 and 035 fields.', + 'coust', 'label'), + oils_i18n_gettext('cat.marc_control_number_identifier', + 'Cat: Defines the control number identifier used in 003 and 035 fields.', + 'coust', 'description'), + 'string', null) + +,( 'cat.spine.line.height', 'cat', + oils_i18n_gettext('cat.spine.line.height', + 'Spine label maximum lines', + 'coust', 'label'), + oils_i18n_gettext('cat.spine.line.height', + 'Set the default maximum number of lines for spine labels.', + 'coust', 'description'), + 'integer', null) + +,( 'cat.spine.line.margin', 'cat', + oils_i18n_gettext('cat.spine.line.margin', + 'Spine label left margin', + 'coust', 'label'), + oils_i18n_gettext('cat.spine.line.margin', + 'Set the left margin for spine labels in number of characters.', + 'coust', 'description'), + 'integer', null) + +,( 'cat.spine.line.width', 'cat', + oils_i18n_gettext('cat.spine.line.width', + 'Spine label line width', + 'coust', 'label'), + oils_i18n_gettext('cat.spine.line.width', + 'Set the default line width for spine labels in number of characters. This specifies the boundary at which lines must be wrapped.', + 'coust', 'description'), + 'integer', null) + +,( 'cat.volume.delete_on_empty', 'cat', + oils_i18n_gettext('cat.volume.delete_on_empty', + 'Delete volume with last copy', + 'coust', 'label'), + oils_i18n_gettext('cat.volume.delete_on_empty', + 'Automatically delete a volume when the last linked copy is deleted', + 'coust', 'description'), + 'bool', null) + +,( 'circ.auto_hide_patron_summary', 'gui', + oils_i18n_gettext('circ.auto_hide_patron_summary', + 'Toggle off the patron summary sidebar after first view.', + 'coust', 'label'), + oils_i18n_gettext('circ.auto_hide_patron_summary', + 'When true, the patron summary sidebar will collapse after a new patron sub-interface is selected.', + 'coust', 'description'), + 'bool', null) + +,( 'circ.block_renews_for_holds', 'holds', + oils_i18n_gettext('circ.block_renews_for_holds', + 'Block Renewal of Items Needed for Holds', + 'coust', 'label'), + oils_i18n_gettext('circ.block_renews_for_holds', + 'When an item could fulfill a hold, do not allow the current patron to renew', + 'coust', 'description'), + 'bool', null) + +,( 'circ.booking_reservation.default_elbow_room', 'booking', + oils_i18n_gettext('circ.booking_reservation.default_elbow_room', + 'Booking elbow room', + 'coust', 'label'), + oils_i18n_gettext('circ.booking_reservation.default_elbow_room', + 'Elbow room specifies how far in the future you must make a reservation on an item if that item will have to transit to reach its pickup location. It secondarily defines how soon a reservation on a given item must start before the check-in process will opportunistically capture it for the reservation shelf.', + 'coust', 'description'), + 'interval', null) + +,( 'circ.charge_lost_on_zero', 'finance', + oils_i18n_gettext('circ.charge_lost_on_zero', + 'Charge lost on zero', + 'coust', 'label'), + oils_i18n_gettext('circ.charge_lost_on_zero', + 'Charge lost on zero', + 'coust', 'description'), + 'bool', null) + +,( 'circ.charge_on_damaged', 'finance', + oils_i18n_gettext('circ.charge_on_damaged', + 'Charge item price when marked damaged', + 'coust', 'label'), + oils_i18n_gettext('circ.charge_on_damaged', + 'Charge item price when marked damaged', + 'coust', 'description'), + 'bool', null) + +,( 'circ.checkout_auto_renew_age', 'circ', + oils_i18n_gettext('circ.checkout_auto_renew_age', + 'Checkout auto renew age', + 'coust', 'label'), + oils_i18n_gettext('circ.checkout_auto_renew_age', + 'When an item has been checked out for at least this amount of time, an attempt to check out the item to the patron that it is already checked out to will simply renew the circulation', + 'coust', 'description'), + 'interval', null) + +,( 'circ.checkout_fills_related_hold', 'circ', + oils_i18n_gettext('circ.checkout_fills_related_hold', + 'Checkout Fills Related Hold', + 'coust', 'label'), + oils_i18n_gettext('circ.checkout_fills_related_hold', + 'When a patron checks out an item and they have no holds that directly target the item, the system will attempt to find a hold for the patron that could be fulfilled by the checked out item and fulfills it', + 'coust', 'description'), + 'bool', null) + +,( 'circ.checkout_fills_related_hold_exact_match_only', 'circ', + oils_i18n_gettext('circ.checkout_fills_related_hold_exact_match_only', + 'Checkout Fills Related Hold On Valid Copy Only', + 'coust', 'label'), + oils_i18n_gettext('circ.checkout_fills_related_hold_exact_match_only', + 'When filling related holds on checkout only match on items that are valid for opportunistic capture for the hold. Without this set a Title or Volume hold could match when the item is not holdable. With this set only holdable items will match.', + 'coust', 'description'), + 'bool', null) + +,( 'circ.claim_never_checked_out.mark_missing', 'lib', + oils_i18n_gettext('circ.claim_never_checked_out.mark_missing', + 'Claim Never Checked Out: Mark copy as missing', + 'coust', 'label'), + oils_i18n_gettext('circ.claim_never_checked_out.mark_missing', + 'When a circ is marked as claims-never-checked-out, mark the copy as missing', + 'coust', 'description'), + 'bool', null) + +,( 'circ.claim_return.copy_status', 'lib', + oils_i18n_gettext('circ.claim_return.copy_status', + 'Claim Return Copy Status', + 'coust', 'label'), + oils_i18n_gettext('circ.claim_return.copy_status', + 'Claims returned copies are put into this status. Default is to leave the copy in the Checked Out status', + 'coust', 'description'), + 'link', 'ccs') + +,( 'circ.damaged.void_ovedue', 'lib', + oils_i18n_gettext('circ.damaged.void_ovedue', + 'Mark item damaged voids overdues', + 'coust', 'label'), + oils_i18n_gettext('circ.damaged.void_ovedue', + 'When an item is marked damaged, overdue fines on the most recent circulation are voided.', + 'coust', 'description'), + 'bool', null) + +,( 'circ.damaged_item_processing_fee', 'finance', + oils_i18n_gettext('circ.damaged_item_processing_fee', + 'Charge processing fee for damaged items', + 'coust', 'label'), + oils_i18n_gettext('circ.damaged_item_processing_fee', + 'Charge processing fee for damaged items', + 'coust', 'description'), + 'currency', null) + +,( 'circ.do_not_tally_claims_returned', 'circ', + oils_i18n_gettext('circ.do_not_tally_claims_returned', + 'Do not include outstanding Claims Returned circulations in lump sum tallies in Patron Display.', + 'coust', 'label'), + oils_i18n_gettext('circ.do_not_tally_claims_returned', + 'In the Patron Display interface, the number of total active circulations for a given patron is presented in the Summary sidebar and underneath the Items Out navigation button. This setting will prevent Claims Returned circulations from counting toward these tallies.', + 'coust', 'description'), + 'bool', null) + +,('circ.tally_lost', 'circ', + oils_i18n_gettext( + 'circ.tally_lost', + 'Include Lost circulations in lump sum tallies in Patron Display.', + 'coust', + 'label'), + oils_i18n_gettext( + 'circ.tally_lost', + 'In the Patron Display interface, the number of total active circulations for a given patron is presented in the Summary sidebar and underneath the Items Out navigation button. This setting will include Lost circulations as counting toward these tallies.', + 'coust', + 'description'), + 'bool', null) + +,( 'circ.grace.extend', 'circ', + oils_i18n_gettext('circ.grace.extend', + 'Auto-Extend Grace Periods', + 'coust', 'label'), + oils_i18n_gettext('circ.grace.extend', + 'When enabled grace periods will auto-extend. By default this will be only when they are a full day or more and end on a closed date, though other options can alter this.', + 'coust', 'description'), + 'bool', null) + +,( 'circ.grace.extend.all', 'circ', + oils_i18n_gettext('circ.grace.extend.all', + 'Auto-Extending Grace Periods extend for all closed dates', + 'coust', 'label'), + oils_i18n_gettext('circ.grace.extend.all', + 'If enabled and Grace Periods auto-extending is turned on grace periods will extend past all closed dates they intersect, within hard-coded limits. This basically becomes "grace periods can only be consumed by closed dates".', + 'coust', 'description'), + 'bool', null) + +,( 'circ.grace.extend.into_closed', 'circ', + oils_i18n_gettext('circ.grace.extend.into_closed', + 'Auto-Extending Grace Periods include trailing closed dates', + 'coust', 'label'), + oils_i18n_gettext('circ.grace.extend.into_closed', + 'If enabled and Grace Periods auto-extending is turned on grace periods will include closed dates that directly follow the last day of the grace period, to allow a backdate into the closed dates to assume "returned after hours on the last day of the grace period, and thus still within it" automatically.', + 'coust', 'description'), + 'bool', null) + +,( 'circ.hold_boundary.hard', 'holds', + oils_i18n_gettext('circ.hold_boundary.hard', + 'Hard boundary', + 'coust', 'label'), + oils_i18n_gettext('circ.hold_boundary.hard', + 'Holds: Hard boundary', + 'coust', 'description'), + 'integer', null) + +,( 'circ.hold_boundary.soft', 'holds', + oils_i18n_gettext('circ.hold_boundary.soft', + 'Soft boundary', + 'coust', 'label'), + oils_i18n_gettext('circ.hold_boundary.soft', + 'Holds: Soft boundary', + 'coust', 'description'), + 'integer', null) + +,( 'circ.hold_expire_alert_interval', 'holds', + oils_i18n_gettext('circ.hold_expire_alert_interval', + 'Expire Alert Interval', + 'coust', 'label'), + oils_i18n_gettext('circ.hold_expire_alert_interval', + 'Amount of time before a hold expires at which point the patron should be alerted. Examples: "5 days", "1 hour"', + 'coust', 'description'), + 'interval', null) + +,( 'circ.hold_expire_interval', 'holds', + oils_i18n_gettext('circ.hold_expire_interval', + 'Expire Interval', + 'coust', 'label'), + oils_i18n_gettext('circ.hold_expire_interval', + 'Amount of time after a hold is placed before the hold expires. Example "100 days"', + 'coust', 'description'), + 'interval', null) + +,( 'circ.hold_shelf_status_delay', 'circ', + oils_i18n_gettext('circ.hold_shelf_status_delay', + 'Hold Shelf Status Delay', + 'coust', 'label'), + oils_i18n_gettext('circ.hold_shelf_status_delay', + 'The purpose is to provide an interval of time after an item goes into the on-holds-shelf status before it appears to patrons that it is actually on the holds shelf. This gives staff time to process the item before it shows as ready-for-pickup. Examples: "5 days", "1 hour"', + 'coust', 'description'), + 'interval', null) + +,( 'circ.hold_stalling.soft', 'holds', + oils_i18n_gettext('circ.hold_stalling.soft', + 'Soft stalling interval', + 'coust', 'label'), + oils_i18n_gettext('circ.hold_stalling.soft', + 'How long to wait before allowing remote items to be opportunistically captured for a hold. Example "5 days"', + 'coust', 'description'), + 'interval', null) + +,( 'circ.hold_stalling_hard', 'holds', + oils_i18n_gettext('circ.hold_stalling_hard', + 'Hard stalling interval', + 'coust', 'label'), + oils_i18n_gettext('circ.hold_stalling_hard', + 'Holds: Hard stalling interval', + 'coust', 'description'), + 'interval', null) + +,( 'circ.holds.age_protect.active_date', 'holds', + oils_i18n_gettext('circ.holds.age_protect.active_date', + 'Use Active Date for Age Protection', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.age_protect.active_date', + 'When calculating age protection rules use the active date instead of the creation date.', + 'coust', 'description'), + 'bool', null) + +,( 'circ.holds.behind_desk_pickup_supported', 'holds', + oils_i18n_gettext('circ.holds.behind_desk_pickup_supported', + 'Behind Desk Pickup Supported', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.behind_desk_pickup_supported', + 'If a branch supports both a public holds shelf and behind-the-desk pickups, set this value to true. This gives the patron the option to enable behind-the-desk pickups for their holds', + 'coust', 'description'), + 'bool', null) + +,( 'circ.holds.canceled.display_age', 'holds', + oils_i18n_gettext('circ.holds.canceled.display_age', + 'Canceled holds display age', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.canceled.display_age', + 'Show all canceled holds that were canceled within this amount of time', + 'coust', 'description'), + 'interval', null) + +,( 'circ.holds.canceled.display_count', 'holds', + oils_i18n_gettext('circ.holds.canceled.display_count', + 'Canceled holds display count', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.canceled.display_count', + 'How many canceled holds to show in patron holds interfaces', + 'coust', 'description'), + 'integer', null) + +,( 'circ.holds.clear_shelf.copy_status', 'holds', + oils_i18n_gettext('circ.holds.clear_shelf.copy_status', + 'Clear shelf copy status', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.clear_shelf.copy_status', + 'Any copies that have not been put into reshelving, in-transit, or on-holds-shelf (for a new hold) during the clear shelf process will be put into this status. This is basically a purgatory status for copies waiting to be pulled from the shelf and processed by hand', + 'coust', 'description'), + 'link', 'ccs') + +,( 'circ.holds.default_estimated_wait_interval', 'holds', + oils_i18n_gettext('circ.holds.default_estimated_wait_interval', + 'Default Estimated Wait', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.default_estimated_wait_interval', + 'When predicting the amount of time a patron will be waiting for a hold to be fulfilled, this is the default estimated length of time to assume an item will be checked out. Examples: "3 weeks", "7 days"', + 'coust', 'description'), + 'interval', null) + +,( 'circ.holds.default_shelf_expire_interval', 'holds', + oils_i18n_gettext('circ.holds.default_shelf_expire_interval', + 'Default hold shelf expire interval', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.default_shelf_expire_interval', + 'The amount of time an item will be held on the shelf before the hold expires. For example: "2 weeks" or "5 days"', + 'coust', 'description'), + 'interval', null) + +,( 'circ.holds.expired_patron_block', 'circ', + oils_i18n_gettext('circ.holds.expired_patron_block', + 'Block hold request if hold recipient privileges have expired', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.expired_patron_block', + 'Block hold request if hold recipient privileges have expired', + 'coust', 'description'), + 'bool', null) + +,( 'circ.holds.hold_has_copy_at.alert', 'holds', + oils_i18n_gettext('circ.holds.hold_has_copy_at.alert', + 'Has Local Copy Alert', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.hold_has_copy_at.alert', + 'If there is an available copy at the requesting library that could fulfill a hold during hold placement time, alert the patron', + 'coust', 'description'), + 'bool', null) + +,( 'circ.holds.hold_has_copy_at.block', 'holds', + oils_i18n_gettext('circ.holds.hold_has_copy_at.block', + 'Has Local Copy Block', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.hold_has_copy_at.block', + 'If there is an available copy at the requesting library that could fulfill a hold during hold placement time, do not allow the hold to be placed', + 'coust', 'description'), + 'bool', null) + +,( 'circ.holds.max_org_unit_target_loops', 'holds', + oils_i18n_gettext('circ.holds.max_org_unit_target_loops', + 'Maximum library target attempts', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.max_org_unit_target_loops', + 'When this value is set and greater than 0, the system will only attempt to find a copy at each possible branch the configured number of times', + 'coust', 'description'), + 'integer', null) + +,( 'circ.holds.min_estimated_wait_interval', 'holds', + oils_i18n_gettext('circ.holds.min_estimated_wait_interval', + 'Minimum Estimated Wait', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.min_estimated_wait_interval', + 'When predicting the amount of time a patron will be waiting for a hold to be fulfilled, this is the minimum estimated length of time to assume an item will be checked out. Examples: "2 weeks", "5 days"', + 'coust', 'description'), + 'interval', null) + +,( 'circ.holds.org_unit_target_weight', 'holds', + oils_i18n_gettext('circ.holds.org_unit_target_weight', + 'Org Unit Target Weight', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.org_unit_target_weight', + 'Org Units can be organized into hold target groups based on a weight. Potential copies from org units with the same weight are chosen at random.', + 'coust', 'description'), + 'integer', null) + +,( 'circ.holds.recall_fine_rules', 'recall', + oils_i18n_gettext('circ.holds.recall_fine_rules', + 'An array of fine amount, fine interval, and maximum fine.', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.recall_fine_rules', + 'Recalls: An array of fine amount, fine interval, and maximum fine. For example, to specify a new fine rule of $5.00 per day, with a maximum fine of $50.00, use: [5.00,"1 day",50.00]', + 'coust', 'description'), + 'array', null) + +,( 'circ.holds.recall_return_interval', 'recall', + oils_i18n_gettext('circ.holds.recall_return_interval', + 'Truncated loan period.', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.recall_return_interval', + 'Recalls: When a recall is triggered, this defines the adjusted loan period for the item. For example, "4 days" or "1 week".', + 'coust', 'description'), + 'interval', null) + +,( 'circ.holds.recall_threshold', 'recall', + oils_i18n_gettext('circ.holds.recall_threshold', + 'Circulation duration that triggers a recall.', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.recall_threshold', + 'Recalls: A hold placed on an item with a circulation duration longer than this will trigger a recall. For example, "14 days" or "3 weeks".', + 'coust', 'description'), + 'interval', null) + +,( 'circ.holds.target_holds_by_org_unit_weight', 'holds', + oils_i18n_gettext('circ.holds.target_holds_by_org_unit_weight', + 'Use weight-based hold targeting', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.target_holds_by_org_unit_weight', + 'Use library weight based hold targeting', + 'coust', 'description'), + 'bool', null) + +,( 'circ.holds.target_skip_me', 'holds', + oils_i18n_gettext('circ.holds.target_skip_me', + 'Skip For Hold Targeting', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.target_skip_me', + 'When true, don''t target any copies at this org unit for holds', + 'coust', 'description'), + 'bool', null) + +,( 'circ.holds.uncancel.reset_request_time', 'holds', + oils_i18n_gettext('circ.holds.uncancel.reset_request_time', + 'Reset request time on un-cancel', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.uncancel.reset_request_time', + 'When a hold is uncanceled, reset the request time to push it to the end of the queue', + 'coust', 'description'), + 'bool', null) + +,( 'circ.holds_fifo', 'holds', + oils_i18n_gettext('circ.holds_fifo', + 'FIFO', + 'coust', 'label'), + oils_i18n_gettext('circ.holds_fifo', + 'Force holds to a more strict First-In, First-Out capture', + 'coust', 'description'), + 'bool', null) + +,( 'circ.item_checkout_history.max', 'gui', + oils_i18n_gettext('circ.item_checkout_history.max', + 'Maximum previous checkouts displayed', + 'coust', 'label'), + oils_i18n_gettext('circ.item_checkout_history.max', + 'This is the maximum number of previous circulations the staff client will display when investigating item details', + 'coust', 'description'), + 'integer', null) + +,( 'circ.lost.generate_overdue_on_checkin', 'circ', + oils_i18n_gettext('circ.lost.generate_overdue_on_checkin', + 'Lost Checkin Generates New Overdues', + 'coust', 'label'), + oils_i18n_gettext('circ.lost.generate_overdue_on_checkin', + 'Enabling this setting causes retroactive creation of not-yet-existing overdue fines on lost item checkin, up to the point of checkin time (or max fines is reached). This is different than "restore overdue on lost", because it only creates new overdue fines. Use both settings together to get the full complement of overdue fines for a lost item', + 'coust', 'description'), + 'bool', null) + +,( 'circ.lost_immediately_available', 'circ', + oils_i18n_gettext('circ.lost_immediately_available', + 'Lost items usable on checkin', + 'coust', 'label'), + oils_i18n_gettext('circ.lost_immediately_available', + 'Lost items are usable on checkin instead of going ''home'' first', + 'coust', 'description'), + 'bool', null) + +,( 'circ.lost_materials_processing_fee', 'finance', + oils_i18n_gettext('circ.lost_materials_processing_fee', + 'Lost Materials Processing Fee', + 'coust', 'label'), + oils_i18n_gettext('circ.lost_materials_processing_fee', + 'Lost Materials Processing Fee', + 'coust', 'description'), + 'currency', null) + +,( 'circ.max_accept_return_of_lost', 'circ', + oils_i18n_gettext('circ.max_accept_return_of_lost', + 'Void lost max interval', + 'coust', 'label'), + oils_i18n_gettext('circ.max_accept_return_of_lost', + 'Items that have been lost this long will not result in voided billings when returned. E.g. ''6 months''', + 'coust', 'description'), + 'interval', null) + +,( 'circ.max_fine.cap_at_price', 'circ', + oils_i18n_gettext('circ.max_fine.cap_at_price', + 'Cap Max Fine at Item Price', + 'coust', 'label'), + oils_i18n_gettext('circ.max_fine.cap_at_price', + 'This prevents the system from charging more than the item price in overdue fines', + 'coust', 'description'), + 'bool', null) + +,( 'circ.max_patron_claim_return_count', 'circ', + oils_i18n_gettext('circ.max_patron_claim_return_count', + 'Max Patron Claims Returned Count', + 'coust', 'label'), + oils_i18n_gettext('circ.max_patron_claim_return_count', + 'When this count is exceeded, a staff override is required to mark the item as claims returned', + 'coust', 'description'), + 'integer', null) + +,( 'circ.missing_pieces.copy_status', 'circ', + oils_i18n_gettext('circ.missing_pieces.copy_status', + 'Item Status for Missing Pieces', + 'coust', 'label'), + oils_i18n_gettext('circ.missing_pieces.copy_status', + 'This is the Item Status to use for items that have been marked or scanned as having Missing Pieces. In the absence of this setting, the Damaged status is used.', + 'coust', 'description'), + 'link', 'ccs') + +,( 'circ.obscure_dob', 'sec', + oils_i18n_gettext('circ.obscure_dob', + 'Obscure the Date of Birth field', + 'coust', 'label'), + oils_i18n_gettext('circ.obscure_dob', + 'When true, the Date of Birth column in patron lists will default to Not Visible, and in the Patron Summary sidebar the value will display as unless the field label is clicked.', + 'coust', 'description'), + 'bool', null) + +,( 'circ.offline.skip_checkin_if_newer_status_changed_time', 'offline', + oils_i18n_gettext('circ.offline.skip_checkin_if_newer_status_changed_time', + 'Skip offline checkin if newer item Status Changed Time.', + 'coust', 'label'), + oils_i18n_gettext('circ.offline.skip_checkin_if_newer_status_changed_time', + 'Skip offline checkin transaction (raise exception when processing) if item Status Changed Time is newer than the recorded transaction time. WARNING: The Reshelving to Available status rollover will trigger this.', + 'coust', 'description'), + 'bool', null) + +,( 'circ.offline.skip_checkout_if_newer_status_changed_time', 'offline', + oils_i18n_gettext('circ.offline.skip_checkout_if_newer_status_changed_time', + 'Skip offline checkout if newer item Status Changed Time.', + 'coust', 'label'), + oils_i18n_gettext('circ.offline.skip_checkout_if_newer_status_changed_time', + 'Skip offline checkout transaction (raise exception when processing) if item Status Changed Time is newer than the recorded transaction time. WARNING: The Reshelving to Available status rollover will trigger this.', + 'coust', 'description'), + 'bool', null) + +,( 'circ.offline.skip_renew_if_newer_status_changed_time', 'offline', + oils_i18n_gettext('circ.offline.skip_renew_if_newer_status_changed_time', + 'Skip offline renewal if newer item Status Changed Time.', + 'coust', 'label'), + oils_i18n_gettext('circ.offline.skip_renew_if_newer_status_changed_time', + 'Skip offline renewal transaction (raise exception when processing) if item Status Changed Time is newer than the recorded transaction time. WARNING: The Reshelving to Available status rollover will trigger this.', + 'coust', 'description'), + 'bool', null) + +,( 'circ.offline.username_allowed', 'sec', + oils_i18n_gettext('circ.offline.username_allowed', + 'Offline: Patron Usernames Allowed', + 'coust', 'label'), + oils_i18n_gettext('circ.offline.username_allowed', + 'During offline circulations, allow patrons to identify themselves with usernames in addition to barcode. For this setting to work, a barcode format must also be defined', + 'coust', 'description'), + 'bool', null) + +,( 'circ.password_reset_request_per_user_limit', 'sec', + oils_i18n_gettext('circ.password_reset_request_per_user_limit', + 'Maximum concurrently active self-serve password reset requests per user', + 'coust', 'label'), + oils_i18n_gettext('circ.password_reset_request_per_user_limit', + 'When a user has more than this number of concurrently active self-serve password reset requests for their account, prevent the user from creating any new self-serve password reset requests until the number of active requests for the user drops back below this number.', + 'coust', 'description'), + 'string', null) + +,( 'circ.password_reset_request_requires_matching_email', 'circ', + oils_i18n_gettext('circ.password_reset_request_requires_matching_email', + 'Require matching email address for password reset requests', + 'coust', 'label'), + oils_i18n_gettext('circ.password_reset_request_requires_matching_email', + 'Require matching email address for password reset requests', + 'coust', 'description'), + 'bool', null) + +,( 'circ.password_reset_request_throttle', 'sec', + oils_i18n_gettext('circ.password_reset_request_throttle', + 'Maximum concurrently active self-serve password reset requests', + 'coust', 'label'), + oils_i18n_gettext('circ.password_reset_request_throttle', + 'Prevent the creation of new self-serve password reset requests until the number of active requests drops back below this number.', + 'coust', 'description'), + 'string', null) + +,( 'circ.password_reset_request_time_to_live', 'sec', + oils_i18n_gettext('circ.password_reset_request_time_to_live', + 'Self-serve password reset request time-to-live', + 'coust', 'label'), + oils_i18n_gettext('circ.password_reset_request_time_to_live', + 'Length of time (in seconds) a self-serve password reset request should remain active.', + 'coust', 'description'), + 'string', null) + +,( 'circ.patron_edit.clone.copy_address', 'circ', + oils_i18n_gettext('circ.patron_edit.clone.copy_address', + 'Patron Registration: Cloned patrons get address copy', + 'coust', 'label'), + oils_i18n_gettext('circ.patron_edit.clone.copy_address', + 'In the Patron editor, copy addresses from the cloned user instead of linking directly to the address', + 'coust', 'description'), + 'bool', null) + +,( 'circ.patron_invalid_address_apply_penalty', 'circ', + oils_i18n_gettext('circ.patron_invalid_address_apply_penalty', + 'Invalid patron address penalty', + 'coust', 'label'), + oils_i18n_gettext('circ.patron_invalid_address_apply_penalty', + 'When set, if a patron address is set to invalid, a penalty is applied.', + 'coust', 'description'), + 'bool', null) + +,( 'circ.pre_cat_copy_circ_lib', 'lib', + oils_i18n_gettext('circ.pre_cat_copy_circ_lib', + 'Pre-cat Item Circ Lib', + 'coust', 'label'), + oils_i18n_gettext('circ.pre_cat_copy_circ_lib', + 'Override the default circ lib of "here" with a pre-configured circ lib for pre-cat items. The value should be the "shortname" (aka policy name) of the org unit', + 'coust', 'description'), + 'string', null) + +,( 'circ.reshelving_complete.interval', 'lib', + oils_i18n_gettext('circ.reshelving_complete.interval', + 'Change reshelving status interval', + 'coust', 'label'), + oils_i18n_gettext('circ.reshelving_complete.interval', + 'Amount of time to wait before changing an item from "reshelving" status to "available". Examples: "1 day", "6 hours"', + 'coust', 'description'), + 'interval', null) + +,( 'circ.restore_overdue_on_lost_return', 'circ', + oils_i18n_gettext('circ.restore_overdue_on_lost_return', + 'Restore overdues on lost item return', + 'coust', 'label'), + oils_i18n_gettext('circ.restore_overdue_on_lost_return', + 'Restore overdue fines on lost item return', + 'coust', 'description'), + 'bool', null) + +,( 'circ.selfcheck.alert.popup', 'self', + oils_i18n_gettext('circ.selfcheck.alert.popup', + 'Pop-up alert for errors', + 'coust', 'label'), + oils_i18n_gettext('circ.selfcheck.alert.popup', + 'If true, checkout/renewal errors will cause a pop-up window in addition to the on-screen message', + 'coust', 'description'), + 'bool', null) + +,( 'circ.selfcheck.alert.sound', 'self', + oils_i18n_gettext('circ.selfcheck.alert.sound', + 'Audio Alerts', + 'coust', 'label'), + oils_i18n_gettext('circ.selfcheck.alert.sound', + 'Use audio alerts for selfcheck events', + 'coust', 'description'), + 'bool', null) + +,( 'circ.selfcheck.auto_override_checkout_events', 'self', + oils_i18n_gettext('circ.selfcheck.auto_override_checkout_events', + 'Selfcheck override events list', + 'coust', 'label'), + oils_i18n_gettext('circ.selfcheck.auto_override_checkout_events', + 'List of checkout/renewal events that the selfcheck interface should automatically override instead instead of alerting and stopping the transaction', + 'coust', 'description'), + 'array', null) + +,( 'circ.selfcheck.block_checkout_on_copy_status', 'self', + oils_i18n_gettext('circ.selfcheck.block_checkout_on_copy_status', + 'Block copy checkout status', + 'coust', 'label'), + oils_i18n_gettext('circ.selfcheck.block_checkout_on_copy_status', + 'List of copy status IDs that will block checkout even if the generic COPY_NOT_AVAILABLE event is overridden', + 'coust', 'description'), + 'array', null) + +,( 'circ.selfcheck.patron_login_timeout', 'self', + oils_i18n_gettext('circ.selfcheck.patron_login_timeout', + 'Patron Login Timeout (in seconds)', + 'coust', 'label'), + oils_i18n_gettext('circ.selfcheck.patron_login_timeout', + 'Number of seconds of inactivity before the patron is logged out of the selfcheck interface', + 'coust', 'description'), + 'integer', null) + +,( 'circ.selfcheck.patron_password_required', 'self', + oils_i18n_gettext('circ.selfcheck.patron_password_required', + 'Require Patron Password', + 'coust', 'label'), + oils_i18n_gettext('circ.selfcheck.patron_password_required', + 'Patron must log in with barcode and password at selfcheck station', + 'coust', 'description'), + 'bool', null) + +,( 'circ.selfcheck.require_patron_password', 'self', + oils_i18n_gettext('circ.selfcheck.require_patron_password', + 'Require patron password', + 'coust', 'label'), + oils_i18n_gettext('circ.selfcheck.require_patron_password', + 'If true, patrons will be required to enter their password in addition to their username/barcode to log into the selfcheck interface', + 'coust', 'description'), + 'bool', null) + +,( 'circ.selfcheck.workstation_required', 'self', + oils_i18n_gettext('circ.selfcheck.workstation_required', + 'Workstation Required', + 'coust', 'label'), + oils_i18n_gettext('circ.selfcheck.workstation_required', + 'All selfcheck stations must use a workstation', + 'coust', 'description'), + 'bool', null) + +,( 'circ.staff_client.actor_on_checkout', 'circ', + oils_i18n_gettext('circ.staff_client.actor_on_checkout', + 'Load patron from Checkout', + 'coust', 'label'), + oils_i18n_gettext('circ.staff_client.actor_on_checkout', + 'When scanning barcodes into Checkout auto-detect if a new patron barcode is scanned and auto-load the new patron.', + 'coust', 'description'), + 'bool', null) + +,( 'circ.staff_client.do_not_auto_attempt_print', 'prog', + oils_i18n_gettext('circ.staff_client.do_not_auto_attempt_print', + 'Disable Automatic Print Attempt Type List', + 'coust', 'label'), + oils_i18n_gettext('circ.staff_client.do_not_auto_attempt_print', + 'Disable automatic print attempts from staff client interfaces for the receipt types in this list. Possible values: "Checkout", "Bill Pay", "Hold Slip", "Transit Slip", and "Hold/Transit Slip". This is different from the Auto-Print checkbox in the pertinent interfaces in that it disables automatic print attempts altogether, rather than encouraging silent printing by suppressing the print dialog. The Auto-Print checkbox in these interfaces have no effect on the behavior for this setting. In the case of the Hold, Transit, and Hold/Transit slips, this also suppresses the alert dialogs that precede the print dialog (the ones that offer Print and Do Not Print as options).', + 'coust', 'description'), + 'array', null) + +,( 'circ.staff_client.receipt.alert_text', 'receipt_template', + oils_i18n_gettext('circ.staff_client.receipt.alert_text', + 'Content of alert_text include', + 'coust', 'label'), + oils_i18n_gettext('circ.staff_client.receipt.alert_text', + 'Text/HTML/Macros to be inserted into receipt templates in place of %INCLUDE(alert_text)%', + 'coust', 'description'), + 'string', null) + +,( 'circ.staff_client.receipt.event_text', 'receipt_template', + oils_i18n_gettext('circ.staff_client.receipt.event_text', + 'Content of event_text include', + 'coust', 'label'), + oils_i18n_gettext('circ.staff_client.receipt.event_text', + 'Text/HTML/Macros to be inserted into receipt templates in place of %INCLUDE(event_text)%', + 'coust', 'description'), + 'string', null) + +,( 'circ.staff_client.receipt.footer_text', 'receipt_template', + oils_i18n_gettext('circ.staff_client.receipt.footer_text', + 'Content of footer_text include', + 'coust', 'label'), + oils_i18n_gettext('circ.staff_client.receipt.footer_text', + 'Text/HTML/Macros to be inserted into receipt templates in place of %INCLUDE(footer_text)%', + 'coust', 'description'), + 'string', null) + +,( 'circ.staff_client.receipt.header_text', 'receipt_template', + oils_i18n_gettext('circ.staff_client.receipt.header_text', + 'Content of header_text include', + 'coust', 'label'), + oils_i18n_gettext('circ.staff_client.receipt.header_text', + 'Text/HTML/Macros to be inserted into receipt templates in place of %INCLUDE(header_text)%', + 'coust', 'description'), + 'string', null) + +,( 'circ.staff_client.receipt.notice_text', 'receipt_template', + oils_i18n_gettext('circ.staff_client.receipt.notice_text', + 'Content of notice_text include', + 'coust', 'label'), + oils_i18n_gettext('circ.staff_client.receipt.notice_text', + 'Text/HTML/Macros to be inserted into receipt templates in place of %INCLUDE(notice_text)%', + 'coust', 'description'), + 'string', null) + +,( 'circ.transit.min_checkin_interval', 'circ', + oils_i18n_gettext('circ.transit.min_checkin_interval', + 'Minimum Transit Checkin Interval', + 'coust', 'label'), + oils_i18n_gettext('circ.transit.min_checkin_interval', + 'In-Transit items checked in this close to the transit start time will be prevented from checking in', + 'coust', 'description'), + 'interval', null) + +,( 'circ.transit.suppress_hold', 'circ', + oils_i18n_gettext('circ.transit.suppress_hold', + 'Suppress Hold Transits Group', + 'coust', 'label'), + oils_i18n_gettext('circ.transit.suppress_hold', + 'If set to a non-empty value, Hold Transits will be suppressed between this OU and others with the same value. If set to an empty value, transits will not be suppressed.', + 'coust', 'description'), + 'string', null) + +,( 'circ.transit.suppress_non_hold', 'circ', + oils_i18n_gettext('circ.transit.suppress_non_hold', + 'Suppress Non-Hold Transits Group', + 'coust', 'label'), + oils_i18n_gettext('circ.transit.suppress_non_hold', + 'If set to a non-empty value, Non-Hold Transits will be suppressed between this OU and others with the same value. If set to an empty value, transits will not be suppressed.', + 'coust', 'description'), + 'string', null) + +,( 'circ.user_merge.deactivate_cards', 'circ', + oils_i18n_gettext('circ.user_merge.deactivate_cards', + 'Patron Merge Deactivate Card', + 'coust', 'label'), + oils_i18n_gettext('circ.user_merge.deactivate_cards', + 'Mark barcode(s) of subordinate user(s) in a patron merge as inactive', + 'coust', 'description'), + 'bool', null) + +,( 'circ.user_merge.delete_addresses', 'circ', + oils_i18n_gettext('circ.user_merge.delete_addresses', + 'Patron Merge Address Delete', + 'coust', 'label'), + oils_i18n_gettext('circ.user_merge.delete_addresses', + 'Delete address(es) of subordinate user(s) in a patron merge', + 'coust', 'description'), + 'bool', null) + +,( 'circ.user_merge.delete_cards', 'circ', + oils_i18n_gettext('circ.user_merge.delete_cards', + 'Patron Merge Barcode Delete', + 'coust', 'label'), + oils_i18n_gettext('circ.user_merge.delete_cards', + 'Delete barcode(s) of subordinate user(s) in a patron merge', + 'coust', 'description'), + 'bool', null) + +,( 'circ.void_lost_on_checkin', 'circ', + oils_i18n_gettext('circ.void_lost_on_checkin', + 'Void lost item billing when returned', + 'coust', 'label'), + oils_i18n_gettext('circ.void_lost_on_checkin', + 'Void lost item billing when returned', + 'coust', 'description'), + 'bool', null) + +,( 'circ.void_lost_proc_fee_on_checkin', 'circ', + oils_i18n_gettext('circ.void_lost_proc_fee_on_checkin', + 'Void processing fee on lost item return', + 'coust', 'label'), + oils_i18n_gettext('circ.void_lost_proc_fee_on_checkin', + 'Void processing fee when lost item returned', + 'coust', 'description'), + 'bool', null) + +,( 'circ.void_overdue_on_lost', 'finance', + oils_i18n_gettext('circ.void_overdue_on_lost', + 'Void overdue fines when items are marked lost', + 'coust', 'label'), + oils_i18n_gettext('circ.void_overdue_on_lost', + 'Void overdue fines when items are marked lost', + 'coust', 'description'), + 'bool', null) + +,( 'credit.payments.allow', 'finance', + oils_i18n_gettext('credit.payments.allow', + 'Allow Credit Card Payments', + 'coust', 'label'), + oils_i18n_gettext('credit.payments.allow', + 'If enabled, patrons will be able to pay fines accrued at this location via credit card', + 'coust', 'description'), + 'bool', null) + +,( 'credit.processor.authorizenet.enabled', 'credit', + oils_i18n_gettext('credit.processor.authorizenet.enabled', + 'Enable AuthorizeNet payments', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.authorizenet.enabled', + 'Enable AuthorizeNet payments', + 'coust', 'description'), + 'bool', null) + +,( 'credit.processor.authorizenet.login', 'credit', + oils_i18n_gettext('credit.processor.authorizenet.login', + 'AuthorizeNet login', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.authorizenet.login', + 'AuthorizeNet login', + 'coust', 'description'), + 'string', null) + +,( 'credit.processor.authorizenet.password', 'credit', + oils_i18n_gettext('credit.processor.authorizenet.password', + 'AuthorizeNet password', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.authorizenet.password', + 'AuthorizeNet password', + 'coust', 'description'), + 'string', null) + +,( 'credit.processor.authorizenet.server', 'credit', + oils_i18n_gettext('credit.processor.authorizenet.server', + 'AuthorizeNet server', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.authorizenet.server', + 'Required if using a developer/test account with AuthorizeNet', + 'coust', 'description'), + 'string', null) + +,( 'credit.processor.authorizenet.testmode', 'credit', + oils_i18n_gettext('credit.processor.authorizenet.testmode', + 'AuthorizeNet test mode', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.authorizenet.testmode', + 'AuthorizeNet test mode', + 'coust', 'description'), + 'bool', null) + +,( 'credit.processor.default', 'credit', + oils_i18n_gettext('credit.processor.default', + 'Name default credit processor', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.default', + 'This might be "AuthorizeNet", "PayPal", "PayflowPro", or "Stripe".', + 'coust', 'description'), + 'string', null) + +,( 'credit.processor.payflowpro.enabled', 'credit', + oils_i18n_gettext('credit.processor.payflowpro.enabled', + 'Enable PayflowPro payments', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.payflowpro.enabled', + 'This is NOT the same thing as the settings labeled with just "PayPal."', + 'coust', 'description'), + 'bool', null) + +,( 'credit.processor.payflowpro.login', 'credit', + oils_i18n_gettext('credit.processor.payflowpro.login', + 'PayflowPro login/merchant ID', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.payflowpro.login', + 'Often the same thing as the PayPal manager login', + 'coust', 'description'), + 'string', null) + +,( 'credit.processor.payflowpro.partner', 'credit', + oils_i18n_gettext('credit.processor.payflowpro.partner', + 'PayflowPro partner', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.payflowpro.partner', + 'Often "PayPal" or "VeriSign", sometimes others', + 'coust', 'description'), + 'string', null) + +,( 'credit.processor.payflowpro.password', 'credit', + oils_i18n_gettext('credit.processor.payflowpro.password', + 'PayflowPro password', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.payflowpro.password', + 'PayflowPro password', + 'coust', 'description'), + 'string', null) + +,( 'credit.processor.payflowpro.testmode', 'credit', + oils_i18n_gettext('credit.processor.payflowpro.testmode', + 'PayflowPro test mode', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.payflowpro.testmode', + 'Do not really process transactions, but stay in test mode - uses pilot-payflowpro.paypal.com instead of the usual host', + 'coust', 'description'), + 'bool', null) + +,( 'credit.processor.payflowpro.vendor', 'credit', + oils_i18n_gettext('credit.processor.payflowpro.vendor', + 'PayflowPro vendor', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.payflowpro.vendor', + 'Often the same thing as the login', + 'coust', 'description'), + 'string', null) + +,( 'credit.processor.paypal.enabled', 'credit', + oils_i18n_gettext('credit.processor.paypal.enabled', + 'Enable PayPal payments', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.paypal.enabled', + 'Enable PayPal payments', + 'coust', 'description'), + 'bool', null) + +,( 'credit.processor.paypal.login', 'credit', + oils_i18n_gettext('credit.processor.paypal.login', + 'PayPal login', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.paypal.login', + 'PayPal login', + 'coust', 'description'), + 'string', null) + +,( 'credit.processor.paypal.password', 'credit', + oils_i18n_gettext('credit.processor.paypal.password', + 'PayPal password', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.paypal.password', + 'PayPal password', + 'coust', 'description'), + 'string', null) + +,( 'credit.processor.paypal.signature', 'credit', + oils_i18n_gettext('credit.processor.paypal.signature', + 'PayPal signature', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.paypal.signature', + 'PayPal signature', + 'coust', 'description'), + 'string', null) + +,( 'credit.processor.paypal.testmode', 'credit', + oils_i18n_gettext('credit.processor.paypal.testmode', + 'PayPal test mode', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.paypal.testmode', + 'PayPal test mode', + 'coust', 'description'), + 'bool', null) + +,( 'credit.processor.stripe.enabled', 'credit', + oils_i18n_gettext('credit.processor.stripe.enabled', + 'Enable Stripe payments', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.stripe.enabled', + 'Enable Stripe payments', + 'coust', 'description'), + 'bool', null) + +,( 'credit.processor.stripe.pubkey', 'credit', + oils_i18n_gettext('credit.processor.stripe.pubkey', + 'Stripe publishable key', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.stripe.pubkey', + 'Stripe publishable key', + 'coust', 'description'), + 'string', null) + +,( 'credit.processor.stripe.secretkey', 'credit', + oils_i18n_gettext('credit.processor.stripe.secretkey', + 'Stripe secret key', + 'coust', 'label'), + oils_i18n_gettext('credit.processor.stripe.secretkey', + 'Stripe secret key', + 'coust', 'description'), + 'string', null) + +,( 'format.date', 'gui', + oils_i18n_gettext('format.date', + 'Format Dates with this pattern.', + 'coust', 'label'), + oils_i18n_gettext('format.date', + 'Format Dates with this pattern (examples: "yyyy-MM-dd" for "2010-04-26", "MMM d, yyyy" for "Apr 26, 2010")', + 'coust', 'description'), + 'string', null) + +,( 'format.time', 'gui', + oils_i18n_gettext('format.time', + 'Format Times with this pattern.', + 'coust', 'label'), + oils_i18n_gettext('format.time', + 'Format Times with this pattern (examples: "h:m:s.SSS a z" for "2:07:20.666 PM Eastern Daylight Time", "HH:mm" for "14:07")', + 'coust', 'description'), + 'string', null) + +,( 'global.default_locale', 'glob', + oils_i18n_gettext('global.default_locale', + 'Global Default Locale', + 'coust', 'label'), + oils_i18n_gettext('global.default_locale', + 'Global Default Locale', + 'coust', 'description'), + 'string', null) + +,( 'global.juvenile_age_threshold', 'lib', + oils_i18n_gettext('global.juvenile_age_threshold', + 'Juvenile Age Threshold', + 'coust', 'label'), + oils_i18n_gettext('global.juvenile_age_threshold', + 'The age at which a user is no long considered a juvenile. For example, "18 years".', + 'coust', 'description'), + 'interval', null) + +,( 'global.password_regex', 'glob', + oils_i18n_gettext('global.password_regex', + 'Password format', + 'coust', 'label'), + oils_i18n_gettext('global.password_regex', + 'Regular expression defining the password format. Note: Be sure to update the update_password_msg.tt2 TPAC template with a user-friendly description of your password strength requirements.', + 'coust', 'description'), + 'string', null) + +,( 'gui.disable_local_save_columns', 'gui', + oils_i18n_gettext('gui.disable_local_save_columns', + 'Disable the ability to save list column configurations locally.', + 'coust', 'label'), + oils_i18n_gettext('gui.disable_local_save_columns', + 'Disable the ability to save list column configurations locally. If set, columns may still be manipulated, however, the changes do not persist. Also, existing local configurations are ignored if this setting is true.', + 'coust', 'description'), + 'bool', null) + +,( 'lib.courier_code', 'lib', + oils_i18n_gettext('lib.courier_code', + 'Courier Code', + 'coust', 'label'), + oils_i18n_gettext('lib.courier_code', + 'Courier Code for the library. Available in transit slip templates as the %courier_code% macro.', + 'coust', 'description'), + 'string', null) + +,( 'lib.info_url', 'lib', + oils_i18n_gettext('lib.info_url', + 'Library information URL (such as "http://example.com/about.html")', + 'coust', 'label'), + oils_i18n_gettext('lib.info_url', + 'URL for information on this library, such as contact information, hours of operation, and directions. Use a complete URL, such as "http://example.com/hours.html".', + 'coust', 'description'), + 'string', null) + +,( 'lib.prefer_external_url', 'lib', + oils_i18n_gettext('lib.prefer_external_url', + 'Use external "library information URL" in copy table, if available', + 'coust', 'label'), + oils_i18n_gettext('lib.prefer_external_url', + 'If set to true, the library name in the copy details section will link to the URL associated with the "Library information URL" library setting rather than the library information page generated by Evergreen.', + 'coust', 'description'), + 'bool', null) + +,( 'notice.telephony.callfile_lines', 'lib', + oils_i18n_gettext('notice.telephony.callfile_lines', + 'Telephony: Arbitrary line(s) to include in each notice callfile', + 'coust', 'label'), + oils_i18n_gettext('notice.telephony.callfile_lines', + ' + This overrides lines from opensrf.xml. + Line(s) must be valid for your target server and platform + (e.g. Asterisk 1.4). + ', + 'coust', 'description'), + 'string', null) + +,( 'opac.allow_pending_address', 'opac', + oils_i18n_gettext('opac.allow_pending_address', + 'Allow pending addresses', + 'coust', 'label'), + oils_i18n_gettext('opac.allow_pending_address', + 'If enabled, patrons can create and edit existing addresses. Addresses are kept in a pending state until staff approves the changes', + 'coust', 'description'), + 'bool', null) + +,( 'opac.barcode_regex', 'glob', + oils_i18n_gettext('opac.barcode_regex', + 'Patron barcode format', + 'coust', 'label'), + oils_i18n_gettext('opac.barcode_regex', + 'Regular expression defining the patron barcode format', + 'coust', 'description'), + 'string', null) + +,( 'opac.fully_compressed_serial_holdings', 'opac', + oils_i18n_gettext('opac.fully_compressed_serial_holdings', + 'Use fully compressed serial holdings', + 'coust', 'label'), + oils_i18n_gettext('opac.fully_compressed_serial_holdings', + 'Show fully compressed serial holdings for all libraries at and below the current context unit', + 'coust', 'description'), + 'bool', null) + +,( 'opac.lock_usernames', 'glob', + oils_i18n_gettext('opac.lock_usernames', + 'Lock Usernames', + 'coust', 'label'), + oils_i18n_gettext('opac.lock_usernames', + 'If enabled username changing via the OPAC will be disabled', + 'coust', 'description'), + 'bool', null) + +,( 'opac.org_unit_hiding.depth', 'opac', + oils_i18n_gettext('opac.org_unit_hiding.depth', + 'Org Unit Hiding Depth', + 'coust', 'label'), + oils_i18n_gettext('opac.org_unit_hiding.depth', + 'This will hide certain org units in the public OPAC if the Physical Location (url param "physical_loc") for the OPAC inherits this setting. This setting specifies an org unit depth, that together with the OPAC Physical Location determines which section of the Org Hierarchy should be visible in the OPAC. For example, a stock Evergreen installation will have a 3-tier hierarchy (Consortium/System/Branch), where System has a depth of 1 and Branch has a depth of 2. If this setting contains a depth of 1 in such an installation, then every library in the System in which the Physical Location belongs will be visible, and everything else will be hidden. A depth of 0 will effectively make every org visible. The embedded OPAC in the staff client ignores this setting.', + 'coust', 'description'), + 'integer', null) + +,( 'opac.payment_history_age_limit', 'opac', + oils_i18n_gettext('opac.payment_history_age_limit', + 'Payment History Age Limit', + 'coust', 'label'), + oils_i18n_gettext('opac.payment_history_age_limit', + 'The OPAC should not display payments by patrons that are older than any interval defined here.', + 'coust', 'description'), + 'interval', null) + +,( 'opac.unlimit_usernames', 'glob', + oils_i18n_gettext('opac.unlimit_usernames', + 'Allow multiple username changes', + 'coust', 'label'), + oils_i18n_gettext('opac.unlimit_usernames', + 'If enabled (and Lock Usernames is not set) patrons will be allowed to change their username when it does not look like a barcode. Otherwise username changing in the OPAC will only be allowed when the patron''s username looks like a barcode.', + 'coust', 'description'), + 'bool', null) + +,( 'opac.username_regex', 'glob', + oils_i18n_gettext('opac.username_regex', + 'Patron username format', + 'coust', 'label'), + oils_i18n_gettext('opac.username_regex', + 'Regular expression defining the patron username format, used for patron registration and self-service username changing only', + 'coust', 'description'), + 'string', null) + +,( 'org.bounced_emails', 'prog', + oils_i18n_gettext('org.bounced_emails', + 'Sending email address for patron notices', + 'coust', 'label'), + oils_i18n_gettext('org.bounced_emails', + 'Sending email address for patron notices', + 'coust', 'description'), + 'string', null) + +,( 'org.patron_opt_boundary', 'sec', + oils_i18n_gettext('org.patron_opt_boundary', + 'Patron Opt-In Boundary', + 'coust', 'label'), + oils_i18n_gettext('org.patron_opt_boundary', + 'This determines at which depth above which patrons must be opted in, and below which patrons will be assumed to be opted in.', + 'coust', 'description'), + 'integer', null) + +,( 'org.patron_opt_default', 'sec', + oils_i18n_gettext('org.patron_opt_default', + 'Patron Opt-In Default', + 'coust', 'label'), + oils_i18n_gettext('org.patron_opt_default', + 'This is the default depth at which a patron is opted in; it is calculated as an org unit relative to the current workstation.', + 'coust', 'description'), + 'integer', null) + +,( 'patron.password.use_phone', 'sec', + oils_i18n_gettext('patron.password.use_phone', + 'Patron: password from phone #', + 'coust', 'label'), + oils_i18n_gettext('patron.password.use_phone', + 'By default, use the last 4 alphanumeric characters of the patrons phone number as the default password when creating new users. The exact characters used may be configured via the "GUI: Regex for day_phone field on patron registration" setting.', + 'coust', 'description'), + 'bool', null) + +,( 'print.custom_js_file', 'circ', + oils_i18n_gettext('print.custom_js_file', + 'Printing: Custom Javascript File', + 'coust', 'label'), + oils_i18n_gettext('print.custom_js_file', + 'Full URL path to a Javascript File to be loaded when printing. Should' + || ' implement a print_custom function for DOM manipulation. Can change' + || ' the value of the do_print variable to false to cancel printing.', + 'coust', 'description'), + 'string', null) + +,( 'serial.prev_issuance_copy_location', 'serial', + oils_i18n_gettext('serial.prev_issuance_copy_location', + 'Previous Issuance Copy Location', + 'coust', 'label'), + oils_i18n_gettext('serial.prev_issuance_copy_location', + 'When a serial issuance is received, copies (units) of the previous issuance will be automatically moved into the configured shelving location', + 'coust', 'description'), + 'link', 'acpl') + +,( 'ui.admin.patron_log.max_entries', 'gui', + oils_i18n_gettext('ui.admin.patron_log.max_entries', + 'Work Log: Maximum Patrons Logged', + 'coust', 'label'), + oils_i18n_gettext('ui.admin.patron_log.max_entries', + 'Maximum entries for "Most Recently Affected Patrons..." section of the Work Log interface.', + 'coust', 'description'), + 'interval', null) + +,( 'ui.admin.work_log.max_entries', 'gui', + oils_i18n_gettext('ui.admin.work_log.max_entries', + 'Work Log: Maximum Actions Logged', + 'coust', 'label'), + oils_i18n_gettext('ui.admin.work_log.max_entries', + 'Maximum entries for "Most Recent Staff Actions" section of the Work Log interface.', + 'coust', 'description'), + 'interval', null) + +,( 'ui.cat.volume_copy_editor.horizontal', 'gui', + oils_i18n_gettext('ui.cat.volume_copy_editor.horizontal', + 'Horizontal layout for Volume/Copy Creator/Editor.', + 'coust', 'label'), + oils_i18n_gettext('ui.cat.volume_copy_editor.horizontal', + 'The main entry point for this interface is in Holdings Maintenance, Actions for Selected Rows, Edit Item Attributes / Call Numbers / Replace Barcodes. This setting changes the top and bottom panes for that interface into left and right panes.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.circ.billing.uncheck_bills_and_unfocus_payment_box', 'gui', + oils_i18n_gettext('ui.circ.billing.uncheck_bills_and_unfocus_payment_box', + 'Uncheck bills by default in the patron billing interface', + 'coust', 'label'), + oils_i18n_gettext('ui.circ.billing.uncheck_bills_and_unfocus_payment_box', + 'Uncheck bills by default in the patron billing interface, and focus on the Uncheck All button instead of the Payment Received field.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.circ.in_house_use.entry_cap', 'gui', + oils_i18n_gettext('ui.circ.in_house_use.entry_cap', + 'Record In-House Use: Maximum # of uses allowed per entry.', + 'coust', 'label'), + oils_i18n_gettext('ui.circ.in_house_use.entry_cap', + 'The # of uses entry in the Record In-House Use interface may not exceed the value of this setting.', + 'coust', 'description'), + 'integer', null) + +,( 'ui.circ.in_house_use.entry_warn', 'gui', + oils_i18n_gettext('ui.circ.in_house_use.entry_warn', + 'Record In-House Use: # of uses threshold for Are You Sure? dialog.', + 'coust', 'label'), + oils_i18n_gettext('ui.circ.in_house_use.entry_warn', + 'In the Record In-House Use interface, a submission attempt will warn if the # of uses field exceeds the value of this setting.', + 'coust', 'description'), + 'integer', null) + +,( 'ui.circ.patron_summary.horizontal', 'gui', + oils_i18n_gettext('ui.circ.patron_summary.horizontal', + 'Patron circulation summary is horizontal', + 'coust', 'label'), + oils_i18n_gettext('ui.circ.patron_summary.horizontal', + 'Patron circulation summary is horizontal', + 'coust', 'description'), + 'bool', null) + +,( 'ui.circ.show_billing_tab_on_bills', 'gui', + oils_i18n_gettext('ui.circ.show_billing_tab_on_bills', + 'Show billing tab first when bills are present', + 'coust', 'label'), + oils_i18n_gettext('ui.circ.show_billing_tab_on_bills', + 'If enabled and a patron has outstanding bills and the alert page is not required, show the billing tab by default, instead of the checkout tab, when a patron is loaded', + 'coust', 'description'), + 'bool', null) + +,( 'ui.circ.suppress_checkin_popups', 'circ', + oils_i18n_gettext('ui.circ.suppress_checkin_popups', + 'Suppress popup-dialogs during check-in.', + 'coust', 'label'), + oils_i18n_gettext('ui.circ.suppress_checkin_popups', + 'Suppress popup-dialogs during check-in.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.general.button_bar', 'gui', + oils_i18n_gettext('ui.general.button_bar', + 'Button bar', + 'coust', 'label'), + oils_i18n_gettext('ui.general.button_bar', + 'Set to "circ" or "cat" for stock circulator or cataloger toolbar, respectively.', + 'coust', 'description'), + 'string', null) + +,( 'ui.general.hotkeyset', 'gui', + oils_i18n_gettext('ui.general.hotkeyset', + 'Default Hotkeyset', + 'coust', 'label'), + oils_i18n_gettext('ui.general.hotkeyset', + 'Default Hotkeyset for clients (filename without the .keyset). Examples: Default, Minimal, and None', + 'coust', 'description'), + 'string', null) + +,( 'ui.general.idle_timeout', 'gui', + oils_i18n_gettext('ui.general.idle_timeout', + 'Idle timeout', + 'coust', 'label'), + oils_i18n_gettext('ui.general.idle_timeout', + 'If you want staff client windows to be minimized after a certain amount of system idle time, set this to the number of seconds of idle time that you want to allow before minimizing (requires staff client restart).', + 'coust', 'description'), + 'integer', null) + +,( 'ui.patron.default_country', 'gui', + oils_i18n_gettext('ui.patron.default_country', + 'Default Country for New Addresses in Patron Editor', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.default_country', + 'This is the default Country for new addresses in the patron editor.', + 'coust', 'description'), + 'string', null) + +,( 'ui.patron.default_ident_type', 'gui', + oils_i18n_gettext('ui.patron.default_ident_type', + 'Default Ident Type for Patron Registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.default_ident_type', + 'This is the default Ident Type for new users in the patron editor.', + 'coust', 'description'), + 'link', 'cit') + +,( 'ui.patron.default_inet_access_level', 'sec', + oils_i18n_gettext('ui.patron.default_inet_access_level', + 'Default level of patrons'' internet access', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.default_inet_access_level', + 'Default level of patrons'' internet access', + 'coust', 'description'), + 'integer', null) + +,( 'ui.patron.edit.au.active.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.active.show', + 'Show active field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.active.show', + 'The active field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.active.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.active.suggest', + 'Suggest active field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.active.suggest', + 'The active field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.alert_message.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.alert_message.show', + 'Show alert_message field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.alert_message.show', + 'The alert_message field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.alert_message.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.alert_message.suggest', + 'Suggest alert_message field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.alert_message.suggest', + 'The alert_message field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.alias.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.alias.show', + 'Show alias field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.alias.show', + 'The alias field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.alias.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.alias.suggest', + 'Suggest alias field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.alias.suggest', + 'The alias field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.barred.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.barred.show', + 'Show barred field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.barred.show', + 'The barred field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.barred.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.barred.suggest', + 'Suggest barred field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.barred.suggest', + 'The barred field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.claims_never_checked_out_count.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.claims_never_checked_out_count.show', + 'Show claims_never_checked_out_count field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.claims_never_checked_out_count.show', + 'The claims_never_checked_out_count field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.claims_never_checked_out_count.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.claims_never_checked_out_count.suggest', + 'Suggest claims_never_checked_out_count field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.claims_never_checked_out_count.suggest', + 'The claims_never_checked_out_count field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.claims_returned_count.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.claims_returned_count.show', + 'Show claims_returned_count field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.claims_returned_count.show', + 'The claims_returned_count field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.claims_returned_count.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.claims_returned_count.suggest', + 'Suggest claims_returned_count field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.claims_returned_count.suggest', + 'The claims_returned_count field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.ac.barcode.regex', 'gui', + oils_i18n_gettext('ui.patron.edit.ac.barcode.regex', + 'Regex for barcodes on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.ac.barcode.regex', + 'The Regular Expression for validation on barcodes in patron registration.', + 'coust', 'description'), + 'string', null) + +,( 'ui.patron.edit.au.day_phone.example', 'gui', + oils_i18n_gettext('ui.patron.edit.au.day_phone.example', + 'Example for day_phone field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.day_phone.example', + 'The Example for validation on the day_phone field in patron registration.', + 'coust', 'description'), + 'string', null) + +,( 'ui.patron.edit.au.day_phone.regex', 'gui', + oils_i18n_gettext('ui.patron.edit.au.day_phone.regex', + 'Regex for day_phone field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.day_phone.regex', + E'The Regular Expression for validation on the day_phone field in patron registration. Note: The first capture group will be used for the "last 4 digits of phone number" feature, if enabled. Ex: "[2-9]\\d{2}-\\d{3}-(\\d{4})( x\\d+)?" will ignore the extension on a NANP number.', + 'coust', 'description'), + 'string', null) + +,( 'ui.patron.edit.au.day_phone.require', 'gui', + oils_i18n_gettext('ui.patron.edit.au.day_phone.require', + 'Require day_phone field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.day_phone.require', + 'The day_phone field will be required on the patron registration screen.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.day_phone.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.day_phone.show', + 'Show day_phone field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.day_phone.show', + 'The day_phone field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.day_phone.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.day_phone.suggest', + 'Suggest day_phone field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.day_phone.suggest', + 'The day_phone field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.dob.calendar', 'gui', + oils_i18n_gettext('ui.patron.edit.au.dob.calendar', + 'Show calendar widget for dob field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.dob.calendar', + 'If set the calendar widget will appear when editing the dob field on the patron registration form.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.dob.require', 'gui', + oils_i18n_gettext('ui.patron.edit.au.dob.require', + 'Require dob field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.dob.require', + 'The dob field will be required on the patron registration screen.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.dob.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.dob.show', + 'Show dob field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.dob.show', + 'The dob field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.dob.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.dob.suggest', + 'Suggest dob field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.dob.suggest', + 'The dob field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.email.example', 'gui', + oils_i18n_gettext('ui.patron.edit.au.email.example', + 'Example for email field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.email.example', + 'The Example for validation on the email field in patron registration.', + 'coust', 'description'), + 'string', null) + +,( 'ui.patron.edit.au.email.regex', 'gui', + oils_i18n_gettext('ui.patron.edit.au.email.regex', + 'Regex for email field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.email.regex', + 'The Regular Expression for validation on the email field in patron registration.', + 'coust', 'description'), + 'string', null) + +,( 'ui.patron.edit.au.email.require', 'gui', + oils_i18n_gettext('ui.patron.edit.au.email.require', + 'Require email field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.email.require', + 'The email field will be required on the patron registration screen.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.email.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.email.show', + 'Show email field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.email.show', + 'The email field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.email.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.email.suggest', + 'Suggest email field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.email.suggest', + 'The email field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.evening_phone.example', 'gui', + oils_i18n_gettext('ui.patron.edit.au.evening_phone.example', + 'Example for evening_phone field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.evening_phone.example', + 'The Example for validation on the evening_phone field in patron registration.', + 'coust', 'description'), + 'string', null) + +,( 'ui.patron.edit.au.evening_phone.regex', 'gui', + oils_i18n_gettext('ui.patron.edit.au.evening_phone.regex', + 'Regex for evening_phone field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.evening_phone.regex', + 'The Regular Expression for validation on the evening_phone field in patron registration.', + 'coust', 'description'), + 'string', null) + +,( 'ui.patron.edit.au.evening_phone.require', 'gui', + oils_i18n_gettext('ui.patron.edit.au.evening_phone.require', + 'Require evening_phone field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.evening_phone.require', + 'The evening_phone field will be required on the patron registration screen.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.evening_phone.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.evening_phone.show', + 'Show evening_phone field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.evening_phone.show', + 'The evening_phone field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.evening_phone.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.evening_phone.suggest', + 'Suggest evening_phone field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.evening_phone.suggest', + 'The evening_phone field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.ident_value.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.ident_value.show', + 'Show ident_value field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.ident_value.show', + 'The ident_value field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.ident_value.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.ident_value.suggest', + 'Suggest ident_value field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.ident_value.suggest', + 'The ident_value field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.ident_value2.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.ident_value2.show', + 'Show ident_value2 field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.ident_value2.show', + 'The ident_value2 field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.ident_value2.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.ident_value2.suggest', + 'Suggest ident_value2 field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.ident_value2.suggest', + 'The ident_value2 field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.juvenile.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.juvenile.show', + 'Show juvenile field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.juvenile.show', + 'The juvenile field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.juvenile.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.juvenile.suggest', + 'Suggest juvenile field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.juvenile.suggest', + 'The juvenile field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.master_account.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.master_account.show', + 'Show master_account field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.master_account.show', + 'The master_account field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.master_account.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.master_account.suggest', + 'Suggest master_account field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.master_account.suggest', + 'The master_account field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.other_phone.example', 'gui', + oils_i18n_gettext('ui.patron.edit.au.other_phone.example', + 'Example for other_phone field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.other_phone.example', + 'The Example for validation on the other_phone field in patron registration.', + 'coust', 'description'), + 'string', null) + +,( 'ui.patron.edit.au.other_phone.regex', 'gui', + oils_i18n_gettext('ui.patron.edit.au.other_phone.regex', + 'Regex for other_phone field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.other_phone.regex', + 'The Regular Expression for validation on the other_phone field in patron registration.', + 'coust', 'description'), + 'string', null) + +,( 'ui.patron.edit.au.other_phone.require', 'gui', + oils_i18n_gettext('ui.patron.edit.au.other_phone.require', + 'Require other_phone field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.other_phone.require', + 'The other_phone field will be required on the patron registration screen.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.other_phone.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.other_phone.show', + 'Show other_phone field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.other_phone.show', + 'The other_phone field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.other_phone.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.other_phone.suggest', + 'Suggest other_phone field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.other_phone.suggest', + 'The other_phone field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.prefix.require', 'gui', + oils_i18n_gettext('ui.patron.edit.au.prefix.require', + 'Require prefix field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.prefix.require', + 'The prefix field will be required on the patron registration screen.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.prefix.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.prefix.show', + 'Show prefix field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.prefix.show', + 'The prefix field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.prefix.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.prefix.suggest', + 'Suggest prefix field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.prefix.suggest', + 'The prefix field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.second_given_name.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.second_given_name.show', + 'Show second_given_name field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.second_given_name.show', + 'The second_given_name field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.second_given_name.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.second_given_name.suggest', + 'Suggest second_given_name field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.second_given_name.suggest', + 'The second_given_name field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.suffix.show', 'gui', + oils_i18n_gettext('ui.patron.edit.au.suffix.show', + 'Show suffix field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.suffix.show', + 'The suffix field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.au.suffix.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.au.suffix.suggest', + 'Suggest suffix field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.au.suffix.suggest', + 'The suffix field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.aua.county.require', 'gui', + oils_i18n_gettext('ui.patron.edit.aua.county.require', + 'Require county field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.aua.county.require', + 'The county field will be required on the patron registration screen.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.aua.state.require', 'gui', + oils_i18n_gettext('ui.patron.edit.aua.state.require', + 'Require State field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.aua.state.require', + 'The State field will be required on the patron registration screen.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.aua.state.show', 'gui', + oils_i18n_gettext('ui.patron.edit.aua.state.show', + 'Show State field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.aua.state.show', + 'The State field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.aua.state.suggest', 'gui', + oils_i18n_gettext('ui.patron.edit.aua.state.suggest', + 'Suggest State field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.aua.state.suggest', + 'The State field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.aua.post_code.example', 'gui', + oils_i18n_gettext('ui.patron.edit.aua.post_code.example', + 'Example for post_code field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.aua.post_code.example', + 'The Example for validation on the post_code field in patron registration.', + 'coust', 'description'), + 'string', null) + +,( 'ui.patron.edit.aua.post_code.regex', 'gui', + oils_i18n_gettext('ui.patron.edit.aua.post_code.regex', + 'Regex for post_code field on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.aua.post_code.regex', + 'The Regular Expression for validation on the post_code field in patron registration.', + 'coust', 'description'), + 'string', null) + +,( 'ui.patron.edit.default_suggested', 'gui', + oils_i18n_gettext('ui.patron.edit.default_suggested', + 'Default showing suggested patron registration fields', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.default_suggested', + 'Instead of All fields, show just suggested fields in patron registration by default.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron.edit.phone.example', 'gui', + oils_i18n_gettext('ui.patron.edit.phone.example', + 'Example for phone fields on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.phone.example', + 'The Example for validation on phone fields in patron registration. Applies to all phone fields without their own setting.', + 'coust', 'description'), + 'string', null) + +,( 'ui.patron.edit.phone.regex', 'gui', + oils_i18n_gettext('ui.patron.edit.phone.regex', + 'Regex for phone fields on patron registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.edit.phone.regex', + 'The Regular Expression for validation on phone fields in patron registration. Applies to all phone fields without their own setting. NOTE: See description of the day_phone regex for important information about capture groups with it.', + 'coust', 'description'), + 'string', null) + +,( 'ui.patron.registration.require_address', 'gui', + oils_i18n_gettext('ui.patron.registration.require_address', + 'Require at least one address for Patron Registration', + 'coust', 'label'), + oils_i18n_gettext('ui.patron.registration.require_address', + 'Enforces a requirement for having at least one address for a patron during registration.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.patron_search.result_cap', 'gui', + oils_i18n_gettext('ui.patron_search.result_cap', + 'Cap results in Patron Search at this number.', + 'coust', 'label'), + oils_i18n_gettext('ui.patron_search.result_cap', + 'So for example, if you search for John Doe, normally you would get at most 50 results. This setting allows you to raise or lower that limit.', + 'coust', 'description'), + 'integer', null) + +,( 'ui.staff.require_initials.patron_standing_penalty', 'gui', + oils_i18n_gettext('ui.staff.require_initials.patron_standing_penalty', + 'Require staff initials for entry/edit of patron standing penalties and messages.', + 'coust', 'label'), + oils_i18n_gettext('ui.staff.require_initials.patron_standing_penalty', + 'Appends staff initials and edit date into patron standing penalties and messages.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.staff.require_initials.patron_info_notes', 'gui', + oils_i18n_gettext('ui.staff.require_initials.patron_info_notes', + 'Require staff initials for entry/edit of patron notes.', + 'coust', 'label'), + oils_i18n_gettext('ui.staff.require_initials.patron_info_notes', + 'Appends staff initials and edit date into patron note content.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.staff.require_initials.copy_notes', 'gui', + oils_i18n_gettext('ui.staff.require_initials.copy_notes', + 'Require staff initials for entry/edit of copy notes.', + 'coust', 'label'), + oils_i18n_gettext('ui.staff.require_initials.copy_notes', + 'Appends staff initials and edit date into copy note content.', + 'coust', 'description'), + 'bool', null) + +,( 'ui.unified_volume_copy_editor', 'gui', + oils_i18n_gettext('ui.unified_volume_copy_editor', + 'Unified Volume/Item Creator/Editor', + 'coust', 'label'), + oils_i18n_gettext('ui.unified_volume_copy_editor', + 'If true combines the Volume/Copy Creator and Item Attribute Editor in some instances.', + 'coust', 'description'), + 'bool', null) + +,( 'url.remote_column_settings', 'gui', + oils_i18n_gettext('url.remote_column_settings', + 'URL for remote directory containing list column settings.', + 'coust', 'label'), + oils_i18n_gettext('url.remote_column_settings', + 'URL for remote directory containing list column settings. The format and naming convention for the files found in this directory match those in the local settings directory for a given workstation. An administrator could create the desired settings locally and then copy all the tree_columns_for_* files to the remote directory.', + 'coust', 'description'), + 'string', null) +,( 'opac.staff_saved_search.size', 'opac', + oils_i18n_gettext('opac.staff_saved_search.size', + 'OPAC: Number of staff client saved searches to display on left side of results and record details pages', + 'coust', 'label'), + oils_i18n_gettext('opac.staff_saved_search.size', + 'If unset, the OPAC (only when wrapped in the staff client!) will default to showing you your ten most recent searches on the left side of the results and record details pages. If you actually don''t want to see this feature at all, set this value to zero at the top of your organizational tree.', + 'coust', 'description'), + 'integer', null) +,( 'circ.holds.target_when_closed', 'circ', + oils_i18n_gettext('circ.holds.target_when_closed', + 'Target copies for a hold even if copy''s circ lib is closed', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.target_when_closed', + 'If this setting is true at a given org unit or one of its ancestors, the hold targeter will target copies from this org unit even if the org unit is closed (according to the actor.org_unit.closed_date table).', + 'coust', 'description'), + 'bool', null) +,( 'circ.holds.target_when_closed_if_at_pickup_lib', 'circ', + oils_i18n_gettext('circ.holds.target_when_closed_if_at_pickup_lib', + 'Target copies for a hold even if copy''s circ lib is closed IF the circ lib is the hold''s pickup lib', + 'coust', 'label'), + oils_i18n_gettext('circ.holds.target_when_closed_if_at_pickup_lib', + 'If this setting is true at a given org unit or one of its ancestors, the hold targeter will target copies from this org unit even if the org unit is closed (according to the actor.org_unit.closed_date table) IF AND ONLY IF the copy''s circ lib is the same as the hold''s pickup lib.', + 'coust', 'description'), + 'bool', null) + + +,( 'opac.staff.jump_to_details_on_single_hit', 'opac', + oils_i18n_gettext('opac.staff.jump_to_details_on_single_hit', + 'Jump to details on 1 hit (staff client)', + 'coust', 'label'), + oils_i18n_gettext('opac.staff.jump_to_details_on_single_hit', + 'When a search yields only 1 result, jump directly to the record details page. This setting only affects the OPAC within the staff client', + 'coust', 'description'), + 'bool', null) +,( 'opac.patron.jump_to_details_on_single_hit', 'opac', + oils_i18n_gettext('opac.patron.jump_to_details_on_single_hit', + 'Jump to details on 1 hit (public)', + 'coust', 'label'), + oils_i18n_gettext('opac.patron.jump_to_details_on_single_hit', + 'When a search yields only 1 result, jump directly to the record details page. This setting only affects the public OPAC', + 'coust', 'description'), + 'bool', null) + +,( 'opac.search.tag_circulated_items', 'opac', + oils_i18n_gettext( + 'opac.search.tag_circulated_items', + 'Tag Circulated Items in Results', + 'coust', 'label' + ), + oils_i18n_gettext( + 'opac.search.tag_circulated_items', + 'When a user is both logged in and has opted in to circulation history tracking, turning on this setting will cause previous (or currently) circulated items to be highlighted in search results', + 'coust', 'description' + ), + 'bool', null) + +,( 'sms.enable', 'sms', + oils_i18n_gettext( + 'sms.enable', + 'Enable features that send SMS text messages.', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'sms.enable', + 'Current features that use SMS include hold-ready-for-pickup notifications and a "Send Text" action for call numbers in the OPAC. If this setting is not enabled, the SMS options will not be offered to the user. Unless you are carefully silo-ing patrons and their use of the OPAC, the context org for this setting should be the top org in the org hierarchy, otherwise patrons can trample their user settings when jumping between orgs.', + 'coust', + 'description' + ), + 'bool', null) +,( 'sms.disable_authentication_requirement.callnumbers', 'sms', + oils_i18n_gettext( + 'sms.disable_authentication_requirement.callnumbers', + 'Disable auth requirement for texting call numbers.', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'sms.disable_authentication_requirement.callnumbers', + 'Disable authentication requirement for sending call number information via SMS from the OPAC.', + 'coust', + 'description' + ), + 'bool', null) +,( 'serial.default_display_grouping', 'serial', + oils_i18n_gettext( + 'serial.default_display_grouping', + 'Default display grouping for serials distributions presented in the OPAC.', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'serial.default_display_grouping', + 'Default display grouping for serials distributions presented in the OPAC. This can be "enum" or "chron".', + 'coust', + 'description' + ), + 'string', null) +,( 'vandelay.default_match_set', 'vandelay', + oils_i18n_gettext( + 'vandelay.default_match_set', + 'Default Record Match Set', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'vandelay.default_match_set', + 'Default Record Match Set', + 'coust', + 'description' + ), + 'string', null) +,( 'opac.browse.pager_shortcuts', 'opac', + oils_i18n_gettext( + 'opac.browse.pager_shortcuts', + 'Paging shortcut links for OPAC Browse', + 'coust', + 'label' + ), + oils_i18n_gettext( + '', + 'The characters in this string, in order, will be used as shortcut links for quick paging in the OPAC browse interface. Any sequence surrounded by asterisks will be taken as a whole label, not split into individual labels at the character level, but only the first character will serve as the basis of the search.', + 'coust', + 'description' + ), + 'string', null) + +,( 'circ.patron_edit.duplicate_patron_check_depth', 'circ', + oils_i18n_gettext( + 'circ.patron_edit.duplicate_patron_check_depth', + 'Specify search depth for the duplicate patron check in the patron editor', + 'coust', + 'label'), + oils_i18n_gettext( + 'circ.patron_edit.duplicate_patron_check_depth', + 'When using the patron registration page, the duplicate patron check will use the configured depth to scope the search for duplicate patrons.', + 'coust', + 'description'), + 'integer', null) +,('circ.use_lost_paid_copy_status', + 'circ', + oils_i18n_gettext('circ.use_lost_paid_copy_status', + 'Use Lost and Paid copy status', + 'coust', 'label'), + oils_i18n_gettext('circ.use_lost_paid_copy_status', + 'Use Lost and Paid copy status when lost or long overdue billing is paid', + 'coust', 'description'), + 'bool', null) + +,( 'circ.checkin.lost_zero_balance.do_not_change', 'circ', + oils_i18n_gettext('circ.checkin.lost_zero_balance.do_not_change', + 'Do not change fines/fees on zero-balance LOST transaction', + 'coust', 'label'), + oils_i18n_gettext('circ.checkin.lost_zero_balance.do_not_change', + 'When an item has been marked lost and all fines/fees have been completely paid on the transaction, do not void or reinstate any fines/fees EVEN IF circ.void_lost_on_checkin and/or circ.void_lost_proc_fee_on_checkin are enabled', + 'coust', 'description'), + 'bool', null) + +,( 'bill.prohibit_negative_balance_default', 'finance', + oils_i18n_gettext( + 'bill.prohibit_negative_balance_default', + 'Prohibit negative balance on bills (DEFAULT)', + 'coust', 'label'), + oils_i18n_gettext( + 'bill.prohibit_negative_balance_default', + 'Default setting to prevent negative balances (refunds) on circulation related bills. Set to "true" to prohibit negative balances at all times or, when used in conjunction with an interval setting, to prohibit negative balances after a set period of time. ', + 'coust', 'description'), + 'bool', null) +,( 'bill.prohibit_negative_balance_on_overdues', 'finance', + oils_i18n_gettext( + 'bill.prohibit_negative_balance_on_overdues', + 'Prohibit negative balance on bills for overdue materials', + 'coust', 'label'), + oils_i18n_gettext( + 'bill.prohibit_negative_balance_on_overdues', + 'Prevent negative balances (refunds) on bills for overdue materials. Set to "true" to prohibit negative balances at all times or, when used in conjunction with an interval setting, to prohibit negative balances after a set period of time.', + 'coust', 'description'), + 'bool', null) +,( 'bill.prohibit_negative_balance_on_lost', 'finance', + oils_i18n_gettext( + 'bill.prohibit_negative_balance_on_lost', + 'Prohibit negative balance on bills for lost materials', + 'coust', 'label'), + oils_i18n_gettext( + 'bill.prohibit_negative_balance_on_lost', + 'Prevent negative balances (refunds) on bills for lost/long overdue materials. Set to "true" to prohibit negative balances at all times or, when used in conjunction with an interval setting, to prohibit negative balances after an interval of time.', + 'coust', 'description'), + 'bool', null) +,( 'bill.negative_balance_interval_default', 'finance', + oils_i18n_gettext( + 'bill.negative_balance_interval_default', + 'Negative Balance Interval (DEFAULT)', + 'coust', 'label'), + oils_i18n_gettext( + 'bill.negative_balance_interval_default', + 'Amount of time after which no negative balances (refunds) are allowed on circulation bills. The "Prohibit negative balance on bills" setting must also be set to "true".', + 'coust', 'description'), + 'interval', null) +,( 'bill.negative_balance_interval_on_overdues', 'finance', + oils_i18n_gettext( + 'bill.negative_balance_interval_on_overdues', + 'Negative Balance Interval for Overdues', + 'coust', 'label'), + oils_i18n_gettext( + 'bill.negative_balance_interval_on_overdues', + 'Amount of time after which no negative balances (refunds) are allowed on bills for overdue materials. The "Prohibit negative balance on bills for overdue materials" setting must also be set to "true".', + 'coust', 'description'), + 'interval', null) +,( 'bill.negative_balance_interval_on_lost', 'finance', + oils_i18n_gettext( + 'bill.negative_balance_interval_on_lost', + 'Negative Balance Interval for Lost', + 'coust', 'label'), + oils_i18n_gettext( + 'bill.negative_balance_interval_on_lost', + 'Amount of time after which no negative balances (refunds) are allowed on bills for lost/long overdue materials. The "Prohibit negative balance on bills for lost materials" setting must also be set to "true".', + 'coust', 'description'), + 'interval', null) +; + +UPDATE config.org_unit_setting_type + SET view_perm = (SELECT id FROM permission.perm_list + WHERE code = 'VIEW_CREDIT_CARD_PROCESSING' LIMIT 1) + WHERE name LIKE 'credit.processor%' AND view_perm IS NULL; + +UPDATE config.org_unit_setting_type + SET update_perm = (SELECT id FROM permission.perm_list + WHERE code = 'ADMIN_CREDIT_CARD_PROCESSING' LIMIT 1) + WHERE name LIKE 'credit.processor%' AND update_perm IS NULL; + +-- *** Has to go below coust definition to satisfy referential integrity *** +-- In booking, elbow room defines: +-- a) how far in the future you must make a reservation on a given item if +-- that item will have to transit somewhere to fulfill the reservation. +-- b) how soon a reservation must be starting for the reserved item to +-- be op-captured by the checkin interface. +INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES ( + (SELECT id FROM actor.org_unit WHERE parent_ou IS NULL), + 'circ.booking_reservation.default_elbow_room', + '"1 day"') + ,(1, 'cat.spine.line.margin', 0) + ,(1, 'cat.spine.line.height', 9) + ,(1, 'cat.spine.line.width', 8) + ,(1, 'cat.label.font.family', '"monospace"') + ,(1, 'cat.label.font.size', 10) + ,(1, 'cat.label.font.weight', '"normal"') + ,(1, 'circ.grace.extend', 'true') +; + + +-- Staged Search (for default matchpoints) +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(1, 'first_word', 1.5); +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(1, 'full_match', 20); + +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(2, 'first_word', 1.5); +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(2, 'word_order', 10); +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(2, 'full_match', 20); + +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(3, 'first_word', 1.5); +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(3, 'word_order', 10); +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(3, 'full_match', 20); + +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(4, 'first_word', 1.5); +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(4, 'word_order', 10); +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(4, 'full_match', 20); + +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(5, 'first_word', 1.5); +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(5, 'word_order', 10); +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(5, 'full_match', 20); + +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(6, 'first_word', 1.5); +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(6, 'word_order', 10); +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(6, 'full_match', 20); + +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(7, 'first_word', 1.5); + +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(8, 'first_word', 1.5); + +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(9, 'first_word', 1.5); + +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(10, 'first_word', 1.5); + +INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(15, 'word_order', 10); + +-- Vandelay (for importing and exporting records) 012.schema.vandelay.sql +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (1, 'title', oils_i18n_gettext(1, 'Title of work', 'vqbrad', 'description'),'//*[@tag="245"]/*[contains("abcmnopr",@code)]'); +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (2, 'author', oils_i18n_gettext(2, 'Author of work', 'vqbrad', 'description'),'//*[@tag="100" or @tag="110" or @tag="113"]/*[contains("ad",@code)]'); +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (3, 'language', oils_i18n_gettext(3, 'Language of work', 'vqbrad', 'description'),'//*[@tag="240"]/*[@code="l"][1]'); +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (4, 'pagination', oils_i18n_gettext(4, 'Pagination', 'vqbrad', 'description'),'//*[@tag="300"]/*[@code="a"][1]'); +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, remove ) VALUES (5, 'isbn',oils_i18n_gettext(5, 'ISBN', 'vqbrad', 'description'),'//*[@tag="020"]/*[@code="a"]', $r$(?:-|\s.+$)$r$); +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, remove ) VALUES (6, 'issn',oils_i18n_gettext(6, 'ISSN', 'vqbrad', 'description'),'//*[@tag="022"]/*[@code="a"]', $r$(?:-|\s.+$)$r$); +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (7, 'price',oils_i18n_gettext(7, 'Price', 'vqbrad', 'description'),'//*[@tag="020" or @tag="022"]/*[@code="c"][1]'); +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath) VALUES (8, 'rec_identifier',oils_i18n_gettext(8, 'Accession Number', 'vqbrad', 'description'),'//*[@tag="001"]'); +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath) VALUES (9, 'eg_tcn',oils_i18n_gettext(9, 'TCN Value', 'vqbrad', 'description'),'//*[@tag="901"]/*[@code="a"]'); +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath) VALUES (10, 'eg_tcn_source',oils_i18n_gettext(10, 'TCN Source', 'vqbrad', 'description'),'//*[@tag="901"]/*[@code="b"]'); +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath) VALUES (11, 'eg_identifier',oils_i18n_gettext(11, 'Internal ID', 'vqbrad', 'description'),'//*[@tag="901"]/*[@code="c"]'); +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (12, 'publisher',oils_i18n_gettext(12, 'Publisher', 'vqbrad', 'description'),'//*[@tag="260"]/*[@code="b"][1]'); +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, remove ) VALUES (13, 'pubdate',oils_i18n_gettext(13, 'Publication Date', 'vqbrad', 'description'),'//*[@tag="260"]/*[@code="c"][1]',$r$\D$r$); +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (14, 'edition',oils_i18n_gettext(14, 'Edition', 'vqbrad', 'description'),'//*[@tag="250"]/*[@code="a"][1]'); +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (15, 'item_barcode',oils_i18n_gettext(15, 'Item Barcode', 'vqbrad', 'description'),'//*[@tag="852"]/*[@code="p"][1]'); +INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (16, 'zsource', oils_i18n_gettext(16, 'Z39.50 Source', 'vqbrad', 'description'), '//*[@tag="901"]/*[@code="z"]'); +SELECT SETVAL('vandelay.bib_attr_definition_id_seq'::TEXT, 100); + +INSERT INTO vandelay.import_item_attr_definition ( + owner, name, tag, owning_lib, circ_lib, location, + call_number, circ_modifier, barcode, price, copy_number, + circulate, ref, holdable, opac_visible, status +) VALUES ( + 1, + 'Evergreen 852 export format', + '852', + '[@code = "b"][1]', + '[@code = "b"][2]', + 'c', + 'j', + 'g', + 'p', + 'y', + 't', + '[@code = "x" and text() = "circulating"]', + '[@code = "x" and text() = "reference"]', + '[@code = "x" and text() = "holdable"]', + '[@code = "x" and text() = "visible"]', + 'z' +); + +INSERT INTO vandelay.import_item_attr_definition ( + owner, + name, + tag, + owning_lib, + location, + call_number, + circ_modifier, + barcode, + price, + status +) VALUES ( + 1, + 'Unicorn Import format -- 999', + '999', + 'm', + 'l', + 'a', + 't', + 'i', + 'p', + 'k' +); + +INSERT INTO vandelay.authority_attr_definition (id, code, description, xpath) VALUES (1, 'rec_identifier',oils_i18n_gettext(1, 'Identifier', 'vqarad', 'description'),'//*[@tag="001"]'); +SELECT SETVAL('vandelay.authority_attr_definition_id_seq'::TEXT, 100); + + +INSERT INTO container.copy_bucket_type (code,label) VALUES ('misc', oils_i18n_gettext('misc', 'Miscellaneous', 'ccpbt', 'label')); +INSERT INTO container.copy_bucket_type (code,label) VALUES ('staff_client', oils_i18n_gettext('staff_client', 'General Staff Client container', 'ccpbt', 'label')); +INSERT INTO container.copy_bucket_type (code,label) VALUES ( 'circ_history', 'Circulation History' ); +INSERT INTO container.call_number_bucket_type (code,label) VALUES ('misc', oils_i18n_gettext('misc', 'Miscellaneous', 'ccnbt', 'label')); +INSERT INTO container.biblio_record_entry_bucket_type (code,label) VALUES ('misc', oils_i18n_gettext('misc', 'Miscellaneous', 'cbrebt', 'label')); +INSERT INTO container.biblio_record_entry_bucket_type (code,label) VALUES ('staff_client', oils_i18n_gettext('staff_client', 'General Staff Client container', 'cbrebt', 'label')); +INSERT INTO container.biblio_record_entry_bucket_type (code,label) VALUES ('bookbag', oils_i18n_gettext('bookbag', 'Book List', 'cbrebt', 'label')); +INSERT INTO container.biblio_record_entry_bucket_type (code,label) VALUES ('reading_list', oils_i18n_gettext('reading_list', 'Reading List', 'cbrebt', 'label')); +INSERT INTO container.biblio_record_entry_bucket_type (code,label) VALUES ('template_merge',oils_i18n_gettext('template_merge','Template Merge Container', 'cbrebt', 'label')); +INSERT INTO container.biblio_record_entry_bucket_type (code,label) VALUES ('url_verify', oils_i18n_gettext('url_verify', 'URL Verification Queue', 'cbrebt', 'label')); + +INSERT INTO container.user_bucket_type (code,label) VALUES ('misc', oils_i18n_gettext('misc', 'Miscellaneous', 'cubt', 'label')); +INSERT INTO container.user_bucket_type (code,label) VALUES ('folks', oils_i18n_gettext('folks', 'Friends', 'cubt', 'label')); +INSERT INTO container.user_bucket_type (code,label) VALUES ('folks:pub_book_bags.view', oils_i18n_gettext('folks:pub_book_bags.view', 'List Published Book Lists', 'cubt', 'label')); +INSERT INTO container.user_bucket_type (code,label) VALUES ('folks:pub_book_bags.add', oils_i18n_gettext('folks:pub_book_bags.add', 'Add to Published Book Lists', 'cubt', 'label')); +INSERT INTO container.user_bucket_type (code,label) VALUES ('folks:circ.view', oils_i18n_gettext('folks:circ.view', 'View Circulations', 'cubt', 'label')); +INSERT INTO container.user_bucket_type (code,label) VALUES ('folks:circ.renew', oils_i18n_gettext('folks:circ.renew', 'Renew Circulations', 'cubt', 'label')); +INSERT INTO container.user_bucket_type (code,label) VALUES ('folks:circ.checkout', oils_i18n_gettext('folks:circ.checkout', 'Checkout Items', 'cubt', 'label')); +INSERT INTO container.user_bucket_type (code,label) VALUES ('folks:hold.view', oils_i18n_gettext('folks:hold.view', 'View Holds', 'cubt', 'label')); +INSERT INTO container.user_bucket_type (code,label) VALUES ('folks:hold.cancel', oils_i18n_gettext('folks:hold.cancel', 'Cancel Holds', 'cubt', 'label')); + + +---------------------------------- +-- MARC21 record structure data -- +---------------------------------- + +-- Record type map +INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('BKS','at','acdm'); +INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SER','a','bsi'); +INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('VIS','gkro','abcdmsi'); +INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MIX','p','cdi'); +INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MAP','ef','abcdmsi'); +INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SCO','cd','abcdmsi'); +INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('REC','ij','abcdmsi'); +INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('COM','m','abcdmsi'); +INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('AUT','z',' '); +INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MFHD','uvxy',' '); + + +------ Physical Characteristics + +-- Map +INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('a','Map'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','b','1','1','SMD'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Atlas'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diagram'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Map'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Profile'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Model'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Remote-sensing image'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Section'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('y',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'View'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','d','3','1','Color'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'One color'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','e','4','1','Physical medium'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Flexible base photographic medium, positive'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Flexible base photographic medium, negative'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Non-flexible base photographic medium, positive'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Non-flexible base photographic medium, negative'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('y',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other photographic medium'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','f','5','1','Type of reproduction'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','g','6','1','Production/reproduction details'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photocopy, blueline print'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photocopy'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Pre-production'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','h','7','1','Positive/negative'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); + +-- Electronic Resource +INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('c','Electronic Resource'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','b','1','1','SMD'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Tape Cartridge'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Chip cartridge'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Computer optical disk cartridge'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Tape cassette'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Tape reel'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic disk'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magneto-optical disk'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Optical disk'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Remote'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','d','3','1','Color'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'One color'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Black-and-white'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Gray scale'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','e','4','1','Dimensions'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3 1/2 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'12 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'4 3/4 in. or 12 cm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1 1/8 x 2 3/8 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3 7/8 x 2 1/2 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'5 1/4 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','f','5','1','Sound'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES (' ',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'No sound (Silent)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','g','6','3','Image bit depth'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('---',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('mmm',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multiple'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('nnn',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','h','9','1','File formats'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'One file format'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multiple file formats'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','i','10','1','Quality assurance target(s)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Absent'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Present'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','j','11','1','Antecedent/Source'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'File reproduced from original'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'File reproduced from microform'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'File reproduced from electronic resource'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'File reproduced from an intermediate (not microform)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','k','12','1','Level of compression'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncompressed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossless'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossy'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','l','13','1','Reformatting quality'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Access'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Preservation'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Replacement'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); + +-- Globe +INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('d','Globe'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','b','1','1','SMD'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Celestial globe'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Planetary or lunar globe'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Terrestrial globe'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Earth moon globe'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','d','3','1','Color'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'One color'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','e','4','1','Physical medium'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','f','5','1','Type of reproduction'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); + +-- Tactile Material +INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('f','Tactile Material'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','b','1','1','SMD'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Moon'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Braille'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Tactile, with no writing system'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','d','3','2','Class of braille writing'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Literary braille'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Format code braille'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mathematics and scientific braille'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Computer braille'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Music braille'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multiple braille types'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','e','5','1','Level of contraction'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncontracted'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Contracted'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','f','6','3','Braille music format'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bar over bar'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bar by bar'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Line over line'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paragraph'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Single line'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Section by section'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Line by line'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Open score'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Spanner short form scoring'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Short form scoring'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outline'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('l',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vertical score'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','g','9','1','Special physical characteristics'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Print/braille'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Jumbo or enlarged braille'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); + +-- Projected Graphic +INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('g','Projected Graphic'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','b','1','1','SMD'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film cartridge'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Filmstrip'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film filmstrip type'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Filmstrip roll'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Slide'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Transparency'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','d','3','1','Color'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Black-and-white'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hand-colored'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','e','4','1','Base of emulsion'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Safety film'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film base, other than safety film'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed collection'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','f','5','1','Sound on medium or separate'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound on medium'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound separate from medium'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','g','6','1','Medium for sound'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Optical sound track on motion picture film'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic sound track on motion picture film'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape in cartridge'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound disc'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape on reel'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape in cassette'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Optical and magnetic sound track on film'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','h','7','1','Dimensions'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Standard 8 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Super 8 mm./single 8 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'9.5 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'16 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'28 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'35 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'70 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'2 x 2 in. (5 x 5 cm.)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'2 1/4 x 2 1/4 in. (6 x 6 cm.)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'4 x 5 in. (10 x 13 cm.)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'5 x 7 in. (13 x 18 cm.)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 x 10 in. (21 x 26 cm.)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('w',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'9 x 9 in. (23 x 23 cm.)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('x',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'10 x 10 in. (26 x 26 cm.)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('y',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'7 x 7 in. (18 x 18 cm.)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','i','8','1','Secondary support material'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cardboard'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'metal'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal and glass'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics and glass'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed collection'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); + +-- Microform +INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('h','Microform'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','b','1','1','SMD'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Aperture card'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfilm cartridge'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfilm cassette'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfilm reel'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfiche'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfiche cassette'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microopaque'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','d','3','1','Positive/negative'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','e','4','1','Dimensions'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'16 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'35 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'70mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'105 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('l',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3 x 5 in. (8 x 13 cm.)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'4 x 6 in. (11 x 15 cm.)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'6 x 9 in. (16 x 23 cm.)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3 1/4 x 7 3/8 in. (9 x 19 cm.)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','f','5','4','Reduction ratio range/Reduction ratio'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Low (1-16x)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Normal (16-30x)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'High (31-60x)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Very high (61-90x)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Ultra (90x-)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Reduction ratio varies'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','g','9','1','Color'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Black-and-white'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','h','10','1','Emulsion on film'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Silver halide'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diazo'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vesicular'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','i','11','1','Quality assurance target(s)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1st gen. master'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Printing master'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Service copy'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed generation'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','j','12','1','Base of film'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Safety base, undetermined'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Safety base, acetate undetermined'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Safety base, diacetate'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('l',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Nitrate base'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed base'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Safety base, polyester'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Safety base, mixed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Safety base, triacetate'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); + +-- Non-projected Graphic +INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('k','Non-projected Graphic'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','b','1','1','SMD'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Collage'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Drawing'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Painting'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photo-mechanical print'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photonegative'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photoprint'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Picture'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Print'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('l',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Technical drawing'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Chart'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Flash/activity card'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','d','3','1','Color'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'One color'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Black-and-white'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hand-colored'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','e','4','1','Primary support material'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bristol board'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cardboard/illustration board'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed collection'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','f','5','1','Secondary support material'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bristol board'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cardboard/illustration board'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed collection'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); + +-- Motion Picture +INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('m','Motion Picture'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','b','1','1','SMD'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film cartridge'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film cassette'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film reel'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','d','3','1','Color'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Black-and-white'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hand-colored'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','e','4','1','Motion picture presentation format'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Standard sound aperture, reduced frame'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Nonanamorphic (wide-screen)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3D'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Anamorphic (wide-screen)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other-wide screen format'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Standard. silent aperture, full frame'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','f','5','1','Sound on medium or separate'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound on medium'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound separate from medium'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','g','6','1','Medium for sound'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Optical sound track on motion picture film'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic sound track on motion picture film'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape in cartridge'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound disc'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape on reel'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape in cassette'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Optical and magnetic sound track on film'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','h','7','1','Dimensions'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Standard 8 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Super 8 mm./single 8 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'9.5 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'16 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'28 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'35 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'70 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','i','8','1','Configuration of playback channels'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multichannel, surround or quadraphonic'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','j','9','1','Production elements'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Work print'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Trims'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outtakes'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Rushes'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixing tracks'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Title bands/inter-title rolls'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Production rolls'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); + +-- Remote-sensing Image +INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('r','Remote-sensing Image'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','b','1','1','SMD'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','d','3','1','Altitude of sensor'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Surface'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Airborne'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Spaceborne'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','e','4','1','Attitude of sensor'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Low oblique'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'High oblique'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vertical'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','f','5','1','Cloud cover'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('0',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'0-09%'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('1',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'10-19%'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('2',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'20-29%'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('3',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'30-39%'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('4',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'40-49%'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('5',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'50-59%'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('6',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'60-69%'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('7',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'70-79%'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('8',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'80-89%'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('9',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'90-100%'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','g','6','1','Platform construction type'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Balloon'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Aircraft-low altitude'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Aircraft-medium altitude'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Aircraft-high altitude'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Manned spacecraft'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unmanned spacecraft'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Land-based remote-sensing device'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Water surface-based remote-sensing device'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Submersible remote-sensing device'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','h','7','1','Platform use category'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Meteorological'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Surface observing'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Space observing'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed uses'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','i','8','1','Sensor type'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Active'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Passive'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','j','9','2','Data type'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('aa',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Visible light'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('da',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Near infrared'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('db',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Middle infrared'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('dc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Far infrared'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('dd',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Thermal infrared'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('de',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Shortwave infrared (SWIR)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('df',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Reflective infrared'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('dv',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combinations'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('dz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other infrared data'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('ga',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sidelooking airborne radar (SLAR)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('gb',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetic aperture radar (SAR-single frequency)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('gc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'SAR-multi-frequency (multichannel)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('gd',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'SAR-like polarization'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('ge',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'SAR-cross polarization'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('gf',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Infometric SAR'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('gg',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Polarmetric SAR'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('gu',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Passive microwave mapping'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('gz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other microwave data'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('ja',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Far ultraviolet'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('jb',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Middle ultraviolet'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('jc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Near ultraviolet'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('jv',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Ultraviolet combinations'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('jz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other ultraviolet data'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('ma',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multi-spectral, multidata'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('mb',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multi-temporal'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('mm',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination of various data types'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('nn',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('pa',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sonar-water depth'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('pb',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sonar-bottom topography images, sidescan'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('pc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sonar-bottom topography, near-surface'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('pd',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sonar-bottom topography, near-bottom'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('pe',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Seismic surveys'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('pz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other acoustical data'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('ra',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Gravity anomales (general)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rb',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Free-air'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bouger'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rd',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Isostatic'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('sa',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic field'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('ta',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Radiometric surveys'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('uu',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('zz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); + +-- Sound Recording +INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('s','Sound Recording'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','b','1','1','SMD'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound disc'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cylinder'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound cartridge'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound-track film'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Roll'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound cassette'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound-tape reel'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('w',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wire recording'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','d','3','1','Speed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'16 rpm'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'33 1/3 rpm'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'45 rpm'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'78 rpm'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 rpm'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1.4 mps'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'120 rpm'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'160 rpm'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'15/16 ips'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('l',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1 7/8 ips'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3 3/4 ips'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'7 1/2 ips'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'15 ips'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'30 ips'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','e','4','1','Configuration of playback channels'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadraphonic'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','f','5','1','Groove width or pitch'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microgroove/fine'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Coarse/standard'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','g','6','1','Dimensions'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'5 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'7 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'10 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'12 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'16 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'4 3/4 in. (12 cm.)'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3 7/8 x 2 1/2 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'5 1/4 x 3 7/8 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'2 3/4 x 4 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','h','7','1','Tape width'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('l',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1/8 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1/4in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1/2 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','i','8','1','Tape configuration '); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Full (1) track'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Half (2) track'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quarter (4) track'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 track'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'12 track'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'16 track'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','m','12','1','Special playback'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'NAB standard'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'CCIR standard'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Dolby-B encoded, standard Dolby'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'dbx encoded'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Digital recording'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Dolby-A encoded'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Dolby-C encoded'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'CX encoded'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','n','13','1','Capture and storage'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Acoustical capture, direct storage'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Direct storage, not acoustical'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Digital storage'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Analog electrical storage'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); + +-- Videorecording +INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('v','Videorecording'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','b','1','1','SMD'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocartridge'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocassette'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videoreel'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','d','3','1','Color'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Black-and-white'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','e','4','1','Videorecording format'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Beta'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'VHS'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'U-matic'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'EIAJ'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Type C'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadruplex'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Laserdisc'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'CED'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Betacam'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Betacam SP'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Super-VHS'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'M-II'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'D-2'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hi-8 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Blu-ray'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'DVD'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','f','5','1','Sound on medium or separate'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound on medium'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound separate from medium'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','g','6','1','Medium for sound'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Optical sound track on motion picture film'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic sound track on motion picture film'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape in cartridge'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound disc'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape on reel'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape in cassette'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Optical and magnetic sound track on motion picture film'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','h','7','1','Dimensions'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 mm.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1/4 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1/2 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'2 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3/4 in.'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); +INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','i','8','1','Configuration of playback channel'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multichannel, surround or quadraphonic'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown'); +INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other'); + +-- Fixed Field position data -- 0-based! +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '006', 'SER', 16, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '008', 'SER', 33, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'BKS', 5, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'COM', 5, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'REC', 5, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SCO', 5, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'VIS', 5, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'BKS', 22, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'COM', 22, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'REC', 22, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SCO', 22, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'VIS', 22, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'BKS', 7, 1, 'm'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'COM', 7, 1, 'm'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MAP', 7, 1, 'm'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MIX', 7, 1, 'c'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'REC', 7, 1, 'm'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SCO', 7, 1, 'm'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SER', 7, 1, 's'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'VIS', 7, 1, 'm'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '006', 'BKS', 17, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '008', 'BKS', 34, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'BKS', 11, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'SER', 11, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'BKS', 29, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'SER', 29, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont', '006', 'BKS', 7, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont', '006', 'SER', 8, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont', '008', 'BKS', 24, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont', '008', 'SER', 25, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'BKS', 8, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'COM', 8, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MAP', 8, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MIX', 8, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'REC', 8, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SCO', 8, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SER', 8, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'VIS', 8, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'BKS', 15, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'COM', 15, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MAP', 15, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MIX', 15, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'REC', 15, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SCO', 15, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SER', 15, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'VIS', 15, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'BKS', 7, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'COM', 7, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MAP', 7, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MIX', 7, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'REC', 7, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SCO', 7, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SER', 7, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'VIS', 7, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'BKS', 11, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'COM', 11, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MAP', 11, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MIX', 11, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'REC', 11, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SCO', 11, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SER', 11, 4, '9'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'VIS', 11, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'BKS', 18, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'COM', 18, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MAP', 18, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MIX', 18, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'REC', 18, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SCO', 18, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SER', 18, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'VIS', 18, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'BKS', 6, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'COM', 6, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MAP', 6, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MIX', 6, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'REC', 6, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SCO', 6, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SER', 6, 1, 'c'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'VIS', 6, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'BKS', 17, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'COM', 17, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MAP', 17, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MIX', 17, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'REC', 17, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SCO', 17, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SER', 17, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'VIS', 17, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'AUT', 17, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '006', 'BKS', 13, 1, '0'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '008', 'BKS', 30, 1, '0'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'BKS', 6, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MAP', 12, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MIX', 6, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'REC', 6, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SCO', 6, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SER', 6, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'VIS', 12, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'BKS', 23, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MAP', 29, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MIX', 23, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'REC', 23, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SCO', 23, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SER', 23, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'VIS', 29, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'BKS', 11, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'COM', 11, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'MAP', 11, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'SER', 11, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'VIS', 11, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'BKS', 28, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'COM', 28, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'MAP', 28, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'SER', 28, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'VIS', 28, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '006', 'BKS', 1, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '008', 'BKS', 18, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'BKS', 14, 1, '0'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'MAP', 14, 1, '0'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'BKS', 31, 1, '0'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'MAP', 31, 1, '0'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'BKS', 35, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'COM', 35, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MAP', 35, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MIX', 35, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'REC', 35, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SCO', 35, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SER', 35, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'VIS', 35, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '006', 'BKS', 16, 1, '0'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '008', 'BKS', 33, 1, '0'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'BKS', 38, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'COM', 38, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MAP', 38, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MIX', 38, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'REC', 38, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SCO', 38, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SER', 38, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'VIS', 38, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('S/L', '006', 'SER', 17, 1, '0'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('S/L', '008', 'SER', 34, 1, '0'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '006', 'VIS', 16, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '008', 'VIS', 33, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'BKS', 6, 1, 'a'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'COM', 6, 1, 'm'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MAP', 6, 1, 'e'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MIX', 6, 1, 'p'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'REC', 6, 1, 'i'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SCO', 6, 1, 'c'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SER', 6, 1, 'a'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'VIS', 6, 1, 'g'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Subj', '008', 'AUT', 11, 1, '|'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('RecStat', 'ldr', 'AUT', 5, 1, 'n'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'AUT', 6, 1, 'z'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GeoDiv', '008', 'AUT', 6, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Roman', '008', 'AUT', 7, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('CatLang', '008', 'AUT', 8, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Kind', '008', 'AUT', 9, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Rules', '008', 'AUT', 10, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Subj', '008', 'AUT', 11, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Series', '008', 'AUT', 12, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('SerNum', '008', 'AUT', 13, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('NameUse', '008', 'AUT', 14, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('SubjUse', '008', 'AUT', 15, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('SerUse', '008', 'AUT', 16, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TypeSubd', '008', 'AUT', 17, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GovtAgn', '008', 'AUT', 28, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('RefStatus', '008', 'AUT', 29, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('UpdStatus', '008', 'AUT', 31, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Name', '008', 'AUT', 32, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Status', '008', 'AUT', 33, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ModRec', '008', 'AUT', 38, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Source', '008', 'AUT', 39, 1, ' '); + +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('File', '008', 'COM', 26, 1, 'u'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('File', '006', 'COM', 9, 1, 'u'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Freq', '008', 'SER', 18, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Freq', '006', 'SER', 1, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Regl', '008', 'SER', 19, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Regl', '006', 'SER', 2, 1, ' '); + +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM', '006', 'REC', 7, 6, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM', '006', 'SCO', 7, 6, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM', '008', 'REC', 24, 6, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM', '008', 'SCO', 24, 6, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Comp', '006', 'REC', 1, 2, 'uu'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Comp', '006', 'SCO', 1, 2, 'uu'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Comp', '008', 'REC', 18, 2, 'uu'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Comp', '008', 'SCO', 18, 2, 'uu'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('CrTp', '006', 'MAP', 8, 1, 'a'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('CrTp', '008', 'MAP', 25, 1, 'a'); + +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('EntW', '006', 'SER', 7, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('EntW', '008', 'SER', 24, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('FMus', '006', 'REC', 3, 1, 'n'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('FMus', '006', 'SCO', 3, 1, 'u'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('FMus', '008', 'REC', 20, 1, 'n'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('FMus', '008', 'SCO', 20, 1, 'u'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'COM', 6, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'COM', 23, 1, ' '); + +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LTxt', '006', 'REC', 13, 2, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LTxt', '008', 'REC', 30, 2, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LTxt', '006', 'SCO', 13, 2, 'n '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LTxt', '008', 'SCO', 30, 2, 'n '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Orig', '006', 'SER', 5, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Orig', '008', 'SER', 22, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Part', '006', 'REC', 4, 1, 'n'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Part', '006', 'SCO', 4, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Part', '008', 'REC', 21, 1, 'n'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Part', '008', 'SCO', 21, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Proj', '006', 'MAP', 5, 2, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Proj', '008', 'MAP', 22, 2, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Relf', '006', 'MAP', 1, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Relf', '008', 'MAP', 18, 4, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('SpFm', '006', 'MAP', 16, 2, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('SpFm', '008', 'MAP', 33, 2, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('SrTp', '006', 'SER', 4, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('SrTp', '008', 'SER', 21, 1, ' '); + +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Tech', '006', 'VIS', 17, 1, 'n'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Tech', '008', 'VIS', 34, 1, 'n'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Time', '006', 'VIS', 1, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Time', '008', 'VIS', 18, 3, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TrAr', '006', 'SCO', 16, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TrAr', '006', 'REC', 16, 1, 'n'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TrAr', '008', 'SCO', 33, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TrAr', '008', 'REC', 33, 1, 'n'); + + +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM1', '006', 'REC', 7, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM1', '006', 'SCO', 7, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM1', '008', 'REC', 24, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM1', '008', 'SCO', 24, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM2', '006', 'REC', 8, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM2', '006', 'SCO', 8, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM2', '008', 'REC', 25, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM2', '008', 'SCO', 25, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM3', '006', 'REC', 9, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM3', '006', 'SCO', 9, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM3', '008', 'REC', 26, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM3', '008', 'SCO', 26, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM4', '006', 'REC', 10, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM4', '006', 'SCO', 10, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM4', '008', 'REC', 27, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM4', '008', 'SCO', 27, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM5', '006', 'REC', 11, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM5', '006', 'SCO', 11, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM5', '008', 'REC', 28, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM5', '008', 'SCO', 28, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM6', '006', 'REC', 12, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM6', '006', 'SCO', 12, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM6', '008', 'REC', 29, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('AccM6', '008', 'SCO', 29, 1, ' '); + +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont1', '006', 'BKS', 7, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont1', '006', 'SER', 8, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont1', '008', 'BKS', 24, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont1', '008', 'SER', 25, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont2', '006', 'BKS', 8, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont2', '006', 'SER', 9, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont2', '008', 'BKS', 25, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont2', '008', 'SER', 26, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont3', '006', 'BKS', 9, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont3', '006', 'SER', 10, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont3', '008', 'BKS', 26, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont3', '008', 'SER', 27, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont4', '006', 'BKS', 10, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Cont4', '008', 'BKS', 27, 1, ' '); + +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills1', '006', 'BKS', 1, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills1', '008', 'BKS', 18, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills2', '006', 'BKS', 2, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills2', '008', 'BKS', 19, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills3', '006', 'BKS', 3, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills3', '008', 'BKS', 20, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills4', '006', 'BKS', 4, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills4', '008', 'BKS', 21, 1, ' '); + +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LTxt1', '006', 'REC', 13, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LTxt1', '006', 'SCO', 13, 1, 'n'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LTxt1', '008', 'REC', 30, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LTxt1', '008', 'SCO', 30, 1, 'n'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LTxt2', '006', 'REC', 14, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LTxt2', '006', 'SCO', 14, 1, 'n'); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LTxt2', '008', 'REC', 31, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LTxt2', '008', 'SCO', 31, 1, 'n'); + +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Relf1', '006', 'MAP', 1, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Relf1', '008', 'MAP', 18, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Relf2', '006', 'MAP', 2, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Relf2', '008', 'MAP', 19, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Relf3', '006', 'MAP', 3, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Relf3', '008', 'MAP', 20, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Relf4', '006', 'MAP', 4, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Relf4', '008', 'MAP', 21, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('SpFm1', '006', 'MAP', 16, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('SpFm1', '008', 'MAP', 33, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('SpFm2', '006', 'MAP', 17, 1, ' '); +INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('SpFm2', '008', 'MAP', 34, 1, ' '); + + +-- record attributes +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('alph','Alph','Alph'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('audience','Audn','Audn'); +INSERT INTO config.record_attr_definition (name,label,fixed_field,multi) values ('bib_level','BLvl','BLvl',FALSE); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('biog','Biog','Biog'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('conf','Conf','Conf'); +INSERT INTO config.record_attr_definition (name,label,fixed_field,multi) values ('control_type','Ctrl','Ctrl',FALSE); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('ctry','Ctry','Ctry'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('date1','Date1','Date1'); +INSERT INTO config.record_attr_definition (name,label,fixed_field,sorter,filter,multi) values ('pubdate','Pub Date','Date1',TRUE,FALSE,FALSE); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('date2','Date2','Date2'); +INSERT INTO config.record_attr_definition (name,label,fixed_field,multi) values ('cat_form','Desc','Desc',FALSE); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('pub_status','DtSt','DtSt'); +INSERT INTO config.record_attr_definition (name,label,fixed_field,multi) values ('enc_level','ELvl','ELvl',FALSE); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('fest','Fest','Fest'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('item_form','Form','Form'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('gpub','GPub','GPub'); +INSERT INTO config.record_attr_definition (name,label,fixed_field,composite) values ('ills','Ills','Ills',TRUE); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('indx','Indx','Indx'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('item_lang','Lang','Lang'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('language','Language (2.0 compat version)','Lang'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('lit_form','LitF','LitF'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('mrec','MRec','MRec'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('ff_sl','S/L','S/L'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('type_mat','TMat','TMat'); +INSERT INTO config.record_attr_definition (name,label,fixed_field,multi) values ('item_type','Type','Type',FALSE); +INSERT INTO config.record_attr_definition (name,label,phys_char_sf) values ('vr_format','Videorecording format',72); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('file','File','File'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('freq','Freq','Freq'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('regl','Regl','Regl'); +INSERT INTO config.record_attr_definition (name,label,sorter,filter,tag,multi) values ('titlesort','Title',TRUE,FALSE,'tnf',FALSE); +INSERT INTO config.record_attr_definition (name,label,sorter,filter,tag,sf_list,multi) values ('authorsort','Author',TRUE,FALSE,'1%','abcdefgklmnopqrstvxyz',FALSE); +INSERT INTO config.record_attr_definition (name, label, phys_char_sf) + VALUES ('sr_format', oils_i18n_gettext('sr_format', 'Sound recording format', 'crad', 'label'), '62'); +INSERT INTO config.record_attr_definition (name, label, multi, filter, composite) + VALUES ('icon_format', oils_i18n_gettext('icon_format', 'OPAC Format Icons', 'crad', 'label'), TRUE, TRUE, TRUE); +INSERT INTO config.record_attr_definition (name, label, multi, filter, composite) + VALUES ('mr_hold_format', oils_i18n_gettext('mr_hold_format', 'Metarecord Hold Formats', 'crad', 'label'), + TRUE, TRUE, TRUE); +INSERT INTO config.record_attr_definition + (name, label, multi, filter, composite) VALUES ( + 'search_format', + oils_i18n_gettext('search_format', 'Search Formats', 'crad', 'label'), + TRUE, TRUE, TRUE + ); + +INSERT INTO config.record_attr_definition (name, label, format, xpath, vocabulary) VALUES ( + 'content_type', oils_i18n_gettext('content_type', 'Content Type', 'ccvm', 'label'), + 'marcxml', + $$//marc:datafield[@tag='336']/marc:subfield[@code='a']$$, + 'http://rdaregistry.info/termList/RDAContentType' +); +INSERT INTO config.record_attr_definition (name, label, format, xpath, vocabulary) VALUES ( + 'media_type', oils_i18n_gettext('media_type', 'Media Type', 'ccvm', 'label'), + 'marcxml', + $$//marc:datafield[@tag='337']/marc:subfield[@code='a']$$, + 'http://rdaregistry.info/termList/RDAMediaType' +); +INSERT INTO config.record_attr_definition (name, label, format, xpath, vocabulary) VALUES ( + 'carrier_type', oils_i18n_gettext('carrier_type', 'Carrier Type', 'ccvm', 'label'), + 'marcxml', + $$//marc:datafield[@tag='338']/marc:subfield[@code='a']$$, + 'http://rdaregistry.info/termList/RDACarrierType' +); + +INSERT INTO config.record_attr_definition (name,label,fixed_field,composite) VALUES ('accm','AccM','AccM',TRUE); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('comp','Comp','Comp'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('crtp','CrTp','CrTp'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('entw','EntW','EntW'); +INSERT INTO config.record_attr_definition (name,label,fixed_field,composite) VALUES ('cont','Cont','Cont',TRUE); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('fmus','FMus','FMus'); +INSERT INTO config.record_attr_definition (name,label,fixed_field,composite) VALUES ('ltxt','LTxt','LTxt',TRUE); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('orig','Orig','Orig'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('part','Part','Part'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('proj','Proj','Proj'); +INSERT INTO config.record_attr_definition (name,label,fixed_field,composite) VALUES ('relf','Relf','Relf',TRUE); +INSERT INTO config.record_attr_definition (name,label,fixed_field,composite) VALUES ('spfm','SpFm','SpFm',TRUE); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('srtp','SrTp','SrTp'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('tech','Tech','Tech'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('trar','TrAr','TrAr'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('accm1','AccM(1)','AccM1'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('accm2','AccM(2)','AccM2'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('accm3','AccM(3)','AccM3'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('accm4','AccM(4)','AccM4'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('accm5','AccM(5)','AccM5'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('accm6','AccM(6)','AccM6'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('cont1','Cont(1)','Cont1'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('cont2','Cont(2)','Cont2'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('cont3','Cont(3)','Cont3'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('cont4','Cont(4)','Cont4'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('ills1','Ills(1)','Ills1'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('ills2','Ills(2)','Ills2'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('ills3','Ills(3)','Ills3'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('ills4','Ills(4)','Ills4'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('ltxt1','LTxt(1)','LTxt1'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('ltxt2','LTxt(2)','LTxt2'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('relf1','Relf(1)','Relf1'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('relf2','Relf(2)','Relf2'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('relf3','Relf(3)','Relf3'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('relf4','Relf(4)','Relf4'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('spfm1','SpFm(1)','SpFm1'); +INSERT INTO config.record_attr_definition (name,label,fixed_field) VALUES ('spfm2','SpFm(2)','SpFm2'); + + +-- TO-DO: Auto-generate these values from CLDR +-- XXX These are the values used in MARC records ... does that match CLDR, including deprecated languages? +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES + (1, 'item_lang', 'aar', oils_i18n_gettext('aar', 'Afar', 'ccvm', 'value')), + (2, 'item_lang', 'abk', oils_i18n_gettext('abk', 'Abkhaz', 'ccvm', 'value')), + (3, 'item_lang', 'ace', oils_i18n_gettext('ace', 'Achinese', 'ccvm', 'value')), + (4, 'item_lang', 'ach', oils_i18n_gettext('ach', 'Acoli', 'ccvm', 'value')), + (5, 'item_lang', 'ada', oils_i18n_gettext('ada', 'Adangme', 'ccvm', 'value')), + (6, 'item_lang', 'ady', oils_i18n_gettext('ady', 'Adygei', 'ccvm', 'value')), + (7, 'item_lang', 'afa', oils_i18n_gettext('afa', 'Afroasiatic (Other)', 'ccvm', 'value')), + (8, 'item_lang', 'afh', oils_i18n_gettext('afh', 'Afrihili (Artificial language)', 'ccvm', 'value')), + (9, 'item_lang', 'afr', oils_i18n_gettext('afr', 'Afrikaans', 'ccvm', 'value')), + (10, 'item_lang', '-ajm', oils_i18n_gettext('-ajm', 'Aljamía', 'ccvm', 'value')), + (11, 'item_lang', 'aka', oils_i18n_gettext('aka', 'Akan', 'ccvm', 'value')), + (12, 'item_lang', 'akk', oils_i18n_gettext('akk', 'Akkadian', 'ccvm', 'value')), + (13, 'item_lang', 'alb', oils_i18n_gettext('alb', 'Albanian', 'ccvm', 'value')), + (14, 'item_lang', 'ale', oils_i18n_gettext('ale', 'Aleut', 'ccvm', 'value')), + (15, 'item_lang', 'alg', oils_i18n_gettext('alg', 'Algonquian (Other)', 'ccvm', 'value')), + (16, 'item_lang', 'amh', oils_i18n_gettext('amh', 'Amharic', 'ccvm', 'value')), + (17, 'item_lang', 'ang', oils_i18n_gettext('ang', 'English, Old (ca. 450-1100)', 'ccvm', 'value')), + (18, 'item_lang', 'apa', oils_i18n_gettext('apa', 'Apache languages', 'ccvm', 'value')), + (19, 'item_lang', 'ara', oils_i18n_gettext('ara', 'Arabic', 'ccvm', 'value')), + (20, 'item_lang', 'arc', oils_i18n_gettext('arc', 'Aramaic', 'ccvm', 'value')), + (21, 'item_lang', 'arg', oils_i18n_gettext('arg', 'Aragonese Spanish', 'ccvm', 'value')), + (22, 'item_lang', 'arm', oils_i18n_gettext('arm', 'Armenian', 'ccvm', 'value')), + (23, 'item_lang', 'arn', oils_i18n_gettext('arn', 'Mapuche', 'ccvm', 'value')), + (24, 'item_lang', 'arp', oils_i18n_gettext('arp', 'Arapaho', 'ccvm', 'value')), + (25, 'item_lang', 'art', oils_i18n_gettext('art', 'Artificial (Other)', 'ccvm', 'value')), + (26, 'item_lang', 'arw', oils_i18n_gettext('arw', 'Arawak', 'ccvm', 'value')), + (27, 'item_lang', 'asm', oils_i18n_gettext('asm', 'Assamese', 'ccvm', 'value')), + (28, 'item_lang', 'ast', oils_i18n_gettext('ast', 'Bable', 'ccvm', 'value')), + (29, 'item_lang', 'ath', oils_i18n_gettext('ath', 'Athapascan (Other)', 'ccvm', 'value')), + (30, 'item_lang', 'aus', oils_i18n_gettext('aus', 'Australian languages', 'ccvm', 'value')), + (31, 'item_lang', 'ava', oils_i18n_gettext('ava', 'Avaric', 'ccvm', 'value')), + (32, 'item_lang', 'ave', oils_i18n_gettext('ave', 'Avestan', 'ccvm', 'value')), + (33, 'item_lang', 'awa', oils_i18n_gettext('awa', 'Awadhi', 'ccvm', 'value')), + (34, 'item_lang', 'aym', oils_i18n_gettext('aym', 'Aymara', 'ccvm', 'value')), + (35, 'item_lang', 'aze', oils_i18n_gettext('aze', 'Azerbaijani', 'ccvm', 'value')), + (36, 'item_lang', 'bad', oils_i18n_gettext('bad', 'Banda', 'ccvm', 'value')), + (37, 'item_lang', 'bai', oils_i18n_gettext('bai', 'Bamileke languages', 'ccvm', 'value')), + (38, 'item_lang', 'bak', oils_i18n_gettext('bak', 'Bashkir', 'ccvm', 'value')), + (39, 'item_lang', 'bal', oils_i18n_gettext('bal', 'Baluchi', 'ccvm', 'value')), + (40, 'item_lang', 'bam', oils_i18n_gettext('40', 'Bambara', 'ccvm', 'value')), + (41, 'item_lang', 'ban', oils_i18n_gettext('41', 'Balinese', 'ccvm', 'value')), + (42, 'item_lang', 'baq', oils_i18n_gettext('42', 'Basque', 'ccvm', 'value')), + (43, 'item_lang', 'bas', oils_i18n_gettext('43', 'Basa', 'ccvm', 'value')), + (44, 'item_lang', 'bat', oils_i18n_gettext('44', 'Baltic (Other)', 'ccvm', 'value')), + (45, 'item_lang', 'bej', oils_i18n_gettext('45', 'Beja', 'ccvm', 'value')), + (46, 'item_lang', 'bel', oils_i18n_gettext('46', 'Belarusian', 'ccvm', 'value')), + (47, 'item_lang', 'bem', oils_i18n_gettext('47', 'Bemba', 'ccvm', 'value')), + (48, 'item_lang', 'ben', oils_i18n_gettext('48', 'Bengali', 'ccvm', 'value')), + (49, 'item_lang', 'ber', oils_i18n_gettext('49', 'Berber (Other)', 'ccvm', 'value')), + (50, 'item_lang', 'bho', oils_i18n_gettext('50', 'Bhojpuri', 'ccvm', 'value')), + (51, 'item_lang', 'bih', oils_i18n_gettext('51', 'Bihari', 'ccvm', 'value')), + (52, 'item_lang', 'bik', oils_i18n_gettext('52', 'Bikol', 'ccvm', 'value')), + (53, 'item_lang', 'bin', oils_i18n_gettext('53', 'Edo', 'ccvm', 'value')), + (54, 'item_lang', 'bis', oils_i18n_gettext('54', 'Bislama', 'ccvm', 'value')), + (55, 'item_lang', 'bla', oils_i18n_gettext('55', 'Siksika', 'ccvm', 'value')), + (56, 'item_lang', 'bnt', oils_i18n_gettext('56', 'Bantu (Other)', 'ccvm', 'value')), + (57, 'item_lang', 'bos', oils_i18n_gettext('57', 'Bosnian', 'ccvm', 'value')), + (58, 'item_lang', 'bra', oils_i18n_gettext('58', 'Braj', 'ccvm', 'value')), + (59, 'item_lang', 'bre', oils_i18n_gettext('59', 'Breton', 'ccvm', 'value')), + (60, 'item_lang', 'btk', oils_i18n_gettext('60', 'Batak', 'ccvm', 'value')), + (61, 'item_lang', 'bua', oils_i18n_gettext('61', 'Buriat', 'ccvm', 'value')), + (62, 'item_lang', 'bug', oils_i18n_gettext('62', 'Bugis', 'ccvm', 'value')), + (63, 'item_lang', 'bul', oils_i18n_gettext('63', 'Bulgarian', 'ccvm', 'value')), + (64, 'item_lang', 'bur', oils_i18n_gettext('64', 'Burmese', 'ccvm', 'value')), + (65, 'item_lang', 'cad', oils_i18n_gettext('65', 'Caddo', 'ccvm', 'value')), + (66, 'item_lang', 'cai', oils_i18n_gettext('66', 'Central American Indian (Other)', 'ccvm', 'value')), + (67, 'item_lang', '-cam', oils_i18n_gettext('67', 'Khmer', 'ccvm', 'value')), + (68, 'item_lang', 'car', oils_i18n_gettext('68', 'Carib', 'ccvm', 'value')), + (69, 'item_lang', 'cat', oils_i18n_gettext('69', 'Catalan', 'ccvm', 'value')), + (70, 'item_lang', 'cau', oils_i18n_gettext('70', 'Caucasian (Other)', 'ccvm', 'value')), + (71, 'item_lang', 'ceb', oils_i18n_gettext('71', 'Cebuano', 'ccvm', 'value')), + (72, 'item_lang', 'cel', oils_i18n_gettext('72', 'Celtic (Other)', 'ccvm', 'value')), + (73, 'item_lang', 'cha', oils_i18n_gettext('73', 'Chamorro', 'ccvm', 'value')), + (74, 'item_lang', 'chb', oils_i18n_gettext('74', 'Chibcha', 'ccvm', 'value')), + (75, 'item_lang', 'che', oils_i18n_gettext('75', 'Chechen', 'ccvm', 'value')), + (76, 'item_lang', 'chg', oils_i18n_gettext('76', 'Chagatai', 'ccvm', 'value')), + (77, 'item_lang', 'chi', oils_i18n_gettext('77', 'Chinese', 'ccvm', 'value')), + (78, 'item_lang', 'chk', oils_i18n_gettext('78', 'Truk', 'ccvm', 'value')), + (79, 'item_lang', 'chm', oils_i18n_gettext('79', 'Mari', 'ccvm', 'value')), + (80, 'item_lang', 'chn', oils_i18n_gettext('80', 'Chinook jargon', 'ccvm', 'value')), + (81, 'item_lang', 'cho', oils_i18n_gettext('81', 'Choctaw', 'ccvm', 'value')), + (82, 'item_lang', 'chp', oils_i18n_gettext('82', 'Chipewyan', 'ccvm', 'value')), + (83, 'item_lang', 'chr', oils_i18n_gettext('83', 'Cherokee', 'ccvm', 'value')), + (84, 'item_lang', 'chu', oils_i18n_gettext('84', 'Church Slavic', 'ccvm', 'value')), + (85, 'item_lang', 'chv', oils_i18n_gettext('85', 'Chuvash', 'ccvm', 'value')), + (86, 'item_lang', 'chy', oils_i18n_gettext('86', 'Cheyenne', 'ccvm', 'value')), + (87, 'item_lang', 'cmc', oils_i18n_gettext('87', 'Chamic languages', 'ccvm', 'value')), + (88, 'item_lang', 'cop', oils_i18n_gettext('88', 'Coptic', 'ccvm', 'value')), + (89, 'item_lang', 'cor', oils_i18n_gettext('89', 'Cornish', 'ccvm', 'value')), + (90, 'item_lang', 'cos', oils_i18n_gettext('90', 'Corsican', 'ccvm', 'value')), + (91, 'item_lang', 'cpe', oils_i18n_gettext('91', 'Creoles and Pidgins, English-based (Other)', 'ccvm', 'value')), + (92, 'item_lang', 'cpf', oils_i18n_gettext('92', 'Creoles and Pidgins, French-based (Other)', 'ccvm', 'value')), + (93, 'item_lang', 'cpp', oils_i18n_gettext('93', 'Creoles and Pidgins, Portuguese-based (Other)', 'ccvm', 'value')), + (94, 'item_lang', 'cre', oils_i18n_gettext('94', 'Cree', 'ccvm', 'value')), + (95, 'item_lang', 'crh', oils_i18n_gettext('95', 'Crimean Tatar', 'ccvm', 'value')), + (96, 'item_lang', 'crp', oils_i18n_gettext('96', 'Creoles and Pidgins (Other)', 'ccvm', 'value')), + (97, 'item_lang', 'cus', oils_i18n_gettext('97', 'Cushitic (Other)', 'ccvm', 'value')), + (98, 'item_lang', 'cze', oils_i18n_gettext('98', 'Czech', 'ccvm', 'value')), + (99, 'item_lang', 'dak', oils_i18n_gettext('99', 'Dakota', 'ccvm', 'value')), + (100, 'item_lang', 'dan', oils_i18n_gettext('100', 'Danish', 'ccvm', 'value')), + (101, 'item_lang', 'dar', oils_i18n_gettext('101', 'Dargwa', 'ccvm', 'value')), + (102, 'item_lang', 'day', oils_i18n_gettext('102', 'Dayak', 'ccvm', 'value')), + (103, 'item_lang', 'del', oils_i18n_gettext('103', 'Delaware', 'ccvm', 'value')), + (104, 'item_lang', 'den', oils_i18n_gettext('104', 'Slave', 'ccvm', 'value')), + (105, 'item_lang', 'dgr', oils_i18n_gettext('105', 'Dogrib', 'ccvm', 'value')), + (106, 'item_lang', 'din', oils_i18n_gettext('106', 'Dinka', 'ccvm', 'value')), + (107, 'item_lang', 'div', oils_i18n_gettext('107', 'Divehi', 'ccvm', 'value')), + (108, 'item_lang', 'doi', oils_i18n_gettext('108', 'Dogri', 'ccvm', 'value')), + (109, 'item_lang', 'dra', oils_i18n_gettext('109', 'Dravidian (Other)', 'ccvm', 'value')), + (110, 'item_lang', 'dua', oils_i18n_gettext('110', 'Duala', 'ccvm', 'value')), + (111, 'item_lang', 'dum', oils_i18n_gettext('111', 'Dutch, Middle (ca. 1050-1350)', 'ccvm', 'value')), + (112, 'item_lang', 'dut', oils_i18n_gettext('112', 'Dutch', 'ccvm', 'value')), + (113, 'item_lang', 'dyu', oils_i18n_gettext('113', 'Dyula', 'ccvm', 'value')), + (114, 'item_lang', 'dzo', oils_i18n_gettext('114', 'Dzongkha', 'ccvm', 'value')), + (115, 'item_lang', 'efi', oils_i18n_gettext('115', 'Efik', 'ccvm', 'value')), + (116, 'item_lang', 'egy', oils_i18n_gettext('116', 'Egyptian', 'ccvm', 'value')), + (117, 'item_lang', 'eka', oils_i18n_gettext('117', 'Ekajuk', 'ccvm', 'value')), + (118, 'item_lang', 'elx', oils_i18n_gettext('118', 'Elamite', 'ccvm', 'value')), + (119, 'item_lang', 'eng', oils_i18n_gettext('119', 'English', 'ccvm', 'value')), + (120, 'item_lang', 'enm', oils_i18n_gettext('120', 'English, Middle (1100-1500)', 'ccvm', 'value')), + (121, 'item_lang', 'epo', oils_i18n_gettext('121', 'Esperanto', 'ccvm', 'value')), + (122, 'item_lang', '-esk', oils_i18n_gettext('122', 'Eskimo languages', 'ccvm', 'value')), + (123, 'item_lang', '-esp', oils_i18n_gettext('123', 'Esperanto', 'ccvm', 'value')), + (124, 'item_lang', 'est', oils_i18n_gettext('124', 'Estonian', 'ccvm', 'value')), + (125, 'item_lang', '-eth', oils_i18n_gettext('125', 'Ethiopic', 'ccvm', 'value')), + (126, 'item_lang', 'ewe', oils_i18n_gettext('126', 'Ewe', 'ccvm', 'value')), + (127, 'item_lang', 'ewo', oils_i18n_gettext('127', 'Ewondo', 'ccvm', 'value')), + (128, 'item_lang', 'fan', oils_i18n_gettext('128', 'Fang', 'ccvm', 'value')), + (129, 'item_lang', 'fao', oils_i18n_gettext('129', 'Faroese', 'ccvm', 'value')), + (130, 'item_lang', '-far', oils_i18n_gettext('130', 'Faroese', 'ccvm', 'value')), + (131, 'item_lang', 'fat', oils_i18n_gettext('131', 'Fanti', 'ccvm', 'value')), + (132, 'item_lang', 'fij', oils_i18n_gettext('132', 'Fijian', 'ccvm', 'value')), + (133, 'item_lang', 'fin', oils_i18n_gettext('133', 'Finnish', 'ccvm', 'value')), + (134, 'item_lang', 'fiu', oils_i18n_gettext('134', 'Finno-Ugrian (Other)', 'ccvm', 'value')), + (135, 'item_lang', 'fon', oils_i18n_gettext('135', 'Fon', 'ccvm', 'value')), + (136, 'item_lang', 'fre', oils_i18n_gettext('136', 'French', 'ccvm', 'value')), + (137, 'item_lang', '-fri', oils_i18n_gettext('137', 'Frisian', 'ccvm', 'value')), + (138, 'item_lang', 'frm', oils_i18n_gettext('138', 'French, Middle (ca. 1400-1600)', 'ccvm', 'value')), + (139, 'item_lang', 'fro', oils_i18n_gettext('139', 'French, Old (ca. 842-1400)', 'ccvm', 'value')), + (140, 'item_lang', 'fry', oils_i18n_gettext('140', 'Frisian', 'ccvm', 'value')), + (141, 'item_lang', 'ful', oils_i18n_gettext('141', 'Fula', 'ccvm', 'value')), + (142, 'item_lang', 'fur', oils_i18n_gettext('142', 'Friulian', 'ccvm', 'value')), + (143, 'item_lang', 'gaa', oils_i18n_gettext('143', 'Gã', 'ccvm', 'value')), + (144, 'item_lang', '-gae', oils_i18n_gettext('144', 'Scottish Gaelic', 'ccvm', 'value')), + (145, 'item_lang', '-gag', oils_i18n_gettext('145', 'Galician', 'ccvm', 'value')), + (146, 'item_lang', '-gal', oils_i18n_gettext('146', 'Oromo', 'ccvm', 'value')), + (147, 'item_lang', 'gay', oils_i18n_gettext('147', 'Gayo', 'ccvm', 'value')), + (148, 'item_lang', 'gba', oils_i18n_gettext('148', 'Gbaya', 'ccvm', 'value')), + (149, 'item_lang', 'gem', oils_i18n_gettext('149', 'Germanic (Other)', 'ccvm', 'value')), + (150, 'item_lang', 'geo', oils_i18n_gettext('150', 'Georgian', 'ccvm', 'value')), + (151, 'item_lang', 'ger', oils_i18n_gettext('151', 'German', 'ccvm', 'value')), + (152, 'item_lang', 'gez', oils_i18n_gettext('152', 'Ethiopic', 'ccvm', 'value')), + (153, 'item_lang', 'gil', oils_i18n_gettext('153', 'Gilbertese', 'ccvm', 'value')), + (154, 'item_lang', 'gla', oils_i18n_gettext('154', 'Scottish Gaelic', 'ccvm', 'value')), + (155, 'item_lang', 'gle', oils_i18n_gettext('155', 'Irish', 'ccvm', 'value')), + (156, 'item_lang', 'glg', oils_i18n_gettext('156', 'Galician', 'ccvm', 'value')), + (157, 'item_lang', 'glv', oils_i18n_gettext('157', 'Manx', 'ccvm', 'value')), + (158, 'item_lang', 'gmh', oils_i18n_gettext('158', 'German, Middle High (ca. 1050-1500)', 'ccvm', 'value')), + (159, 'item_lang', 'goh', oils_i18n_gettext('159', 'German, Old High (ca. 750-1050)', 'ccvm', 'value')), + (160, 'item_lang', 'gon', oils_i18n_gettext('160', 'Gondi', 'ccvm', 'value')), + (161, 'item_lang', 'gor', oils_i18n_gettext('161', 'Gorontalo', 'ccvm', 'value')), + (162, 'item_lang', 'got', oils_i18n_gettext('162', 'Gothic', 'ccvm', 'value')), + (163, 'item_lang', 'grb', oils_i18n_gettext('163', 'Grebo', 'ccvm', 'value')), + (164, 'item_lang', 'grc', oils_i18n_gettext('164', 'Greek, Ancient (to 1453)', 'ccvm', 'value')), + (165, 'item_lang', 'gre', oils_i18n_gettext('165', 'Greek, Modern (1453- )', 'ccvm', 'value')), + (166, 'item_lang', 'grn', oils_i18n_gettext('166', 'Guarani', 'ccvm', 'value')), + (167, 'item_lang', '-gua', oils_i18n_gettext('167', 'Guarani', 'ccvm', 'value')), + (168, 'item_lang', 'guj', oils_i18n_gettext('168', 'Gujarati', 'ccvm', 'value')), + (169, 'item_lang', 'gwi', oils_i18n_gettext('169', 'Gwich''in', 'ccvm', 'value')), + (170, 'item_lang', 'hai', oils_i18n_gettext('170', 'Haida', 'ccvm', 'value')), + (171, 'item_lang', 'hat', oils_i18n_gettext('171', 'Haitian French Creole', 'ccvm', 'value')), + (172, 'item_lang', 'hau', oils_i18n_gettext('172', 'Hausa', 'ccvm', 'value')), + (173, 'item_lang', 'haw', oils_i18n_gettext('173', 'Hawaiian', 'ccvm', 'value')), + (174, 'item_lang', 'heb', oils_i18n_gettext('174', 'Hebrew', 'ccvm', 'value')), + (175, 'item_lang', 'her', oils_i18n_gettext('175', 'Herero', 'ccvm', 'value')), + (176, 'item_lang', 'hil', oils_i18n_gettext('176', 'Hiligaynon', 'ccvm', 'value')), + (177, 'item_lang', 'him', oils_i18n_gettext('177', 'Himachali', 'ccvm', 'value')), + (178, 'item_lang', 'hin', oils_i18n_gettext('178', 'Hindi', 'ccvm', 'value')), + (179, 'item_lang', 'hit', oils_i18n_gettext('179', 'Hittite', 'ccvm', 'value')), + (180, 'item_lang', 'hmn', oils_i18n_gettext('180', 'Hmong', 'ccvm', 'value')), + (181, 'item_lang', 'hmo', oils_i18n_gettext('181', 'Hiri Motu', 'ccvm', 'value')), + (182, 'item_lang', 'hun', oils_i18n_gettext('182', 'Hungarian', 'ccvm', 'value')), + (183, 'item_lang', 'hup', oils_i18n_gettext('183', 'Hupa', 'ccvm', 'value')), + (184, 'item_lang', 'iba', oils_i18n_gettext('184', 'Iban', 'ccvm', 'value')), + (185, 'item_lang', 'ibo', oils_i18n_gettext('185', 'Igbo', 'ccvm', 'value')), + (186, 'item_lang', 'ice', oils_i18n_gettext('186', 'Icelandic', 'ccvm', 'value')), + (187, 'item_lang', 'ido', oils_i18n_gettext('187', 'Ido', 'ccvm', 'value')), + (188, 'item_lang', 'iii', oils_i18n_gettext('188', 'Sichuan Yi', 'ccvm', 'value')), + (189, 'item_lang', 'ijo', oils_i18n_gettext('189', 'Ijo', 'ccvm', 'value')), + (190, 'item_lang', 'iku', oils_i18n_gettext('190', 'Inuktitut', 'ccvm', 'value')), + (191, 'item_lang', 'ile', oils_i18n_gettext('191', 'Interlingue', 'ccvm', 'value')), + (192, 'item_lang', 'ilo', oils_i18n_gettext('192', 'Iloko', 'ccvm', 'value')), + (193, 'item_lang', 'ina', oils_i18n_gettext('193', 'Interlingua (International Auxiliary Language Association)', 'ccvm', 'value')), + (194, 'item_lang', 'inc', oils_i18n_gettext('194', 'Indic (Other)', 'ccvm', 'value')), + (195, 'item_lang', 'ind', oils_i18n_gettext('195', 'Indonesian', 'ccvm', 'value')), + (196, 'item_lang', 'ine', oils_i18n_gettext('196', 'Indo-European (Other)', 'ccvm', 'value')), + (197, 'item_lang', 'inh', oils_i18n_gettext('197', 'Ingush', 'ccvm', 'value')), + (198, 'item_lang', '-int', oils_i18n_gettext('198', 'Interlingua (International Auxiliary Language Association)', 'ccvm', 'value')), + (199, 'item_lang', 'ipk', oils_i18n_gettext('199', 'Inupiaq', 'ccvm', 'value')), + (200, 'item_lang', 'ira', oils_i18n_gettext('200', 'Iranian (Other)', 'ccvm', 'value')), + (201, 'item_lang', '-iri', oils_i18n_gettext('201', 'Irish', 'ccvm', 'value')), + (202, 'item_lang', 'iro', oils_i18n_gettext('202', 'Iroquoian (Other)', 'ccvm', 'value')), + (203, 'item_lang', 'ita', oils_i18n_gettext('203', 'Italian', 'ccvm', 'value')), + (204, 'item_lang', 'jav', oils_i18n_gettext('204', 'Javanese', 'ccvm', 'value')), + (205, 'item_lang', 'jpn', oils_i18n_gettext('205', 'Japanese', 'ccvm', 'value')), + (206, 'item_lang', 'jpr', oils_i18n_gettext('206', 'Judeo-Persian', 'ccvm', 'value')), + (207, 'item_lang', 'jrb', oils_i18n_gettext('207', 'Judeo-Arabic', 'ccvm', 'value')), + (208, 'item_lang', 'kaa', oils_i18n_gettext('208', 'Kara-Kalpak', 'ccvm', 'value')), + (209, 'item_lang', 'kab', oils_i18n_gettext('209', 'Kabyle', 'ccvm', 'value')), + (210, 'item_lang', 'kac', oils_i18n_gettext('210', 'Kachin', 'ccvm', 'value')), + (211, 'item_lang', 'kal', oils_i18n_gettext('211', 'Kalâtdlisut', 'ccvm', 'value')), + (212, 'item_lang', 'kam', oils_i18n_gettext('212', 'Kamba', 'ccvm', 'value')), + (213, 'item_lang', 'kan', oils_i18n_gettext('213', 'Kannada', 'ccvm', 'value')), + (214, 'item_lang', 'kar', oils_i18n_gettext('214', 'Karen', 'ccvm', 'value')), + (215, 'item_lang', 'kas', oils_i18n_gettext('215', 'Kashmiri', 'ccvm', 'value')), + (216, 'item_lang', 'kau', oils_i18n_gettext('216', 'Kanuri', 'ccvm', 'value')), + (217, 'item_lang', 'kaw', oils_i18n_gettext('217', 'Kawi', 'ccvm', 'value')), + (218, 'item_lang', 'kaz', oils_i18n_gettext('218', 'Kazakh', 'ccvm', 'value')), + (219, 'item_lang', 'kbd', oils_i18n_gettext('219', 'Kabardian', 'ccvm', 'value')), + (220, 'item_lang', 'kha', oils_i18n_gettext('220', 'Khasi', 'ccvm', 'value')), + (221, 'item_lang', 'khi', oils_i18n_gettext('221', 'Khoisan (Other)', 'ccvm', 'value')), + (222, 'item_lang', 'khm', oils_i18n_gettext('222', 'Khmer', 'ccvm', 'value')), + (223, 'item_lang', 'kho', oils_i18n_gettext('223', 'Khotanese', 'ccvm', 'value')), + (224, 'item_lang', 'kik', oils_i18n_gettext('224', 'Kikuyu', 'ccvm', 'value')), + (225, 'item_lang', 'kin', oils_i18n_gettext('225', 'Kinyarwanda', 'ccvm', 'value')), + (226, 'item_lang', 'kir', oils_i18n_gettext('226', 'Kyrgyz', 'ccvm', 'value')), + (227, 'item_lang', 'kmb', oils_i18n_gettext('227', 'Kimbundu', 'ccvm', 'value')), + (228, 'item_lang', 'kok', oils_i18n_gettext('228', 'Konkani', 'ccvm', 'value')), + (229, 'item_lang', 'kom', oils_i18n_gettext('229', 'Komi', 'ccvm', 'value')), + (230, 'item_lang', 'kon', oils_i18n_gettext('230', 'Kongo', 'ccvm', 'value')), + (231, 'item_lang', 'kor', oils_i18n_gettext('231', 'Korean', 'ccvm', 'value')), + (232, 'item_lang', 'kos', oils_i18n_gettext('232', 'Kusaie', 'ccvm', 'value')), + (233, 'item_lang', 'kpe', oils_i18n_gettext('233', 'Kpelle', 'ccvm', 'value')), + (234, 'item_lang', 'kro', oils_i18n_gettext('234', 'Kru', 'ccvm', 'value')), + (235, 'item_lang', 'kru', oils_i18n_gettext('235', 'Kurukh', 'ccvm', 'value')), + (236, 'item_lang', 'kua', oils_i18n_gettext('236', 'Kuanyama', 'ccvm', 'value')), + (237, 'item_lang', 'kum', oils_i18n_gettext('237', 'Kumyk', 'ccvm', 'value')), + (238, 'item_lang', 'kur', oils_i18n_gettext('238', 'Kurdish', 'ccvm', 'value')), + (239, 'item_lang', '-kus', oils_i18n_gettext('239', 'Kusaie', 'ccvm', 'value')), + (240, 'item_lang', 'kut', oils_i18n_gettext('240', 'Kutenai', 'ccvm', 'value')), + (241, 'item_lang', 'lad', oils_i18n_gettext('241', 'Ladino', 'ccvm', 'value')), + (242, 'item_lang', 'lah', oils_i18n_gettext('242', 'Lahnda', 'ccvm', 'value')), + (243, 'item_lang', 'lam', oils_i18n_gettext('243', 'Lamba', 'ccvm', 'value')), + (244, 'item_lang', '-lan', oils_i18n_gettext('244', 'Occitan (post-1500)', 'ccvm', 'value')), + (245, 'item_lang', 'lao', oils_i18n_gettext('245', 'Lao', 'ccvm', 'value')), + (246, 'item_lang', '-lap', oils_i18n_gettext('246', 'Sami', 'ccvm', 'value')), + (247, 'item_lang', 'lat', oils_i18n_gettext('247', 'Latin', 'ccvm', 'value')), + (248, 'item_lang', 'lav', oils_i18n_gettext('248', 'Latvian', 'ccvm', 'value')), + (249, 'item_lang', 'lez', oils_i18n_gettext('249', 'Lezgian', 'ccvm', 'value')), + (250, 'item_lang', 'lim', oils_i18n_gettext('250', 'Limburgish', 'ccvm', 'value')), + (251, 'item_lang', 'lin', oils_i18n_gettext('251', 'Lingala', 'ccvm', 'value')), + (252, 'item_lang', 'lit', oils_i18n_gettext('252', 'Lithuanian', 'ccvm', 'value')), + (253, 'item_lang', 'lol', oils_i18n_gettext('253', 'Mongo-Nkundu', 'ccvm', 'value')), + (254, 'item_lang', 'loz', oils_i18n_gettext('254', 'Lozi', 'ccvm', 'value')), + (255, 'item_lang', 'ltz', oils_i18n_gettext('255', 'Letzeburgesch', 'ccvm', 'value')), + (256, 'item_lang', 'lua', oils_i18n_gettext('256', 'Luba-Lulua', 'ccvm', 'value')), + (257, 'item_lang', 'lub', oils_i18n_gettext('257', 'Luba-Katanga', 'ccvm', 'value')), + (258, 'item_lang', 'lug', oils_i18n_gettext('258', 'Ganda', 'ccvm', 'value')), + (259, 'item_lang', 'lui', oils_i18n_gettext('259', 'Luiseño', 'ccvm', 'value')), + (260, 'item_lang', 'lun', oils_i18n_gettext('260', 'Lunda', 'ccvm', 'value')), + (261, 'item_lang', 'luo', oils_i18n_gettext('261', 'Luo (Kenya and Tanzania)', 'ccvm', 'value')), + (262, 'item_lang', 'lus', oils_i18n_gettext('262', 'Lushai', 'ccvm', 'value')), + (263, 'item_lang', 'mac', oils_i18n_gettext('263', 'Macedonian', 'ccvm', 'value')), + (264, 'item_lang', 'mad', oils_i18n_gettext('264', 'Madurese', 'ccvm', 'value')), + (265, 'item_lang', 'mag', oils_i18n_gettext('265', 'Magahi', 'ccvm', 'value')), + (266, 'item_lang', 'mah', oils_i18n_gettext('266', 'Marshallese', 'ccvm', 'value')), + (267, 'item_lang', 'mai', oils_i18n_gettext('267', 'Maithili', 'ccvm', 'value')), + (268, 'item_lang', 'mak', oils_i18n_gettext('268', 'Makasar', 'ccvm', 'value')), + (269, 'item_lang', 'mal', oils_i18n_gettext('269', 'Malayalam', 'ccvm', 'value')), + (270, 'item_lang', 'man', oils_i18n_gettext('270', 'Mandingo', 'ccvm', 'value')), + (271, 'item_lang', 'mao', oils_i18n_gettext('271', 'Maori', 'ccvm', 'value')), + (272, 'item_lang', 'map', oils_i18n_gettext('272', 'Austronesian (Other)', 'ccvm', 'value')), + (273, 'item_lang', 'mar', oils_i18n_gettext('273', 'Marathi', 'ccvm', 'value')), + (274, 'item_lang', 'mas', oils_i18n_gettext('274', 'Masai', 'ccvm', 'value')), + (275, 'item_lang', '-max', oils_i18n_gettext('275', 'Manx', 'ccvm', 'value')), + (276, 'item_lang', 'may', oils_i18n_gettext('276', 'Malay', 'ccvm', 'value')), + (277, 'item_lang', 'mdr', oils_i18n_gettext('277', 'Mandar', 'ccvm', 'value')), + (278, 'item_lang', 'men', oils_i18n_gettext('278', 'Mende', 'ccvm', 'value')), + (279, 'item_lang', 'mga', oils_i18n_gettext('279', 'Irish, Middle (ca. 1100-1550)', 'ccvm', 'value')), + (280, 'item_lang', 'mic', oils_i18n_gettext('280', 'Micmac', 'ccvm', 'value')), + (281, 'item_lang', 'min', oils_i18n_gettext('281', 'Minangkabau', 'ccvm', 'value')), + (282, 'item_lang', 'mis', oils_i18n_gettext('282', 'Miscellaneous languages', 'ccvm', 'value')), + (283, 'item_lang', 'mkh', oils_i18n_gettext('283', 'Mon-Khmer (Other)', 'ccvm', 'value')), + (284, 'item_lang', '-mla', oils_i18n_gettext('284', 'Malagasy', 'ccvm', 'value')), + (285, 'item_lang', 'mlg', oils_i18n_gettext('285', 'Malagasy', 'ccvm', 'value')), + (286, 'item_lang', 'mlt', oils_i18n_gettext('286', 'Maltese', 'ccvm', 'value')), + (287, 'item_lang', 'mnc', oils_i18n_gettext('287', 'Manchu', 'ccvm', 'value')), + (288, 'item_lang', 'mni', oils_i18n_gettext('288', 'Manipuri', 'ccvm', 'value')), + (289, 'item_lang', 'mno', oils_i18n_gettext('289', 'Manobo languages', 'ccvm', 'value')), + (290, 'item_lang', 'moh', oils_i18n_gettext('290', 'Mohawk', 'ccvm', 'value')), + (291, 'item_lang', 'mol', oils_i18n_gettext('291', 'Moldavian', 'ccvm', 'value')), + (292, 'item_lang', 'mon', oils_i18n_gettext('292', 'Mongolian', 'ccvm', 'value')), + (293, 'item_lang', 'mos', oils_i18n_gettext('293', 'Mooré', 'ccvm', 'value')), + (294, 'item_lang', 'mul', oils_i18n_gettext('294', 'Multiple languages', 'ccvm', 'value')), + (295, 'item_lang', 'mun', oils_i18n_gettext('295', 'Munda (Other)', 'ccvm', 'value')), + (296, 'item_lang', 'mus', oils_i18n_gettext('296', 'Creek', 'ccvm', 'value')), + (297, 'item_lang', 'mwr', oils_i18n_gettext('297', 'Marwari', 'ccvm', 'value')), + (298, 'item_lang', 'myn', oils_i18n_gettext('298', 'Mayan languages', 'ccvm', 'value')), + (299, 'item_lang', 'nah', oils_i18n_gettext('299', 'Nahuatl', 'ccvm', 'value')), + (300, 'item_lang', 'nai', oils_i18n_gettext('300', 'North American Indian (Other)', 'ccvm', 'value')), + (301, 'item_lang', 'nap', oils_i18n_gettext('301', 'Neapolitan Italian', 'ccvm', 'value')), + (302, 'item_lang', 'nau', oils_i18n_gettext('302', 'Nauru', 'ccvm', 'value')), + (303, 'item_lang', 'nav', oils_i18n_gettext('303', 'Navajo', 'ccvm', 'value')), + (304, 'item_lang', 'nbl', oils_i18n_gettext('304', 'Ndebele (South Africa)', 'ccvm', 'value')), + (305, 'item_lang', 'nde', oils_i18n_gettext('305', 'Ndebele (Zimbabwe) ', 'ccvm', 'value')), + (306, 'item_lang', 'ndo', oils_i18n_gettext('306', 'Ndonga', 'ccvm', 'value')), + (307, 'item_lang', 'nds', oils_i18n_gettext('307', 'Low German', 'ccvm', 'value')), + (308, 'item_lang', 'nep', oils_i18n_gettext('308', 'Nepali', 'ccvm', 'value')), + (309, 'item_lang', 'new', oils_i18n_gettext('309', 'Newari', 'ccvm', 'value')), + (310, 'item_lang', 'nia', oils_i18n_gettext('310', 'Nias', 'ccvm', 'value')), + (311, 'item_lang', 'nic', oils_i18n_gettext('311', 'Niger-Kordofanian (Other)', 'ccvm', 'value')), + (312, 'item_lang', 'niu', oils_i18n_gettext('312', 'Niuean', 'ccvm', 'value')), + (313, 'item_lang', 'nno', oils_i18n_gettext('313', 'Norwegian (Nynorsk)', 'ccvm', 'value')), + (314, 'item_lang', 'nob', oils_i18n_gettext('314', 'Norwegian (Bokmål)', 'ccvm', 'value')), + (315, 'item_lang', 'nog', oils_i18n_gettext('315', 'Nogai', 'ccvm', 'value')), + (316, 'item_lang', 'non', oils_i18n_gettext('316', 'Old Norse', 'ccvm', 'value')), + (317, 'item_lang', 'nor', oils_i18n_gettext('317', 'Norwegian', 'ccvm', 'value')), + (318, 'item_lang', 'nso', oils_i18n_gettext('318', 'Northern Sotho', 'ccvm', 'value')), + (319, 'item_lang', 'nub', oils_i18n_gettext('319', 'Nubian languages', 'ccvm', 'value')), + (320, 'item_lang', 'nya', oils_i18n_gettext('320', 'Nyanja', 'ccvm', 'value')), + (321, 'item_lang', 'nym', oils_i18n_gettext('321', 'Nyamwezi', 'ccvm', 'value')), + (322, 'item_lang', 'nyn', oils_i18n_gettext('322', 'Nyankole', 'ccvm', 'value')), + (323, 'item_lang', 'nyo', oils_i18n_gettext('323', 'Nyoro', 'ccvm', 'value')), + (324, 'item_lang', 'nzi', oils_i18n_gettext('324', 'Nzima', 'ccvm', 'value')), + (325, 'item_lang', 'oci', oils_i18n_gettext('325', 'Occitan (post-1500)', 'ccvm', 'value')), + (326, 'item_lang', 'oji', oils_i18n_gettext('326', 'Ojibwa', 'ccvm', 'value')), + (327, 'item_lang', 'ori', oils_i18n_gettext('327', 'Oriya', 'ccvm', 'value')), + (328, 'item_lang', 'orm', oils_i18n_gettext('328', 'Oromo', 'ccvm', 'value')), + (329, 'item_lang', 'osa', oils_i18n_gettext('329', 'Osage', 'ccvm', 'value')), + (330, 'item_lang', 'oss', oils_i18n_gettext('330', 'Ossetic', 'ccvm', 'value')), + (331, 'item_lang', 'ota', oils_i18n_gettext('331', 'Turkish, Ottoman', 'ccvm', 'value')), + (332, 'item_lang', 'oto', oils_i18n_gettext('332', 'Otomian languages', 'ccvm', 'value')), + (333, 'item_lang', 'paa', oils_i18n_gettext('333', 'Papuan (Other)', 'ccvm', 'value')), + (334, 'item_lang', 'pag', oils_i18n_gettext('334', 'Pangasinan', 'ccvm', 'value')), + (335, 'item_lang', 'pal', oils_i18n_gettext('335', 'Pahlavi', 'ccvm', 'value')), + (336, 'item_lang', 'pam', oils_i18n_gettext('336', 'Pampanga', 'ccvm', 'value')), + (337, 'item_lang', 'pan', oils_i18n_gettext('337', 'Panjabi', 'ccvm', 'value')), + (338, 'item_lang', 'pap', oils_i18n_gettext('338', 'Papiamento', 'ccvm', 'value')), + (339, 'item_lang', 'pau', oils_i18n_gettext('339', 'Palauan', 'ccvm', 'value')), + (340, 'item_lang', 'peo', oils_i18n_gettext('340', 'Old Persian (ca. 600-400 B.C.)', 'ccvm', 'value')), + (341, 'item_lang', 'per', oils_i18n_gettext('341', 'Persian', 'ccvm', 'value')), + (342, 'item_lang', 'phi', oils_i18n_gettext('342', 'Philippine (Other)', 'ccvm', 'value')), + (343, 'item_lang', 'phn', oils_i18n_gettext('343', 'Phoenician', 'ccvm', 'value')), + (344, 'item_lang', 'pli', oils_i18n_gettext('344', 'Pali', 'ccvm', 'value')), + (345, 'item_lang', 'pol', oils_i18n_gettext('345', 'Polish', 'ccvm', 'value')), + (346, 'item_lang', 'pon', oils_i18n_gettext('346', 'Ponape', 'ccvm', 'value')), + (347, 'item_lang', 'por', oils_i18n_gettext('347', 'Portuguese', 'ccvm', 'value')), + (348, 'item_lang', 'pra', oils_i18n_gettext('348', 'Prakrit languages', 'ccvm', 'value')), + (349, 'item_lang', 'pro', oils_i18n_gettext('349', 'Provençal (to 1500)', 'ccvm', 'value')), + (350, 'item_lang', 'pus', oils_i18n_gettext('350', 'Pushto', 'ccvm', 'value')), + (351, 'item_lang', 'que', oils_i18n_gettext('351', 'Quechua', 'ccvm', 'value')), + (352, 'item_lang', 'raj', oils_i18n_gettext('352', 'Rajasthani', 'ccvm', 'value')), + (353, 'item_lang', 'rap', oils_i18n_gettext('353', 'Rapanui', 'ccvm', 'value')), + (354, 'item_lang', 'rar', oils_i18n_gettext('354', 'Rarotongan', 'ccvm', 'value')), + (355, 'item_lang', 'roa', oils_i18n_gettext('355', 'Romance (Other)', 'ccvm', 'value')), + (356, 'item_lang', 'roh', oils_i18n_gettext('356', 'Raeto-Romance', 'ccvm', 'value')), + (357, 'item_lang', 'rom', oils_i18n_gettext('357', 'Romani', 'ccvm', 'value')), + (358, 'item_lang', 'rum', oils_i18n_gettext('358', 'Romanian', 'ccvm', 'value')), + (359, 'item_lang', 'run', oils_i18n_gettext('359', 'Rundi', 'ccvm', 'value')), + (360, 'item_lang', 'rus', oils_i18n_gettext('360', 'Russian', 'ccvm', 'value')), + (361, 'item_lang', 'sad', oils_i18n_gettext('361', 'Sandawe', 'ccvm', 'value')), + (362, 'item_lang', 'sag', oils_i18n_gettext('362', 'Sango (Ubangi Creole)', 'ccvm', 'value')), + (363, 'item_lang', 'sah', oils_i18n_gettext('363', 'Yakut', 'ccvm', 'value')), + (364, 'item_lang', 'sai', oils_i18n_gettext('364', 'South American Indian (Other)', 'ccvm', 'value')), + (365, 'item_lang', 'sal', oils_i18n_gettext('365', 'Salishan languages', 'ccvm', 'value')), + (366, 'item_lang', 'sam', oils_i18n_gettext('366', 'Samaritan Aramaic', 'ccvm', 'value')), + (367, 'item_lang', 'san', oils_i18n_gettext('367', 'Sanskrit', 'ccvm', 'value')), + (368, 'item_lang', '-sao', oils_i18n_gettext('368', 'Samoan', 'ccvm', 'value')), + (369, 'item_lang', 'sas', oils_i18n_gettext('369', 'Sasak', 'ccvm', 'value')), + (370, 'item_lang', 'sat', oils_i18n_gettext('370', 'Santali', 'ccvm', 'value')), + (371, 'item_lang', 'scc', oils_i18n_gettext('371', 'Serbian', 'ccvm', 'value')), + (372, 'item_lang', 'sco', oils_i18n_gettext('372', 'Scots', 'ccvm', 'value')), + (373, 'item_lang', 'scr', oils_i18n_gettext('373', 'Croatian', 'ccvm', 'value')), + (374, 'item_lang', 'sel', oils_i18n_gettext('374', 'Selkup', 'ccvm', 'value')), + (375, 'item_lang', 'sem', oils_i18n_gettext('375', 'Semitic (Other)', 'ccvm', 'value')), + (376, 'item_lang', 'sga', oils_i18n_gettext('376', 'Irish, Old (to 1100)', 'ccvm', 'value')), + (377, 'item_lang', 'sgn', oils_i18n_gettext('377', 'Sign languages', 'ccvm', 'value')), + (378, 'item_lang', 'shn', oils_i18n_gettext('378', 'Shan', 'ccvm', 'value')), + (379, 'item_lang', '-sho', oils_i18n_gettext('379', 'Shona', 'ccvm', 'value')), + (380, 'item_lang', 'sid', oils_i18n_gettext('380', 'Sidamo', 'ccvm', 'value')), + (381, 'item_lang', 'sin', oils_i18n_gettext('381', 'Sinhalese', 'ccvm', 'value')), + (382, 'item_lang', 'sio', oils_i18n_gettext('382', 'Siouan (Other)', 'ccvm', 'value')), + (383, 'item_lang', 'sit', oils_i18n_gettext('383', 'Sino-Tibetan (Other)', 'ccvm', 'value')), + (384, 'item_lang', 'sla', oils_i18n_gettext('384', 'Slavic (Other)', 'ccvm', 'value')), + (385, 'item_lang', 'slo', oils_i18n_gettext('385', 'Slovak', 'ccvm', 'value')), + (386, 'item_lang', 'slv', oils_i18n_gettext('386', 'Slovenian', 'ccvm', 'value')), + (387, 'item_lang', 'sma', oils_i18n_gettext('387', 'Southern Sami', 'ccvm', 'value')), + (388, 'item_lang', 'sme', oils_i18n_gettext('388', 'Northern Sami', 'ccvm', 'value')), + (389, 'item_lang', 'smi', oils_i18n_gettext('389', 'Sami', 'ccvm', 'value')), + (390, 'item_lang', 'smj', oils_i18n_gettext('390', 'Lule Sami', 'ccvm', 'value')), + (391, 'item_lang', 'smn', oils_i18n_gettext('391', 'Inari Sami', 'ccvm', 'value')), + (392, 'item_lang', 'smo', oils_i18n_gettext('392', 'Samoan', 'ccvm', 'value')), + (393, 'item_lang', 'sms', oils_i18n_gettext('393', 'Skolt Sami', 'ccvm', 'value')), + (394, 'item_lang', 'sna', oils_i18n_gettext('394', 'Shona', 'ccvm', 'value')), + (395, 'item_lang', 'snd', oils_i18n_gettext('395', 'Sindhi', 'ccvm', 'value')), + (396, 'item_lang', '-snh', oils_i18n_gettext('396', 'Sinhalese', 'ccvm', 'value')), + (397, 'item_lang', 'snk', oils_i18n_gettext('397', 'Soninke', 'ccvm', 'value')), + (398, 'item_lang', 'sog', oils_i18n_gettext('398', 'Sogdian', 'ccvm', 'value')), + (399, 'item_lang', 'som', oils_i18n_gettext('399', 'Somali', 'ccvm', 'value')), + (400, 'item_lang', 'son', oils_i18n_gettext('400', 'Songhai', 'ccvm', 'value')), + (401, 'item_lang', 'sot', oils_i18n_gettext('401', 'Sotho', 'ccvm', 'value')), + (402, 'item_lang', 'spa', oils_i18n_gettext('402', 'Spanish', 'ccvm', 'value')), + (403, 'item_lang', 'srd', oils_i18n_gettext('403', 'Sardinian', 'ccvm', 'value')), + (404, 'item_lang', 'srr', oils_i18n_gettext('404', 'Serer', 'ccvm', 'value')), + (405, 'item_lang', 'ssa', oils_i18n_gettext('405', 'Nilo-Saharan (Other)', 'ccvm', 'value')), + (406, 'item_lang', '-sso', oils_i18n_gettext('406', 'Sotho', 'ccvm', 'value')), + (407, 'item_lang', 'ssw', oils_i18n_gettext('407', 'Swazi', 'ccvm', 'value')), + (408, 'item_lang', 'suk', oils_i18n_gettext('408', 'Sukuma', 'ccvm', 'value')), + (409, 'item_lang', 'sun', oils_i18n_gettext('409', 'Sundanese', 'ccvm', 'value')), + (410, 'item_lang', 'sus', oils_i18n_gettext('410', 'Susu', 'ccvm', 'value')), + (411, 'item_lang', 'sux', oils_i18n_gettext('411', 'Sumerian', 'ccvm', 'value')), + (412, 'item_lang', 'swa', oils_i18n_gettext('412', 'Swahili', 'ccvm', 'value')), + (413, 'item_lang', 'swe', oils_i18n_gettext('413', 'Swedish', 'ccvm', 'value')), + (414, 'item_lang', '-swz', oils_i18n_gettext('414', 'Swazi', 'ccvm', 'value')), + (415, 'item_lang', 'syr', oils_i18n_gettext('415', 'Syriac', 'ccvm', 'value')), + (416, 'item_lang', '-tag', oils_i18n_gettext('416', 'Tagalog', 'ccvm', 'value')), + (417, 'item_lang', 'tah', oils_i18n_gettext('417', 'Tahitian', 'ccvm', 'value')), + (418, 'item_lang', 'tai', oils_i18n_gettext('418', 'Tai (Other)', 'ccvm', 'value')), + (419, 'item_lang', '-taj', oils_i18n_gettext('419', 'Tajik', 'ccvm', 'value')), + (420, 'item_lang', 'tam', oils_i18n_gettext('420', 'Tamil', 'ccvm', 'value')), + (421, 'item_lang', '-tar', oils_i18n_gettext('421', 'Tatar', 'ccvm', 'value')), + (422, 'item_lang', 'tat', oils_i18n_gettext('422', 'Tatar', 'ccvm', 'value')), + (423, 'item_lang', 'tel', oils_i18n_gettext('423', 'Telugu', 'ccvm', 'value')), + (424, 'item_lang', 'tem', oils_i18n_gettext('424', 'Temne', 'ccvm', 'value')), + (425, 'item_lang', 'ter', oils_i18n_gettext('425', 'Terena', 'ccvm', 'value')), + (426, 'item_lang', 'tet', oils_i18n_gettext('426', 'Tetum', 'ccvm', 'value')), + (427, 'item_lang', 'tgk', oils_i18n_gettext('427', 'Tajik', 'ccvm', 'value')), + (428, 'item_lang', 'tgl', oils_i18n_gettext('428', 'Tagalog', 'ccvm', 'value')), + (429, 'item_lang', 'tha', oils_i18n_gettext('429', 'Thai', 'ccvm', 'value')), + (430, 'item_lang', 'tib', oils_i18n_gettext('430', 'Tibetan', 'ccvm', 'value')), + (431, 'item_lang', 'tig', oils_i18n_gettext('431', 'Tigré', 'ccvm', 'value')), + (432, 'item_lang', 'tir', oils_i18n_gettext('432', 'Tigrinya', 'ccvm', 'value')), + (433, 'item_lang', 'tiv', oils_i18n_gettext('433', 'Tiv', 'ccvm', 'value')), + (434, 'item_lang', 'tkl', oils_i18n_gettext('434', 'Tokelauan', 'ccvm', 'value')), + (435, 'item_lang', 'tli', oils_i18n_gettext('435', 'Tlingit', 'ccvm', 'value')), + (436, 'item_lang', 'tmh', oils_i18n_gettext('436', 'Tamashek', 'ccvm', 'value')), + (437, 'item_lang', 'tog', oils_i18n_gettext('437', 'Tonga (Nyasa)', 'ccvm', 'value')), + (438, 'item_lang', 'ton', oils_i18n_gettext('438', 'Tongan', 'ccvm', 'value')), + (439, 'item_lang', 'tpi', oils_i18n_gettext('439', 'Tok Pisin', 'ccvm', 'value')), + (440, 'item_lang', '-tru', oils_i18n_gettext('440', 'Truk', 'ccvm', 'value')), + (441, 'item_lang', 'tsi', oils_i18n_gettext('441', 'Tsimshian', 'ccvm', 'value')), + (442, 'item_lang', 'tsn', oils_i18n_gettext('442', 'Tswana', 'ccvm', 'value')), + (443, 'item_lang', 'tso', oils_i18n_gettext('443', 'Tsonga', 'ccvm', 'value')), + (444, 'item_lang', '-tsw', oils_i18n_gettext('444', 'Tswana', 'ccvm', 'value')), + (445, 'item_lang', 'tuk', oils_i18n_gettext('445', 'Turkmen', 'ccvm', 'value')), + (446, 'item_lang', 'tum', oils_i18n_gettext('446', 'Tumbuka', 'ccvm', 'value')), + (447, 'item_lang', 'tup', oils_i18n_gettext('447', 'Tupi languages', 'ccvm', 'value')), + (448, 'item_lang', 'tur', oils_i18n_gettext('448', 'Turkish', 'ccvm', 'value')), + (449, 'item_lang', 'tut', oils_i18n_gettext('449', 'Altaic (Other)', 'ccvm', 'value')), + (450, 'item_lang', 'tvl', oils_i18n_gettext('450', 'Tuvaluan', 'ccvm', 'value')), + (451, 'item_lang', 'twi', oils_i18n_gettext('451', 'Twi', 'ccvm', 'value')), + (452, 'item_lang', 'tyv', oils_i18n_gettext('452', 'Tuvinian', 'ccvm', 'value')), + (453, 'item_lang', 'udm', oils_i18n_gettext('453', 'Udmurt', 'ccvm', 'value')), + (454, 'item_lang', 'uga', oils_i18n_gettext('454', 'Ugaritic', 'ccvm', 'value')), + (455, 'item_lang', 'uig', oils_i18n_gettext('455', 'Uighur', 'ccvm', 'value')), + (456, 'item_lang', 'ukr', oils_i18n_gettext('456', 'Ukrainian', 'ccvm', 'value')), + (457, 'item_lang', 'umb', oils_i18n_gettext('457', 'Umbundu', 'ccvm', 'value')), + (458, 'item_lang', 'und', oils_i18n_gettext('458', 'Undetermined', 'ccvm', 'value')), + (459, 'item_lang', 'urd', oils_i18n_gettext('459', 'Urdu', 'ccvm', 'value')), + (460, 'item_lang', 'uzb', oils_i18n_gettext('460', 'Uzbek', 'ccvm', 'value')), + (461, 'item_lang', 'vai', oils_i18n_gettext('461', 'Vai', 'ccvm', 'value')), + (462, 'item_lang', 'ven', oils_i18n_gettext('462', 'Venda', 'ccvm', 'value')), + (463, 'item_lang', 'vie', oils_i18n_gettext('463', 'Vietnamese', 'ccvm', 'value')), + (464, 'item_lang', 'vol', oils_i18n_gettext('464', 'Volapük', 'ccvm', 'value')), + (465, 'item_lang', 'vot', oils_i18n_gettext('465', 'Votic', 'ccvm', 'value')), + (466, 'item_lang', 'wak', oils_i18n_gettext('466', 'Wakashan languages', 'ccvm', 'value')), + (467, 'item_lang', 'wal', oils_i18n_gettext('467', 'Walamo', 'ccvm', 'value')), + (468, 'item_lang', 'war', oils_i18n_gettext('468', 'Waray', 'ccvm', 'value')), + (469, 'item_lang', 'was', oils_i18n_gettext('469', 'Washo', 'ccvm', 'value')), + (470, 'item_lang', 'wel', oils_i18n_gettext('470', 'Welsh', 'ccvm', 'value')), + (471, 'item_lang', 'wen', oils_i18n_gettext('471', 'Sorbian languages', 'ccvm', 'value')), + (472, 'item_lang', 'wln', oils_i18n_gettext('472', 'Walloon', 'ccvm', 'value')), + (473, 'item_lang', 'wol', oils_i18n_gettext('473', 'Wolof', 'ccvm', 'value')), + (474, 'item_lang', 'xal', oils_i18n_gettext('474', 'Kalmyk', 'ccvm', 'value')), + (475, 'item_lang', 'xho', oils_i18n_gettext('475', 'Xhosa', 'ccvm', 'value')), + (476, 'item_lang', 'yao', oils_i18n_gettext('476', 'Yao (Africa)', 'ccvm', 'value')), + (477, 'item_lang', 'yap', oils_i18n_gettext('477', 'Yapese', 'ccvm', 'value')), + (478, 'item_lang', 'yid', oils_i18n_gettext('478', 'Yiddish', 'ccvm', 'value')), + (479, 'item_lang', 'yor', oils_i18n_gettext('479', 'Yoruba', 'ccvm', 'value')), + (480, 'item_lang', 'ypk', oils_i18n_gettext('480', 'Yupik languages', 'ccvm', 'value')), + (481, 'item_lang', 'zap', oils_i18n_gettext('481', 'Zapotec', 'ccvm', 'value')), + (482, 'item_lang', 'zen', oils_i18n_gettext('482', 'Zenaga', 'ccvm', 'value')), + (483, 'item_lang', 'zha', oils_i18n_gettext('483', 'Zhuang', 'ccvm', 'value')), + (484, 'item_lang', 'znd', oils_i18n_gettext('484', 'Zande', 'ccvm', 'value')), + (485, 'item_lang', 'zul', oils_i18n_gettext('485', 'Zulu', 'ccvm', 'value')), + (486, 'item_lang', 'zun', oils_i18n_gettext('486', 'Zuni', 'ccvm', 'value')); + +INSERT INTO config.coded_value_map (id, ctype, code, value, description) VALUES + (487,'audience', ' ', oils_i18n_gettext('487', 'Unknown or unspecified', 'ccvm', 'value'), oils_i18n_gettext('487', 'The target audience for the item not known or not specified.', 'ccvm', 'description')), + (488,'audience', 'a', oils_i18n_gettext('488', 'Preschool', 'ccvm', 'value'), oils_i18n_gettext('488', 'The item is intended for children, approximate ages 0-5 years.', 'ccvm', 'description')), + (489,'audience', 'b', oils_i18n_gettext('489', 'Primary', 'ccvm', 'value'), oils_i18n_gettext('489', 'The item is intended for children, approximate ages 6-8 years.', 'ccvm', 'description')), + (490,'audience', 'c', oils_i18n_gettext('490', 'Pre-adolescent', 'ccvm', 'value'), oils_i18n_gettext('490', 'The item is intended for young people, approximate ages 9-13 years.', 'ccvm', 'description')), + (491,'audience', 'd', oils_i18n_gettext('491', 'Adolescent', 'ccvm', 'value'), oils_i18n_gettext('491', 'The item is intended for young people, approximate ages 14-17 years.', 'ccvm', 'description')), + (492,'audience', 'e', oils_i18n_gettext('492', 'Adult', 'ccvm', 'value'), oils_i18n_gettext('492', 'The item is intended for adults.', 'ccvm', 'description')), + (493,'audience', 'f', oils_i18n_gettext('493', 'Specialized', 'ccvm', 'value'), oils_i18n_gettext('493', 'The item is aimed at a particular audience and the nature of the presentation makes the item of little interest to another audience.', 'ccvm', 'description')), + (494,'audience', 'g', oils_i18n_gettext('494', 'General', 'ccvm', 'value'), oils_i18n_gettext('494', 'The item is of general interest and not aimed at an audience of a particular intellectual level.', 'ccvm', 'description')), + (495,'audience', 'j', oils_i18n_gettext('495', 'Juvenile', 'ccvm', 'value'), oils_i18n_gettext('495', 'The item is intended for children and young people, approximate ages 0-15 years.', 'ccvm', 'description')); + +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES + (496, 'item_type', 'a', oils_i18n_gettext('496', 'Language material', 'ccvm', 'value')), + (497, 'item_type', 't', oils_i18n_gettext('497', 'Manuscript language material', 'ccvm', 'value')), + (498, 'item_type', 'g', oils_i18n_gettext('498', 'Projected medium', 'ccvm', 'value')), + (499, 'item_type', 'k', oils_i18n_gettext('499', 'Two-dimensional nonprojectable graphic', 'ccvm', 'value')), + (500, 'item_type', 'r', oils_i18n_gettext('500', 'Three-dimensional artifact or naturally occurring object', 'ccvm', 'value')), + (501, 'item_type', 'o', oils_i18n_gettext('501', 'Kit', 'ccvm', 'value')), + (502, 'item_type', 'p', oils_i18n_gettext('502', 'Mixed materials', 'ccvm', 'value')), + (503, 'item_type', 'e', oils_i18n_gettext('503', 'Cartographic material', 'ccvm', 'value')), + (504, 'item_type', 'f', oils_i18n_gettext('504', 'Manuscript cartographic material', 'ccvm', 'value')), + (505, 'item_type', 'c', oils_i18n_gettext('505', 'Notated music', 'ccvm', 'value')), + (506, 'item_type', 'd', oils_i18n_gettext('506', 'Manuscript notated music', 'ccvm', 'value')), + (507, 'item_type', 'i', oils_i18n_gettext('507', 'Nonmusical sound recording', 'ccvm', 'value')), + (508, 'item_type', 'j', oils_i18n_gettext('508', 'Musical sound recording', 'ccvm', 'value')), + (509, 'item_type', 'm', oils_i18n_gettext('509', 'Computer file', 'ccvm', 'value')); + +INSERT INTO config.coded_value_map (id, ctype, code, value, description) VALUES + (510, 'lit_form', '0', oils_i18n_gettext('510', 'Not fiction (not further specified)', 'ccvm', 'value'), oils_i18n_gettext('510', 'The item is not a work of fiction and no further identification of the literary form is desired', 'ccvm', 'description')), + (511, 'lit_form', '1', oils_i18n_gettext('511', 'Fiction (not further specified)', 'ccvm', 'value'), oils_i18n_gettext('511', 'The item is a work of fiction and no further identification of the literary form is desired', 'ccvm', 'description')), + (512, 'lit_form', 'c', oils_i18n_gettext('512', 'Comic strips', 'ccvm', 'value'), NULL), + (513, 'lit_form', 'd', oils_i18n_gettext('513', 'Dramas', 'ccvm', 'value'), NULL), + (514, 'lit_form', 'e', oils_i18n_gettext('514', 'Essays', 'ccvm', 'value'), NULL), + (515, 'lit_form', 'f', oils_i18n_gettext('515', 'Novels', 'ccvm', 'value'), NULL), + (516, 'lit_form', 'h', oils_i18n_gettext('516', 'Humor, satires, etc.', 'ccvm', 'value'), oils_i18n_gettext('516', 'The item is a humorous work, satire or of similar literary form.', 'ccvm', 'description')), + (517, 'lit_form', 'i', oils_i18n_gettext('517', 'Letters', 'ccvm', 'value'), oils_i18n_gettext('517', 'The item is a single letter or collection of correspondence.', 'ccvm', 'description')), + (518, 'lit_form', 'j', oils_i18n_gettext('518', 'Short stories', 'ccvm', 'value'), oils_i18n_gettext('518', 'The item is a short story or collection of short stories.', 'ccvm', 'description')), + (519, 'lit_form', 'm', oils_i18n_gettext('519', 'Mixed forms', 'ccvm', 'value'), oils_i18n_gettext('519', 'The item is a variety of literary forms (e.g., poetry and short stories).', 'ccvm', 'description')), + (520, 'lit_form', 'p', oils_i18n_gettext('520', 'Poetry', 'ccvm', 'value'), oils_i18n_gettext('520', 'The item is a poem or collection of poems.', 'ccvm', 'description')), + (521, 'lit_form', 's', oils_i18n_gettext('521', 'Speeches', 'ccvm', 'value'), oils_i18n_gettext('521', 'The item is a speech or collection of speeches.', 'ccvm', 'description')), + (522, 'lit_form', 'u', oils_i18n_gettext('522', 'Unknown', 'ccvm', 'value'), oils_i18n_gettext('522', 'The literary form of the item is unknown.', 'ccvm', 'description')); + + +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES + (523, 'item_form', 'a', oils_i18n_gettext('523', 'Microfilm', 'ccvm', 'value')), + (524, 'item_form', 'b', oils_i18n_gettext('524', 'Microfiche', 'ccvm', 'value')), + (525, 'item_form', 'c', oils_i18n_gettext('525', 'Microopaque', 'ccvm', 'value')), + (526, 'item_form', 'd', oils_i18n_gettext('526', 'Large print', 'ccvm', 'value')), + (527, 'item_form', 'f', oils_i18n_gettext('527', 'Braille', 'ccvm', 'value')), + (528, 'item_form', 'r', oils_i18n_gettext('528', 'Regular print reproduction', 'ccvm', 'value')), + (529, 'item_form', 's', oils_i18n_gettext('529', 'Electronic', 'ccvm', 'value')); + -- see below for more item_form entries + +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES + (530, 'bib_level', 'a', oils_i18n_gettext('530', 'Monographic component part', 'ccvm', 'value')), + (531, 'bib_level', 'b', oils_i18n_gettext('531', 'Serial component part', 'ccvm', 'value')), + (532, 'bib_level', 'c', oils_i18n_gettext('532', 'Collection', 'ccvm', 'value')), + (533, 'bib_level', 'd', oils_i18n_gettext('533', 'Subunit', 'ccvm', 'value')), + (534, 'bib_level', 'i', oils_i18n_gettext('534', 'Integrating resource', 'ccvm', 'value')), + (535, 'bib_level', 'm', oils_i18n_gettext('535', 'Monograph/Item', 'ccvm', 'value')), + (536, 'bib_level', 's', oils_i18n_gettext('536', 'Serial', 'ccvm', 'value')); + +INSERT INTO config.coded_value_map(id, ctype, code, value) VALUES + (537, 'vr_format', 'a', oils_i18n_gettext('537', 'Beta', 'ccvm', 'value')), + (538, 'vr_format', 'b', oils_i18n_gettext('538', 'VHS', 'ccvm', 'value')), + (539, 'vr_format', 'c', oils_i18n_gettext('539', 'U-matic', 'ccvm', 'value')), + (540, 'vr_format', 'd', oils_i18n_gettext('540', 'EIAJ', 'ccvm', 'value')), + (541, 'vr_format', 'e', oils_i18n_gettext('541', 'Type C', 'ccvm', 'value')), + (542, 'vr_format', 'f', oils_i18n_gettext('542', 'Quadruplex', 'ccvm', 'value')), + (543, 'vr_format', 'g', oils_i18n_gettext('543', 'Laserdisc', 'ccvm', 'value')), + (544, 'vr_format', 'h', oils_i18n_gettext('544', 'CED videodisc', 'ccvm', 'value')), + (545, 'vr_format', 'i', oils_i18n_gettext('545', 'Betacam', 'ccvm', 'value')), + (546, 'vr_format', 'j', oils_i18n_gettext('546', 'Betacam SP', 'ccvm', 'value')), + (547, 'vr_format', 'k', oils_i18n_gettext('547', 'Super-VHS', 'ccvm', 'value')), + (548, 'vr_format', 'm', oils_i18n_gettext('548', 'M-II', 'ccvm', 'value')), + (549, 'vr_format', 'o', oils_i18n_gettext('549', 'D-2', 'ccvm', 'value')), + (550, 'vr_format', 'p', oils_i18n_gettext('550', '8 mm.', 'ccvm', 'value')), + (551, 'vr_format', 'q', oils_i18n_gettext('551', 'Hi-8 mm.', 'ccvm', 'value')), + (552, 'vr_format', 's', oils_i18n_gettext('552', 'Blu-ray disc', 'ccvm', 'value')), + (553, 'vr_format', 'u', oils_i18n_gettext('553', 'Unknown', 'ccvm', 'value')), + (554, 'vr_format', 'v', oils_i18n_gettext('554', 'DVD', 'ccvm', 'value')), + (555, 'vr_format', 'z', oils_i18n_gettext('555', 'Other', 'ccvm', 'value')), + (556, 'vr_format', ' ', oils_i18n_gettext('556', 'Unspecified', 'ccvm', 'value')); + +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES + (557, 'sr_format', 'a', oils_i18n_gettext(557, '16 rpm', 'ccvm', 'value')), + (558, 'sr_format', 'b', oils_i18n_gettext(558, '33 1/3 rpm', 'ccvm', 'value')), + (559, 'sr_format', 'c', oils_i18n_gettext(559, '45 rpm', 'ccvm', 'value')), + (560, 'sr_format', 'f', oils_i18n_gettext(560, '1.4 m. per second', 'ccvm', 'value')), + (561, 'sr_format', 'd', oils_i18n_gettext(561, '78 rpm', 'ccvm', 'value')), + (562, 'sr_format', 'e', oils_i18n_gettext(562, '8 rpm', 'ccvm', 'value')), + (563, 'sr_format', 'l', oils_i18n_gettext(563, '1 7/8 ips', 'ccvm', 'value')); + +INSERT INTO config.coded_value_map + (id, ctype, code, value, search_label) VALUES +(564, 'icon_format', 'book', + oils_i18n_gettext(564, 'Book', 'ccvm', 'value'), + oils_i18n_gettext(564, 'Book', 'ccvm', 'search_label')), +(565, 'icon_format', 'braille', + oils_i18n_gettext(565, 'Braille', 'ccvm', 'value'), + oils_i18n_gettext(565, 'Braille', 'ccvm', 'search_label')), +(566, 'icon_format', 'software', + oils_i18n_gettext(566, 'Software and video games', 'ccvm', 'value'), + oils_i18n_gettext(566, 'Software and video games', 'ccvm', 'search_label')), +(567, 'icon_format', 'dvd', + oils_i18n_gettext(567, 'DVD', 'ccvm', 'value'), + oils_i18n_gettext(567, 'DVD', 'ccvm', 'search_label')), +(568, 'icon_format', 'ebook', + oils_i18n_gettext(568, 'E-book', 'ccvm', 'value'), + oils_i18n_gettext(568, 'E-book', 'ccvm', 'search_label')), +(569, 'icon_format', 'eaudio', + oils_i18n_gettext(569, 'E-audio', 'ccvm', 'value'), + oils_i18n_gettext(569, 'E-audio', 'ccvm', 'search_label')), +(570, 'icon_format', 'kit', + oils_i18n_gettext(570, 'Kit', 'ccvm', 'value'), + oils_i18n_gettext(570, 'Kit', 'ccvm', 'search_label')), +(571, 'icon_format', 'map', + oils_i18n_gettext(571, 'Map', 'ccvm', 'value'), + oils_i18n_gettext(571, 'Map', 'ccvm', 'search_label')), +(572, 'icon_format', 'microform', + oils_i18n_gettext(572, 'Microform', 'ccvm', 'value'), + oils_i18n_gettext(572, 'Microform', 'ccvm', 'search_label')), +(573, 'icon_format', 'score', + oils_i18n_gettext(573, 'Music Score', 'ccvm', 'value'), + oils_i18n_gettext(573, 'Music Score', 'ccvm', 'search_label')), +(574, 'icon_format', 'picture', + oils_i18n_gettext(574, 'Picture', 'ccvm', 'value'), + oils_i18n_gettext(574, 'Picture', 'ccvm', 'search_label')), +(575, 'icon_format', 'equip', + oils_i18n_gettext(575, 'Equipment, games, toys', 'ccvm', 'value'), + oils_i18n_gettext(575, 'Equipment, games, toys', 'ccvm', 'search_label')), +(576, 'icon_format', 'serial', + oils_i18n_gettext(576, 'Serials and magazines', 'ccvm', 'value'), + oils_i18n_gettext(576, 'Serials and magazines', 'ccvm', 'search_label')), +(577, 'icon_format', 'vhs', + oils_i18n_gettext(577, 'VHS', 'ccvm', 'value'), + oils_i18n_gettext(577, 'VHS', 'ccvm', 'search_label')), +(578, 'icon_format', 'evideo', + oils_i18n_gettext(578, 'E-video', 'ccvm', 'value'), + oils_i18n_gettext(578, 'E-video', 'ccvm', 'search_label')), +(579, 'icon_format', 'cdaudiobook', + oils_i18n_gettext(579, 'CD Audiobook', 'ccvm', 'value'), + oils_i18n_gettext(579, 'CD Audiobook', 'ccvm', 'search_label')), +(580, 'icon_format', 'cdmusic', + oils_i18n_gettext(580, 'CD Music recording', 'ccvm', 'value'), + oils_i18n_gettext(580, 'CD Music recording', 'ccvm', 'search_label')), +(581, 'icon_format', 'casaudiobook', + oils_i18n_gettext(581, 'Cassette audiobook', 'ccvm', 'value'), + oils_i18n_gettext(581, 'Cassette audiobook', 'ccvm', 'search_label')), +(582, 'icon_format', 'casmusic', + oils_i18n_gettext(582, 'Audiocassette music recording', 'ccvm', 'value'), + oils_i18n_gettext(582, 'Audiocassette music recording', 'ccvm', 'search_label')), +(583, 'icon_format', 'phonospoken', + oils_i18n_gettext(583, 'Phonograph spoken recording', 'ccvm', 'value'), + oils_i18n_gettext(583, 'Phonograph spoken recording', 'ccvm', 'search_label')), +(584, 'icon_format', 'phonomusic', + oils_i18n_gettext(584, 'Phonograph music recording', 'ccvm', 'value'), + oils_i18n_gettext(584, 'Phonograph music recording', 'ccvm', 'search_label')), +(585, 'icon_format', 'lpbook', + oils_i18n_gettext(585, 'Large Print Book', 'ccvm', 'value'), + oils_i18n_gettext(585, 'Large Print Book', 'ccvm', 'search_label')); + +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES +(586, 'item_form', 'o', oils_i18n_gettext('586', 'Online', 'ccvm', 'value')), +(587, 'item_form', 'q', oils_i18n_gettext('587', 'Direct electronic', 'ccvm', 'value')); + +-- these formats are a subset of the "icon_format" attribute, +-- modified to exclude electronic resources, which are not holdable +INSERT INTO config.coded_value_map + (id, ctype, code, value, search_label) VALUES +(588, 'mr_hold_format', 'book', + oils_i18n_gettext(588, 'Book', 'ccvm', 'value'), + oils_i18n_gettext(588, 'Book', 'ccvm', 'search_label')), +(589, 'mr_hold_format', 'braille', + oils_i18n_gettext(589, 'Braille', 'ccvm', 'value'), + oils_i18n_gettext(589, 'Braille', 'ccvm', 'search_label')), +(590, 'mr_hold_format', 'software', + oils_i18n_gettext(590, 'Software and video games', 'ccvm', 'value'), + oils_i18n_gettext(590, 'Software and video games', 'ccvm', 'search_label')), +(591, 'mr_hold_format', 'dvd', + oils_i18n_gettext(591, 'DVD', 'ccvm', 'value'), + oils_i18n_gettext(591, 'DVD', 'ccvm', 'search_label')), +(592, 'mr_hold_format', 'kit', + oils_i18n_gettext(592, 'Kit', 'ccvm', 'value'), + oils_i18n_gettext(592, 'Kit', 'ccvm', 'search_label')), +(593, 'mr_hold_format', 'map', + oils_i18n_gettext(593, 'Map', 'ccvm', 'value'), + oils_i18n_gettext(593, 'Map', 'ccvm', 'search_label')), +(594, 'mr_hold_format', 'microform', + oils_i18n_gettext(594, 'Microform', 'ccvm', 'value'), + oils_i18n_gettext(594, 'Microform', 'ccvm', 'search_label')), +(595, 'mr_hold_format', 'score', + oils_i18n_gettext(595, 'Music Score', 'ccvm', 'value'), + oils_i18n_gettext(595, 'Music Score', 'ccvm', 'search_label')), +(596, 'mr_hold_format', 'picture', + oils_i18n_gettext(596, 'Picture', 'ccvm', 'value'), + oils_i18n_gettext(596, 'Picture', 'ccvm', 'search_label')), +(597, 'mr_hold_format', 'equip', + oils_i18n_gettext(597, 'Equipment, games, toys', 'ccvm', 'value'), + oils_i18n_gettext(597, 'Equipment, games, toys', 'ccvm', 'search_label')), +(598, 'mr_hold_format', 'serial', + oils_i18n_gettext(598, 'Serials and magazines', 'ccvm', 'value'), + oils_i18n_gettext(598, 'Serials and magazines', 'ccvm', 'search_label')), +(599, 'mr_hold_format', 'vhs', + oils_i18n_gettext(599, 'VHS', 'ccvm', 'value'), + oils_i18n_gettext(599, 'VHS', 'ccvm', 'search_label')), +(600, 'mr_hold_format', 'cdaudiobook', + oils_i18n_gettext(600, 'CD Audiobook', 'ccvm', 'value'), + oils_i18n_gettext(600, 'CD Audiobook', 'ccvm', 'search_label')), +(601, 'mr_hold_format', 'cdmusic', + oils_i18n_gettext(601, 'CD Music recording', 'ccvm', 'value'), + oils_i18n_gettext(601, 'CD Music recording', 'ccvm', 'search_label')), +(602, 'mr_hold_format', 'casaudiobook', + oils_i18n_gettext(602, 'Cassette audiobook', 'ccvm', 'value'), + oils_i18n_gettext(602, 'Cassette audiobook', 'ccvm', 'search_label')), +(603, 'mr_hold_format', 'casmusic', + oils_i18n_gettext(603, 'Audiocassette music recording', 'ccvm', 'value'), + oils_i18n_gettext(603, 'Audiocassette music recording', 'ccvm', 'search_label')), +(604, 'mr_hold_format', 'phonospoken', + oils_i18n_gettext(604, 'Phonograph spoken recording', 'ccvm', 'value'), + oils_i18n_gettext(604, 'Phonograph spoken recording', 'ccvm', 'search_label')), +(605, 'mr_hold_format', 'phonomusic', + oils_i18n_gettext(605, 'Phonograph music recording', 'ccvm', 'value'), + oils_i18n_gettext(605, 'Phonograph music recording', 'ccvm', 'search_label')), +(606, 'mr_hold_format', 'lpbook', + oils_i18n_gettext(606, 'Large Print Book', 'ccvm', 'value'), + oils_i18n_gettext(606, 'Large Print Book', 'ccvm', 'search_label')) ; + +-- catch-all music of unkown format +INSERT INTO config.coded_value_map + (id, ctype, code, value, search_label) VALUES +(607, 'icon_format', 'music', + oils_i18n_gettext(607, 'Musical Sound Recording (Unknown Format)', 'ccvm', 'value'), + oils_i18n_gettext(607, 'Musical Sound Recording (Unknown Format)', 'ccvm', 'search_label')); + +-- icon for blu-ray +INSERT INTO config.coded_value_map + (id, ctype, code, value, search_label) VALUES +(608, 'icon_format', 'blu-ray', + oils_i18n_gettext(608, 'Blu-ray', 'ccvm', 'value'), + oils_i18n_gettext(608, 'Blu-ray', 'ccvm', 'search_label')); + +-- metarecord hold format for blu-ray +INSERT INTO config.coded_value_map + (id, ctype, code, value, search_label) VALUES +(609, 'mr_hold_format', 'blu-ray', + oils_i18n_gettext(609, 'Blu-ray', 'ccvm', 'value'), + oils_i18n_gettext(609, 'Blu-ray', 'ccvm', 'search_label')); + +-- search format values +INSERT INTO config.coded_value_map + (id, ctype, code, value, search_label) VALUES +(610, 'search_format', 'book', + oils_i18n_gettext(610, 'All Books', 'ccvm', 'value'), + oils_i18n_gettext(610, 'All Books', 'ccvm', 'search_label')), +(611, 'search_format', 'braille', + oils_i18n_gettext(611, 'Braille', 'ccvm', 'value'), + oils_i18n_gettext(611, 'Braille', 'ccvm', 'search_label')), +(612, 'search_format', 'software', + oils_i18n_gettext(612, 'Software and video games', 'ccvm', 'value'), + oils_i18n_gettext(612, 'Software and video games', 'ccvm', 'search_label')), +(613, 'search_format', 'dvd', + oils_i18n_gettext(613, 'DVD', 'ccvm', 'value'), + oils_i18n_gettext(613, 'DVD', 'ccvm', 'search_label')), +(614, 'search_format', 'ebook', + oils_i18n_gettext(614, 'E-book', 'ccvm', 'value'), + oils_i18n_gettext(614, 'E-book', 'ccvm', 'search_label')), +(615, 'search_format', 'eaudio', + oils_i18n_gettext(615, 'E-audio', 'ccvm', 'value'), + oils_i18n_gettext(615, 'E-audio', 'ccvm', 'search_label')), +(616, 'search_format', 'kit', + oils_i18n_gettext(616, 'Kit', 'ccvm', 'value'), + oils_i18n_gettext(616, 'Kit', 'ccvm', 'search_label')), +(617, 'search_format', 'map', + oils_i18n_gettext(617, 'Map', 'ccvm', 'value'), + oils_i18n_gettext(617, 'Map', 'ccvm', 'search_label')), +(618, 'search_format', 'microform', + oils_i18n_gettext(618, 'Microform', 'ccvm', 'value'), + oils_i18n_gettext(618, 'Microform', 'ccvm', 'search_label')), +(619, 'search_format', 'score', + oils_i18n_gettext(619, 'Music Score', 'ccvm', 'value'), + oils_i18n_gettext(619, 'Music Score', 'ccvm', 'search_label')), +(620, 'search_format', 'picture', + oils_i18n_gettext(620, 'Picture', 'ccvm', 'value'), + oils_i18n_gettext(620, 'Picture', 'ccvm', 'search_label')), +(621, 'search_format', 'equip', + oils_i18n_gettext(621, 'Equipment, games, toys', 'ccvm', 'value'), + oils_i18n_gettext(621, 'Equipment, games, toys', 'ccvm', 'search_label')), +(622, 'search_format', 'serial', + oils_i18n_gettext(622, 'Serials and magazines', 'ccvm', 'value'), + oils_i18n_gettext(622, 'Serials and magazines', 'ccvm', 'search_label')), +(623, 'search_format', 'vhs', + oils_i18n_gettext(623, 'VHS', 'ccvm', 'value'), + oils_i18n_gettext(623, 'VHS', 'ccvm', 'search_label')), +(624, 'search_format', 'evideo', + oils_i18n_gettext(624, 'E-video', 'ccvm', 'value'), + oils_i18n_gettext(624, 'E-video', 'ccvm', 'search_label')), +(625, 'search_format', 'cdaudiobook', + oils_i18n_gettext(625, 'CD Audiobook', 'ccvm', 'value'), + oils_i18n_gettext(625, 'CD Audiobook', 'ccvm', 'search_label')), +(626, 'search_format', 'cdmusic', + oils_i18n_gettext(626, 'CD Music recording', 'ccvm', 'value'), + oils_i18n_gettext(626, 'CD Music recording', 'ccvm', 'search_label')), +(627, 'search_format', 'casaudiobook', + oils_i18n_gettext(627, 'Cassette audiobook', 'ccvm', 'value'), + oils_i18n_gettext(627, 'Cassette audiobook', 'ccvm', 'search_label')), +(628, 'search_format', 'casmusic', + oils_i18n_gettext(628, 'Audiocassette music recording', 'ccvm', 'value'), + oils_i18n_gettext(628, 'Audiocassette music recording', 'ccvm', 'search_label')), +(629, 'search_format', 'phonospoken', + oils_i18n_gettext(629, 'Phonograph spoken recording', 'ccvm', 'value'), + oils_i18n_gettext(629, 'Phonograph spoken recording', 'ccvm', 'search_label')), +(630, 'search_format', 'phonomusic', + oils_i18n_gettext(630, 'Phonograph music recording', 'ccvm', 'value'), + oils_i18n_gettext(630, 'Phonograph music recording', 'ccvm', 'search_label')), +(631, 'search_format', 'lpbook', + oils_i18n_gettext(631, 'Large Print Book', 'ccvm', 'value'), + oils_i18n_gettext(631, 'Large Print Book', 'ccvm', 'search_label')), +(632, 'search_format', 'music', + oils_i18n_gettext(632, 'All Music', 'ccvm', 'label'), + oils_i18n_gettext(632, 'All Music', 'ccvm', 'search_label')), +(633, 'search_format', 'blu-ray', + oils_i18n_gettext(633, 'Blu-ray', 'ccvm', 'value'), + oils_i18n_gettext(633, 'Blu-ray', 'ccvm', 'search_label')); + +-- Electronic search format, not opac_visible +INSERT INTO config.coded_value_map + (id, ctype, code, opac_visible, value, search_label) VALUES +(712, 'search_format', 'electronic', FALSE, + oils_i18n_gettext(712, 'Electronic', 'ccvm', 'value'), + oils_i18n_gettext(712, 'Electronic', 'ccvm', 'search_label')); + +-- RDA content type, media type, and carrier type +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (634, 'content_type', 'two-dimensional moving image', + oils_i18n_gettext(634, 'two-dimensional moving image', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1023'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (635, 'content_type', 'three-dimensional moving image', + oils_i18n_gettext(635, 'three-dimensional moving image', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1022'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (636, 'content_type', 'three-dimensional form', + oils_i18n_gettext(636, 'three-dimensional form', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1021'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (637, 'content_type', 'text', + oils_i18n_gettext(637, 'text', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1020'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (638, 'content_type', 'tactile three-dimensional form', + oils_i18n_gettext(638, 'tactile three-dimensional form', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1019'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (639, 'content_type', 'tactile text', + oils_i18n_gettext(639, 'tactile text', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1018'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (640, 'content_type', 'tactile notated movement', + oils_i18n_gettext(640, 'tactile notated movement', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1017'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (641, 'content_type', 'tactile notated music', + oils_i18n_gettext(641, 'tactile notated music', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1016'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (642, 'content_type', 'tactile image', + oils_i18n_gettext(642, 'tactile image', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1015'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (643, 'content_type', 'still image', + oils_i18n_gettext(643, 'still image', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1014'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (644, 'content_type', 'spoken word', + oils_i18n_gettext(644, 'spoken word', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1013'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (645, 'content_type', 'sounds', + oils_i18n_gettext(645, 'sounds', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1012'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (646, 'content_type', 'performed music', + oils_i18n_gettext(646, 'performed music', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1011'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (647, 'content_type', 'notated music', + oils_i18n_gettext(647, 'notated music', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1010'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (648, 'content_type', 'notated movement', + oils_i18n_gettext(648, 'notated movement', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1009'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (649, 'content_type', 'computer program', + oils_i18n_gettext(649, 'computer program', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1008'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (650, 'content_type', 'computer dataset', + oils_i18n_gettext(650, 'computer dataset', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1007'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (651, 'content_type', 'cartographic three-dimensional form', + oils_i18n_gettext(651, 'cartographic three-dimensional form', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1006'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (652, 'content_type', 'cartographic tactile three-dimensional form', + oils_i18n_gettext(652, 'cartographic tactile three-dimensional form', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1005'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (653, 'content_type', 'cartographic tactile image', + oils_i18n_gettext(653, 'cartographic tactile image', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1004'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (654, 'content_type', 'cartographic moving image', + oils_i18n_gettext(654, 'cartographic moving image', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1003'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (655, 'content_type', 'cartographic image', + oils_i18n_gettext(655, 'cartographic image', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1002'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (656, 'content_type', 'cartographic dataset', + oils_i18n_gettext(656, 'cartographic dataset', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAContentType/1001'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (657, 'media_type', 'video', + oils_i18n_gettext(657, 'video', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAMediaType/1008'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (658, 'media_type', 'unmediated', + oils_i18n_gettext(658, 'unmediated', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAMediaType/1007'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (659, 'media_type', 'stereographic', + oils_i18n_gettext(659, 'stereographic', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAMediaType/1006'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (660, 'media_type', 'projected', + oils_i18n_gettext(660, 'projected', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAMediaType/1005'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (661, 'media_type', 'microscopic', + oils_i18n_gettext(661, 'microscopic', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAMediaType/1004'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (662, 'media_type', 'computer', + oils_i18n_gettext(662, 'computer', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAMediaType/1003'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (663, 'media_type', 'microform', + oils_i18n_gettext(663, 'microform', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAMediaType/1002'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (664, 'media_type', 'audio', + oils_i18n_gettext(664, 'audio', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDAMediaType/1001'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (665, 'media_type', 'Published', + oils_i18n_gettext(665, 'Published', 'ccvm', 'value'), + 'http://metadataregistry.org/uri/RegStatus/1001'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (666, 'carrier_type', 'film roll', + oils_i18n_gettext(666, 'film roll', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1069'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (667, 'carrier_type', 'videodisc', + oils_i18n_gettext(667, 'videodisc', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1060'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (668, 'carrier_type', 'object', + oils_i18n_gettext(668, 'object', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1059'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (669, 'carrier_type', 'microfilm roll', + oils_i18n_gettext(669, 'microfilm roll', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1056'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (670, 'carrier_type', 'videotape reel', + oils_i18n_gettext(670, 'videotape reel', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1053'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (671, 'carrier_type', 'videocassette', + oils_i18n_gettext(671, 'videocassette', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1052'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (672, 'carrier_type', 'video cartridge', + oils_i18n_gettext(672, 'video cartridge', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1051'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (673, 'carrier_type', 'volume', + oils_i18n_gettext(673, 'volume', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1049'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (674, 'carrier_type', 'sheet', + oils_i18n_gettext(674, 'sheet', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1048'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (675, 'carrier_type', 'roll', + oils_i18n_gettext(675, 'roll', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1047'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (676, 'carrier_type', 'flipchart', + oils_i18n_gettext(676, 'flipchart', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1046'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (677, 'carrier_type', 'card', + oils_i18n_gettext(677, 'card', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1045'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (678, 'carrier_type', 'stereograph disc', + oils_i18n_gettext(678, 'stereograph disc', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1043'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (679, 'carrier_type', 'stereograph card', + oils_i18n_gettext(679, 'stereograph card', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1042'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (680, 'carrier_type', 'slide', + oils_i18n_gettext(680, 'slide', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1040'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (681, 'carrier_type', 'overhead transparency', + oils_i18n_gettext(681, 'overhead transparency', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1039'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (682, 'carrier_type', 'filmstrip cartridge', + oils_i18n_gettext(682, 'filmstrip cartridge', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1037'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (683, 'carrier_type', 'filmstrip', + oils_i18n_gettext(683, 'filmstrip', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1036'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (684, 'carrier_type', 'filmslip', + oils_i18n_gettext(684, 'filmslip', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1035'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (685, 'carrier_type', 'film reel', + oils_i18n_gettext(685, 'film reel', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1034'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (686, 'carrier_type', 'film cassette', + oils_i18n_gettext(686, 'film cassette', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1033'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (687, 'carrier_type', 'film cartridge', + oils_i18n_gettext(687, 'film cartridge', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1032'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (688, 'carrier_type', 'microscope slide', + oils_i18n_gettext(688, 'microscope slide', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1030'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (689, 'carrier_type', 'microopaque', + oils_i18n_gettext(689, 'microopaque', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1028'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (690, 'carrier_type', 'microfilm slip', + oils_i18n_gettext(690, 'microfilm slip', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1027'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (691, 'carrier_type', 'microfilm reel', + oils_i18n_gettext(691, 'microfilm reel', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1026'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (692, 'carrier_type', 'microfilm cassette', + oils_i18n_gettext(692, 'microfilm cassette', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1025'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (693, 'carrier_type', 'microfilm cartridge', + oils_i18n_gettext(693, 'microfilm cartridge', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1024'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (694, 'carrier_type', 'microfiche cassette', + oils_i18n_gettext(694, 'microfiche cassette', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1023'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (695, 'carrier_type', 'microfiche', + oils_i18n_gettext(695, 'microfiche', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1022'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (696, 'carrier_type', 'aperture card', + oils_i18n_gettext(696, 'aperture card', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1021'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (697, 'carrier_type', 'online resource', + oils_i18n_gettext(697, 'online resource', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1018'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (698, 'carrier_type', 'computer tape reel', + oils_i18n_gettext(698, 'computer tape reel', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1017'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (699, 'carrier_type', 'computer tape cassette', + oils_i18n_gettext(699, 'computer tape cassette', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1016'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (700, 'carrier_type', 'computer tape cartridge', + oils_i18n_gettext(700, 'computer tape cartridge', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1015'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (701, 'carrier_type', 'computer disc cartridge', + oils_i18n_gettext(701, 'computer disc cartridge', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1014'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (702, 'carrier_type', 'computer disc', + oils_i18n_gettext(702, 'computer disc', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1013'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (703, 'carrier_type', 'computer chip cartridge', + oils_i18n_gettext(703, 'computer chip cartridge', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1012'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (704, 'carrier_type', 'computer card', + oils_i18n_gettext(704, 'computer card', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1011'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (705, 'carrier_type', 'audiotape reel', + oils_i18n_gettext(705, 'audiotape reel', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1008'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (706, 'carrier_type', 'audiocassette', + oils_i18n_gettext(706, 'audiocassette', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1007'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (707, 'carrier_type', 'audio roll', + oils_i18n_gettext(707, 'audio roll', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1006'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (708, 'carrier_type', 'sound-track reel', + oils_i18n_gettext(708, 'sound-track reel', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1005'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (709, 'carrier_type', 'audio disc', + oils_i18n_gettext(709, 'audio disc', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1004'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (710, 'carrier_type', 'audio cylinder', + oils_i18n_gettext(710, 'audio cylinder', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1003'); +INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri) + VALUES (711, 'carrier_type', 'audio cartridge', + oils_i18n_gettext(711, 'audio cartridge', 'ccvm', 'value'), + 'http://rdaregistry.info/termList/RDACarrierType/1002'); + +-- Accompanying Matter +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1735, 'accm', ' ', oils_i18n_gettext('1735', 'No accompanying matter', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (713, 'accm', 'a', oils_i18n_gettext('713', 'Discography', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (714, 'accm', 'b', oils_i18n_gettext('714', 'Bibliography', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (715, 'accm', 'c', oils_i18n_gettext('715', 'Thematic index', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (716, 'accm', 'd', oils_i18n_gettext('716', 'Libretto or text', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (717, 'accm', 'e', oils_i18n_gettext('717', 'Biography of composer or author', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (718, 'accm', 'f', oils_i18n_gettext('718', 'Biography or performer or history of ensemble', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (719, 'accm', 'g', oils_i18n_gettext('719', 'Technical and/or historical information on instruments', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (720, 'accm', 'h', oils_i18n_gettext('720', 'Technical information on music', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (721, 'accm', 'i', oils_i18n_gettext('721', 'Historical information', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (722, 'accm', 'k', oils_i18n_gettext('722', 'Ethnological information', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (723, 'accm', 'r', oils_i18n_gettext('723', 'Instructional materials', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (724, 'accm', 's', oils_i18n_gettext('724', 'Music', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (725, 'accm', 'z', oils_i18n_gettext('725', 'Other accompanying matter', 'ccvm', 'value')); + +-- Form of Composition +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (726, 'comp', ' ', oils_i18n_gettext('726', 'No information supplied', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (727, 'comp', 'an', oils_i18n_gettext('727', 'Anthems', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (728, 'comp', 'bd', oils_i18n_gettext('728', 'Ballads', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (729, 'comp', 'bt', oils_i18n_gettext('729', 'Ballets', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (730, 'comp', 'bg', oils_i18n_gettext('730', 'Bluegrass music', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (731, 'comp', 'bl', oils_i18n_gettext('731', 'Blues', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (732, 'comp', 'cn', oils_i18n_gettext('732', 'Canons and rounds', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (733, 'comp', 'ct', oils_i18n_gettext('733', 'Cantatas', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (734, 'comp', 'cz', oils_i18n_gettext('734', 'Canzonas', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (735, 'comp', 'cr', oils_i18n_gettext('735', 'Carols', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (736, 'comp', 'ca', oils_i18n_gettext('736', 'Chaconnes', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (737, 'comp', 'cs', oils_i18n_gettext('737', 'Chance compositions', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (738, 'comp', 'cp', oils_i18n_gettext('738', 'Chansons, Polyphonic', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (739, 'comp', 'cc', oils_i18n_gettext('739', 'Chant, Christian', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (740, 'comp', 'cb', oils_i18n_gettext('740', 'Chants, other', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (741, 'comp', 'cl', oils_i18n_gettext('741', 'Chorale preludes', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (742, 'comp', 'ch', oils_i18n_gettext('742', 'Chorales', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (743, 'comp', 'cg', oils_i18n_gettext('743', 'Concerti grossi', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (744, 'comp', 'co', oils_i18n_gettext('744', 'Concertos', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (745, 'comp', 'cy', oils_i18n_gettext('745', 'Country music', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (746, 'comp', 'df', oils_i18n_gettext('746', 'Dance forms', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (747, 'comp', 'dv', oils_i18n_gettext('747', 'Divertimentos, serenades, cassations, divertissements, and notturni', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (748, 'comp', 'ft', oils_i18n_gettext('748', 'Fantasias', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (749, 'comp', 'fl', oils_i18n_gettext('749', 'Flamenco', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (750, 'comp', 'fm', oils_i18n_gettext('750', 'Folk music', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (751, 'comp', 'fg', oils_i18n_gettext('751', 'Fugues', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (752, 'comp', 'gm', oils_i18n_gettext('752', 'Gospel music', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (753, 'comp', 'hy', oils_i18n_gettext('753', 'Hymns', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (754, 'comp', 'jz', oils_i18n_gettext('754', 'Jazz', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (755, 'comp', 'md', oils_i18n_gettext('755', 'Madrigals', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (756, 'comp', 'mr', oils_i18n_gettext('756', 'Marches', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (757, 'comp', 'ms', oils_i18n_gettext('757', 'Masses', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (758, 'comp', 'mz', oils_i18n_gettext('758', 'Mazurkas', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (759, 'comp', 'mi', oils_i18n_gettext('759', 'Minuets', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (760, 'comp', 'mo', oils_i18n_gettext('760', 'Motets', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (761, 'comp', 'mp', oils_i18n_gettext('761', 'Motion picture music', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (762, 'comp', 'mu', oils_i18n_gettext('762', 'Multiple forms', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (763, 'comp', 'mc', oils_i18n_gettext('763', 'Musical reviews and comedies', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (764, 'comp', 'nc', oils_i18n_gettext('764', 'Nocturnes', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (765, 'comp', 'nn', oils_i18n_gettext('765', 'Not applicable', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (766, 'comp', 'op', oils_i18n_gettext('766', 'Operas', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (767, 'comp', 'or', oils_i18n_gettext('767', 'Oratorios', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (768, 'comp', 'ov', oils_i18n_gettext('768', 'Overtures', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (769, 'comp', 'pt', oils_i18n_gettext('769', 'Part-songs', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (770, 'comp', 'ps', oils_i18n_gettext('770', 'Passacaglias', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (771, 'comp', 'pm', oils_i18n_gettext('771', 'Passion music', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (772, 'comp', 'pv', oils_i18n_gettext('772', 'Pavans', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (773, 'comp', 'po', oils_i18n_gettext('773', 'Polonaises', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (774, 'comp', 'pp', oils_i18n_gettext('774', 'Popular music', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (775, 'comp', 'pr', oils_i18n_gettext('775', 'Preludes', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (776, 'comp', 'pg', oils_i18n_gettext('776', 'Program music', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (777, 'comp', 'rg', oils_i18n_gettext('777', 'Ragtime music', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (778, 'comp', 'rq', oils_i18n_gettext('778', 'Requiems', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (779, 'comp', 'rp', oils_i18n_gettext('779', 'Rhapsodies', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (780, 'comp', 'ri', oils_i18n_gettext('780', 'Ricercars', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (781, 'comp', 'rc', oils_i18n_gettext('781', 'Rock music', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (782, 'comp', 'rd', oils_i18n_gettext('782', 'Rondos', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (783, 'comp', 'sn', oils_i18n_gettext('783', 'Sonatas', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (784, 'comp', 'sg', oils_i18n_gettext('784', 'Songs', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (785, 'comp', 'sd', oils_i18n_gettext('785', 'Square dance music', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (786, 'comp', 'st', oils_i18n_gettext('786', 'Studies and exercises', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (787, 'comp', 'su', oils_i18n_gettext('787', 'Suites', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (788, 'comp', 'sp', oils_i18n_gettext('788', 'Symphonic poems', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (789, 'comp', 'sy', oils_i18n_gettext('789', 'Symphonies', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (790, 'comp', 'tl', oils_i18n_gettext('790', 'Teatro lirico', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (791, 'comp', 'tc', oils_i18n_gettext('791', 'Toccatas', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (792, 'comp', 'ts', oils_i18n_gettext('792', 'Trio-sonatas', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (793, 'comp', 'uu', oils_i18n_gettext('793', 'Unknown', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (794, 'comp', 'vi', oils_i18n_gettext('794', 'Villancicos', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (795, 'comp', 'vr', oils_i18n_gettext('795', 'Variations', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (796, 'comp', 'wz', oils_i18n_gettext('796', 'Waltzes', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (797, 'comp', 'za', oils_i18n_gettext('797', 'Zarzuelas', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (798, 'comp', 'zz', oils_i18n_gettext('798', 'Other forms', 'ccvm', 'value')); + +-- Type of Cartographic Material +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (799, 'crtp', 'a', oils_i18n_gettext('799', 'Single map', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (800, 'crtp', 'b', oils_i18n_gettext('800', 'Map series', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (801, 'crtp', 'c', oils_i18n_gettext('801', 'Map serial', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (802, 'crtp', 'd', oils_i18n_gettext('802', 'Globe', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (803, 'crtp', 'e', oils_i18n_gettext('803', 'Atlas', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (804, 'crtp', 'f', oils_i18n_gettext('804', 'Separate supplement to another work', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (805, 'crtp', 'g', oils_i18n_gettext('805', 'Bound as part of another work', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (806, 'crtp', 'u', oils_i18n_gettext('806', 'Unknown', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (807, 'crtp', 'z', oils_i18n_gettext('807', 'Other', 'ccvm', 'value')); + +-- Nature of Entire Work +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (808, 'entw', ' ', oils_i18n_gettext('808', 'Not specified', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (809, 'entw', 'a', oils_i18n_gettext('809', 'Abstracts/summaries', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (810, 'entw', 'b', oils_i18n_gettext('810', 'Bibliographies', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (811, 'entw', 'c', oils_i18n_gettext('811', 'Catalogs', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (812, 'entw', 'd', oils_i18n_gettext('812', 'Dictionaries', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (813, 'entw', 'e', oils_i18n_gettext('813', 'Encyclopedias', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (814, 'entw', 'f', oils_i18n_gettext('814', 'Handbooks', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (815, 'entw', 'g', oils_i18n_gettext('815', 'Legal articles', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (816, 'entw', 'h', oils_i18n_gettext('816', 'Biography', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (817, 'entw', 'i', oils_i18n_gettext('817', 'Indexes', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (818, 'entw', 'k', oils_i18n_gettext('818', 'Discographies', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (819, 'entw', 'l', oils_i18n_gettext('819', 'Legislation', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (820, 'entw', 'm', oils_i18n_gettext('820', 'Theses', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (821, 'entw', 'n', oils_i18n_gettext('821', 'Surveys of the literature in a subject area', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (822, 'entw', 'o', oils_i18n_gettext('822', 'Reviews', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (823, 'entw', 'p', oils_i18n_gettext('823', 'Programmed texts', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (824, 'entw', 'q', oils_i18n_gettext('824', 'Filmographies', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (825, 'entw', 'r', oils_i18n_gettext('825', 'Directories', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (826, 'entw', 's', oils_i18n_gettext('826', 'Statistics', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (827, 'entw', 't', oils_i18n_gettext('827', 'Technical reports', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (828, 'entw', 'u', oils_i18n_gettext('828', 'Standards/specifications', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (829, 'entw', 'v', oils_i18n_gettext('829', 'Legal cases and case notes', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (830, 'entw', 'w', oils_i18n_gettext('830', 'Law reports and digests', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (831, 'entw', 'y', oils_i18n_gettext('831', 'Yearbooks', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (832, 'entw', 'z', oils_i18n_gettext('832', 'Treaties', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (833, 'entw', '5', oils_i18n_gettext('833', 'Calendars', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (834, 'entw', '6', oils_i18n_gettext('834', 'Comics/graphic novels', 'ccvm', 'value')); + +-- Nature of Contents +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (835, 'cont', ' ', oils_i18n_gettext('835', 'Not specified', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (836, 'cont', 'a', oils_i18n_gettext('836', 'Abstracts/summaries', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (837, 'cont', 'b', oils_i18n_gettext('837', 'Bibliographies', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (838, 'cont', 'c', oils_i18n_gettext('838', 'Catalogs', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (839, 'cont', 'd', oils_i18n_gettext('839', 'Dictionaries', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (840, 'cont', 'e', oils_i18n_gettext('840', 'Encyclopedias', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (841, 'cont', 'f', oils_i18n_gettext('841', 'Handbooks', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (842, 'cont', 'g', oils_i18n_gettext('842', 'Legal articles', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (843, 'cont', 'h', oils_i18n_gettext('843', 'Biography', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (844, 'cont', 'i', oils_i18n_gettext('844', 'Indexes', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (845, 'cont', 'j', oils_i18n_gettext('845', 'Patent document', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (846, 'cont', 'k', oils_i18n_gettext('846', 'Discographies', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (847, 'cont', 'l', oils_i18n_gettext('847', 'Legislation', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (848, 'cont', 'm', oils_i18n_gettext('848', 'Theses', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (849, 'cont', 'n', oils_i18n_gettext('849', 'Surveys of the literature in a subject area', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (850, 'cont', 'o', oils_i18n_gettext('850', 'Reviews', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (851, 'cont', 'p', oils_i18n_gettext('851', 'Programmed texts', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (852, 'cont', 'q', oils_i18n_gettext('852', 'Filmographies', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (853, 'cont', 'r', oils_i18n_gettext('853', 'Directories', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (854, 'cont', 's', oils_i18n_gettext('854', 'Statistics', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (855, 'cont', 't', oils_i18n_gettext('855', 'Technical reports', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (856, 'cont', 'u', oils_i18n_gettext('856', 'Standards/specifications', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (857, 'cont', 'v', oils_i18n_gettext('857', 'Legal cases and case notes', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (858, 'cont', 'w', oils_i18n_gettext('858', 'Law reports and digests', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (859, 'cont', 'x', oils_i18n_gettext('859', 'Other reports', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (860, 'cont', 'y', oils_i18n_gettext('860', 'Yearbooks', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (861, 'cont', 'z', oils_i18n_gettext('861', 'Treaties', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (862, 'cont', '2', oils_i18n_gettext('862', 'Offprints', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (863, 'cont', '5', oils_i18n_gettext('863', 'Calendars', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (864, 'cont', '6', oils_i18n_gettext('864', 'Comics/graphic novels', 'ccvm', 'value')); + +-- Format of Music +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (865, 'fmus', ' ', oils_i18n_gettext('865', 'Information not supplied', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (866, 'fmus', 'a', oils_i18n_gettext('866', 'Full score', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (867, 'fmus', 'b', oils_i18n_gettext('867', 'Full score, miniature or study size', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (868, 'fmus', 'c', oils_i18n_gettext('868', 'Accompaniment reduced for keyboard', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (869, 'fmus', 'd', oils_i18n_gettext('869', 'Voice score with accompaniment omitted', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (870, 'fmus', 'e', oils_i18n_gettext('870', 'Condensed score or piano-conductor score', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (871, 'fmus', 'g', oils_i18n_gettext('871', 'Close score', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (872, 'fmus', 'h', oils_i18n_gettext('872', 'Chorus score', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (873, 'fmus', 'i', oils_i18n_gettext('873', 'Condensed score', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (874, 'fmus', 'j', oils_i18n_gettext('874', 'Performer-conductor part', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (875, 'fmus', 'k', oils_i18n_gettext('875', 'Vocal score', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (876, 'fmus', 'l', oils_i18n_gettext('876', 'Score', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (877, 'fmus', 'm', oils_i18n_gettext('877', 'Multiple score formats', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (878, 'fmus', 'n', oils_i18n_gettext('878', 'Not applicable', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (879, 'fmus', 'u', oils_i18n_gettext('879', 'Unknown', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (880, 'fmus', 'z', oils_i18n_gettext('880', 'Other', 'ccvm', 'value')); + +-- Literary Text for Sound Recordings +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (881, 'ltxt', ' ', oils_i18n_gettext('881', 'Item is a music sound recording', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (882, 'ltxt', 'a', oils_i18n_gettext('882', 'Autobiography', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (883, 'ltxt', 'b', oils_i18n_gettext('883', 'Biography', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (884, 'ltxt', 'c', oils_i18n_gettext('884', 'Conference proceedings', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (885, 'ltxt', 'd', oils_i18n_gettext('885', 'Drama', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (886, 'ltxt', 'e', oils_i18n_gettext('886', 'Essays', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (887, 'ltxt', 'f', oils_i18n_gettext('887', 'Fiction', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (888, 'ltxt', 'g', oils_i18n_gettext('888', 'Reporting', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (889, 'ltxt', 'h', oils_i18n_gettext('889', 'History', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (890, 'ltxt', 'i', oils_i18n_gettext('890', 'Instruction', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (891, 'ltxt', 'j', oils_i18n_gettext('891', 'Language instruction', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (892, 'ltxt', 'k', oils_i18n_gettext('892', 'Comedy', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (893, 'ltxt', 'l', oils_i18n_gettext('893', 'Lectures, speeches', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (894, 'ltxt', 'm', oils_i18n_gettext('894', 'Memoirs', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (895, 'ltxt', 'n', oils_i18n_gettext('895', 'Not applicable', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (896, 'ltxt', 'o', oils_i18n_gettext('896', 'Folktales', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (897, 'ltxt', 'p', oils_i18n_gettext('897', 'Poetry', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (898, 'ltxt', 'r', oils_i18n_gettext('898', 'Rehearsals', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (899, 'ltxt', 's', oils_i18n_gettext('899', 'Sounds', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (900, 'ltxt', 't', oils_i18n_gettext('900', 'Interviews', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (901, 'ltxt', 'z', oils_i18n_gettext('901', 'Other', 'ccvm', 'value')); + +-- Form of Original Item +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (902, 'orig', ' ', oils_i18n_gettext('902', 'None of the following', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (903, 'orig', 'a', oils_i18n_gettext('903', 'Microfilm', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (904, 'orig', 'b', oils_i18n_gettext('904', 'Microfiche', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (905, 'orig', 'c', oils_i18n_gettext('905', 'Microopaque', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (906, 'orig', 'd', oils_i18n_gettext('906', 'Large print', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (907, 'orig', 'e', oils_i18n_gettext('907', 'Newspaper format', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (908, 'orig', 'f', oils_i18n_gettext('908', 'Braille', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (909, 'orig', 'o', oils_i18n_gettext('909', 'Online', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (910, 'orig', 'q', oils_i18n_gettext('910', 'Direct electronic', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (911, 'orig', 's', oils_i18n_gettext('911', 'Electronic', 'ccvm', 'value')); + +-- Music Parts +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (912, 'part', ' ', oils_i18n_gettext('912', 'No parts in hand or not specified', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (913, 'part', 'd', oils_i18n_gettext('913', 'Instrumental and vocal parts', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (914, 'part', 'e', oils_i18n_gettext('914', 'Instrumental parts', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (915, 'part', 'f', oils_i18n_gettext('915', 'Vocal parts', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (916, 'part', 'n', oils_i18n_gettext('916', 'Not Applicable', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (917, 'part', 'u', oils_i18n_gettext('917', 'Unknown', 'ccvm', 'value')); + +-- Projection +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (918, 'proj', ' ', oils_i18n_gettext('918', 'Project not specified', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (919, 'proj', 'aa', oils_i18n_gettext('919', 'Aitoff', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (920, 'proj', 'ab', oils_i18n_gettext('920', 'Gnomic', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (921, 'proj', 'ac', oils_i18n_gettext('921', 'Lambert''s azimuthal equal area', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (922, 'proj', 'ad', oils_i18n_gettext('922', 'Orthographic', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (923, 'proj', 'ae', oils_i18n_gettext('923', 'Azimuthal equidistant', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (924, 'proj', 'af', oils_i18n_gettext('924', 'Stereographic', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (925, 'proj', 'ag', oils_i18n_gettext('925', 'General vertical near-sided', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (926, 'proj', 'am', oils_i18n_gettext('926', 'Modified stereographic for Alaska', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (927, 'proj', 'an', oils_i18n_gettext('927', 'Chamberlin trimetric', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (928, 'proj', 'ap', oils_i18n_gettext('928', 'Polar stereographic', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (929, 'proj', 'au', oils_i18n_gettext('929', 'Azimuthal, specific type unknown', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (930, 'proj', 'az', oils_i18n_gettext('930', 'Azimuthal, other', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (931, 'proj', 'ba', oils_i18n_gettext('931', 'Gall', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (932, 'proj', 'bb', oils_i18n_gettext('932', 'Goode''s homolographic', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (933, 'proj', 'bc', oils_i18n_gettext('933', 'Lambert''s cylindrical equal area', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (934, 'proj', 'bd', oils_i18n_gettext('934', 'Mercator', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (935, 'proj', 'be', oils_i18n_gettext('935', 'Miller', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (936, 'proj', 'bf', oils_i18n_gettext('936', 'Mollweide', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (937, 'proj', 'bg', oils_i18n_gettext('937', 'Sinusoidal', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (938, 'proj', 'bh', oils_i18n_gettext('938', 'Transverse Mercator', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (939, 'proj', 'bi', oils_i18n_gettext('939', 'Gauss-Kruger', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (940, 'proj', 'bj', oils_i18n_gettext('940', 'Equirectangular', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (941, 'proj', 'bk', oils_i18n_gettext('941', 'Krovak', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (942, 'proj', 'bl', oils_i18n_gettext('942', 'Cassini-Soldner', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (943, 'proj', 'bo', oils_i18n_gettext('943', 'Oblique Mercator', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (944, 'proj', 'br', oils_i18n_gettext('944', 'Robinson', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (945, 'proj', 'bs', oils_i18n_gettext('945', 'Space oblique Mercator', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (946, 'proj', 'bu', oils_i18n_gettext('946', 'Cylindrical, specific type unknown', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (947, 'proj', 'bz', oils_i18n_gettext('947', 'Cylindrical, other', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (948, 'proj', 'ca', oils_i18n_gettext('948', 'Alber''s equal area', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (949, 'proj', 'cb', oils_i18n_gettext('949', 'Bonne', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (950, 'proj', 'cc', oils_i18n_gettext('950', 'Lambert''s conformal conic', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (951, 'proj', 'ce', oils_i18n_gettext('951', 'Equidistant conic', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (952, 'proj', 'cp', oils_i18n_gettext('952', 'Polyconic', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (953, 'proj', 'cu', oils_i18n_gettext('953', 'Conic, specific type unknown', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (954, 'proj', 'cz', oils_i18n_gettext('954', 'Conic, other', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (955, 'proj', 'da', oils_i18n_gettext('955', 'Armadillo', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (956, 'proj', 'db', oils_i18n_gettext('956', 'Butterfly', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (957, 'proj', 'dc', oils_i18n_gettext('957', 'Eckert', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (958, 'proj', 'dd', oils_i18n_gettext('958', 'Goode''s homolosine', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (959, 'proj', 'de', oils_i18n_gettext('959', 'Miller''s bipolar oblique conformal conic', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (960, 'proj', 'df', oils_i18n_gettext('960', 'Van Der Grinten', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (961, 'proj', 'dg', oils_i18n_gettext('961', 'Dymaxion', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (962, 'proj', 'dh', oils_i18n_gettext('962', 'Cordiform', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (963, 'proj', 'dl', oils_i18n_gettext('963', 'Lambert conformal', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (964, 'proj', 'zz', oils_i18n_gettext('964', 'Other', 'ccvm', 'value')); + +-- Relief +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (965, 'relf', ' ', oils_i18n_gettext('965', 'No relief shown', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (966, 'relf', 'a', oils_i18n_gettext('966', 'Contours', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (967, 'relf', 'b', oils_i18n_gettext('967', 'Shading', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (968, 'relf', 'c', oils_i18n_gettext('968', 'Gradient and bathymetric tints', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (969, 'relf', 'd', oils_i18n_gettext('969', 'Hachures', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (970, 'relf', 'e', oils_i18n_gettext('970', 'Bathymetry, soundings', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (971, 'relf', 'f', oils_i18n_gettext('971', 'Form lines', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (972, 'relf', 'g', oils_i18n_gettext('972', 'Spot heights', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (973, 'relf', 'i', oils_i18n_gettext('973', 'Pictorially', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (974, 'relf', 'j', oils_i18n_gettext('974', 'Land forms', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (975, 'relf', 'k', oils_i18n_gettext('975', 'Bathymetry, isolines', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (976, 'relf', 'm', oils_i18n_gettext('976', 'Rock drawings', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (977, 'relf', 'z', oils_i18n_gettext('977', 'Other', 'ccvm', 'value')); + +-- Special Format Characteristics +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (978, 'spfm', ' ', oils_i18n_gettext('978', 'No specified special format characteristics', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (979, 'spfm', 'e', oils_i18n_gettext('979', 'Manuscript', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (980, 'spfm', 'j', oils_i18n_gettext('980', 'Picture card, post card', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (981, 'spfm', 'k', oils_i18n_gettext('981', 'Calendar', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (982, 'spfm', 'l', oils_i18n_gettext('982', 'Puzzle', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (983, 'spfm', 'n', oils_i18n_gettext('983', 'Game', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (984, 'spfm', 'o', oils_i18n_gettext('984', 'Wall map', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (985, 'spfm', 'p', oils_i18n_gettext('985', 'Playing cards', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (986, 'spfm', 'r', oils_i18n_gettext('986', 'Loose-leaf', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (987, 'spfm', 'z', oils_i18n_gettext('987', 'Other', 'ccvm', 'value')); + +-- Type of Continuing Resource +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (988, 'srtp', ' ', oils_i18n_gettext('988', 'None of the following', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (989, 'srtp', 'd', oils_i18n_gettext('989', 'Updating database', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (990, 'srtp', 'l', oils_i18n_gettext('990', 'Updating loose-leaf', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (991, 'srtp', 'm', oils_i18n_gettext('991', 'Monographic series', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (992, 'srtp', 'n', oils_i18n_gettext('992', 'Newspaper', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (993, 'srtp', 'p', oils_i18n_gettext('993', 'Periodical', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (994, 'srtp', 'w', oils_i18n_gettext('994', 'Updating Web site', 'ccvm', 'value')); + +-- Technique +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (995, 'tech', 'a', oils_i18n_gettext('995', 'Animation', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (996, 'tech', 'c', oils_i18n_gettext('996', 'Animation and live action', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (997, 'tech', 'l', oils_i18n_gettext('997', 'Live action', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (998, 'tech', 'n', oils_i18n_gettext('998', 'Not applicable', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (999, 'tech', 'u', oils_i18n_gettext('999', 'Unknown', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1000, 'tech', 'z', oils_i18n_gettext('1000', 'Other', 'ccvm', 'value')); + +-- Transposition and Arrangement +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1001, 'trar', ' ', oils_i18n_gettext('1001', 'Not arrangement or transposition or not specified', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1002, 'trar', 'a', oils_i18n_gettext('1002', 'Transposition', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1003, 'trar', 'b', oils_i18n_gettext('1003', 'Arrangement', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1004, 'trar', 'c', oils_i18n_gettext('1004', 'Both transposed and arranged', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1005, 'trar', 'n', oils_i18n_gettext('1005', 'Not applicable', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1006, 'trar', 'u', oils_i18n_gettext('1006', 'Unknown', 'ccvm', 'value')); + +-- Country of Publication, etc. +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1007, 'ctry', 'aa ', oils_i18n_gettext('1007', 'Albania ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1008, 'ctry', 'abc', oils_i18n_gettext('1008', 'Alberta ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1009, 'ctry', 'aca', oils_i18n_gettext('1009', 'Australian Capital Territory ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1010, 'ctry', 'ae ', oils_i18n_gettext('1010', 'Algeria ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1011, 'ctry', 'af ', oils_i18n_gettext('1011', 'Afghanistan ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1012, 'ctry', 'ag ', oils_i18n_gettext('1012', 'Argentina ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1013, 'ctry', 'ai ', oils_i18n_gettext('1013', 'Armenia (Republic) ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1014, 'ctry', 'aj ', oils_i18n_gettext('1014', 'Azerbaijan ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1015, 'ctry', 'aku', oils_i18n_gettext('1015', 'Alaska ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1016, 'ctry', 'alu', oils_i18n_gettext('1016', 'Alabama ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1017, 'ctry', 'am ', oils_i18n_gettext('1017', 'Anguilla ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1018, 'ctry', 'an ', oils_i18n_gettext('1018', 'Andorra ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1019, 'ctry', 'ao ', oils_i18n_gettext('1019', 'Angola ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1020, 'ctry', 'aq ', oils_i18n_gettext('1020', 'Antigua and Barbuda ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1021, 'ctry', 'aru', oils_i18n_gettext('1021', 'Arkansas ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1022, 'ctry', 'as ', oils_i18n_gettext('1022', 'American Samoa ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1023, 'ctry', 'at ', oils_i18n_gettext('1023', 'Australia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1024, 'ctry', 'au ', oils_i18n_gettext('1024', 'Austria ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1025, 'ctry', 'aw ', oils_i18n_gettext('1025', 'Aruba ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1026, 'ctry', 'ay ', oils_i18n_gettext('1026', 'Antarctica ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1027, 'ctry', 'azu', oils_i18n_gettext('1027', 'Arizona ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1028, 'ctry', 'ba ', oils_i18n_gettext('1028', 'Bahrain ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1029, 'ctry', 'bb ', oils_i18n_gettext('1029', 'Barbados ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1030, 'ctry', 'bcc', oils_i18n_gettext('1030', 'British Columbia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1031, 'ctry', 'bd ', oils_i18n_gettext('1031', 'Burundi ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1032, 'ctry', 'be ', oils_i18n_gettext('1032', 'Belgium ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1033, 'ctry', 'bf ', oils_i18n_gettext('1033', 'Bahamas ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1034, 'ctry', 'bg ', oils_i18n_gettext('1034', 'Bangladesh ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1035, 'ctry', 'bh ', oils_i18n_gettext('1035', 'Belize ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1036, 'ctry', 'bi ', oils_i18n_gettext('1036', 'British Indian Ocean Territory ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1037, 'ctry', 'bl ', oils_i18n_gettext('1037', 'Brazil ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1038, 'ctry', 'bm ', oils_i18n_gettext('1038', 'Bermuda Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1039, 'ctry', 'bn ', oils_i18n_gettext('1039', 'Bosnia and Herzegovina ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1040, 'ctry', 'bo ', oils_i18n_gettext('1040', 'Bolivia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1041, 'ctry', 'bp ', oils_i18n_gettext('1041', 'Solomon Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1042, 'ctry', 'br ', oils_i18n_gettext('1042', 'Burma ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1043, 'ctry', 'bs ', oils_i18n_gettext('1043', 'Botswana ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1044, 'ctry', 'bt ', oils_i18n_gettext('1044', 'Bhutan ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1045, 'ctry', 'bu ', oils_i18n_gettext('1045', 'Bulgaria ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1046, 'ctry', 'bv ', oils_i18n_gettext('1046', 'Bouvet Island ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1047, 'ctry', 'bw ', oils_i18n_gettext('1047', 'Belarus ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1048, 'ctry', 'bx ', oils_i18n_gettext('1048', 'Brunei ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1049, 'ctry', 'ca ', oils_i18n_gettext('1049', 'Caribbean Netherlands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1050, 'ctry', 'cau', oils_i18n_gettext('1050', 'California ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1051, 'ctry', 'cb ', oils_i18n_gettext('1051', 'Cambodia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1052, 'ctry', 'cc ', oils_i18n_gettext('1052', 'China ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1053, 'ctry', 'cd ', oils_i18n_gettext('1053', 'Chad ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1054, 'ctry', 'ce ', oils_i18n_gettext('1054', 'Sri Lanka ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1055, 'ctry', 'cf ', oils_i18n_gettext('1055', 'Congo (Brazzaville) ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1056, 'ctry', 'cg ', oils_i18n_gettext('1056', 'Congo (Democratic Republic) ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1057, 'ctry', 'ch ', oils_i18n_gettext('1057', 'China (Republic : 1949', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1058, 'ctry', 'ci ', oils_i18n_gettext('1058', 'Croatia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1059, 'ctry', 'cj ', oils_i18n_gettext('1059', 'Cayman Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1060, 'ctry', 'ck ', oils_i18n_gettext('1060', 'Colombia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1061, 'ctry', 'cl ', oils_i18n_gettext('1061', 'Chile ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1062, 'ctry', 'cm ', oils_i18n_gettext('1062', 'Cameroon ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1063, 'ctry', 'co ', oils_i18n_gettext('1063', 'Curaçao ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1064, 'ctry', 'cou', oils_i18n_gettext('1064', 'Colorado ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1065, 'ctry', 'cq ', oils_i18n_gettext('1065', 'Comoros ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1066, 'ctry', 'cr ', oils_i18n_gettext('1066', 'Costa Rica ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1067, 'ctry', 'ctu', oils_i18n_gettext('1067', 'Connecticut ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1068, 'ctry', 'cu ', oils_i18n_gettext('1068', 'Cuba ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1069, 'ctry', 'cv ', oils_i18n_gettext('1069', 'Cabo Verde ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1070, 'ctry', 'cw ', oils_i18n_gettext('1070', 'Cook Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1071, 'ctry', 'cx ', oils_i18n_gettext('1071', 'Central African Republic ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1072, 'ctry', 'cy ', oils_i18n_gettext('1072', 'Cyprus ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1073, 'ctry', 'dcu', oils_i18n_gettext('1073', 'District of Columbia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1074, 'ctry', 'deu', oils_i18n_gettext('1074', 'Delaware ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1075, 'ctry', 'dk ', oils_i18n_gettext('1075', 'Denmark ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1076, 'ctry', 'dm ', oils_i18n_gettext('1076', 'Benin ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1077, 'ctry', 'dq ', oils_i18n_gettext('1077', 'Dominica ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1078, 'ctry', 'dr ', oils_i18n_gettext('1078', 'Dominican Republic ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1079, 'ctry', 'ea ', oils_i18n_gettext('1079', 'Eritrea ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1080, 'ctry', 'ec ', oils_i18n_gettext('1080', 'Ecuador ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1081, 'ctry', 'eg ', oils_i18n_gettext('1081', 'Equatorial Guinea ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1082, 'ctry', 'em ', oils_i18n_gettext('1082', 'Timor', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1083, 'ctry', 'enk', oils_i18n_gettext('1083', 'England ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1084, 'ctry', 'er ', oils_i18n_gettext('1084', 'Estonia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1085, 'ctry', 'es ', oils_i18n_gettext('1085', 'El Salvador ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1086, 'ctry', 'et ', oils_i18n_gettext('1086', 'Ethiopia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1087, 'ctry', 'fa ', oils_i18n_gettext('1087', 'Faroe Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1088, 'ctry', 'fg ', oils_i18n_gettext('1088', 'French Guiana ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1089, 'ctry', 'fi ', oils_i18n_gettext('1089', 'Finland ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1090, 'ctry', 'fj ', oils_i18n_gettext('1090', 'Fiji ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1091, 'ctry', 'fk ', oils_i18n_gettext('1091', 'Falkland Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1092, 'ctry', 'flu', oils_i18n_gettext('1092', 'Florida ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1093, 'ctry', 'fm ', oils_i18n_gettext('1093', 'Micronesia (Federated States) ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1094, 'ctry', 'fp ', oils_i18n_gettext('1094', 'French Polynesia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1095, 'ctry', 'fr ', oils_i18n_gettext('1095', 'France ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1096, 'ctry', 'fs ', oils_i18n_gettext('1096', 'Terres australes et antarctiques françaises ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1097, 'ctry', 'ft ', oils_i18n_gettext('1097', 'Djibouti ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1098, 'ctry', 'gau', oils_i18n_gettext('1098', 'Georgia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1099, 'ctry', 'gb ', oils_i18n_gettext('1099', 'Kiribati ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1100, 'ctry', 'gd ', oils_i18n_gettext('1100', 'Grenada ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1101, 'ctry', 'gh ', oils_i18n_gettext('1101', 'Ghana ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1102, 'ctry', 'gi ', oils_i18n_gettext('1102', 'Gibraltar ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1103, 'ctry', 'gl ', oils_i18n_gettext('1103', 'Greenland ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1104, 'ctry', 'gm ', oils_i18n_gettext('1104', 'Gambia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1105, 'ctry', 'go ', oils_i18n_gettext('1105', 'Gabon ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1106, 'ctry', 'gp ', oils_i18n_gettext('1106', 'Guadeloupe ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1107, 'ctry', 'gr ', oils_i18n_gettext('1107', 'Greece ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1108, 'ctry', 'gs ', oils_i18n_gettext('1108', 'Georgia (Republic) ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1109, 'ctry', 'gt ', oils_i18n_gettext('1109', 'Guatemala ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1110, 'ctry', 'gu ', oils_i18n_gettext('1110', 'Guam ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1111, 'ctry', 'gv ', oils_i18n_gettext('1111', 'Guinea ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1112, 'ctry', 'gw ', oils_i18n_gettext('1112', 'Germany ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1113, 'ctry', 'gy ', oils_i18n_gettext('1113', 'Guyana ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1114, 'ctry', 'gz ', oils_i18n_gettext('1114', 'Gaza Strip ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1115, 'ctry', 'hiu', oils_i18n_gettext('1115', 'Hawaii ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1116, 'ctry', 'hm ', oils_i18n_gettext('1116', 'Heard and McDonald Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1117, 'ctry', 'ho ', oils_i18n_gettext('1117', 'Honduras ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1118, 'ctry', 'ht ', oils_i18n_gettext('1118', 'Haiti ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1119, 'ctry', 'hu ', oils_i18n_gettext('1119', 'Hungary ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1120, 'ctry', 'iau', oils_i18n_gettext('1120', 'Iowa ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1121, 'ctry', 'ic ', oils_i18n_gettext('1121', 'Iceland ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1122, 'ctry', 'idu', oils_i18n_gettext('1122', 'Idaho ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1123, 'ctry', 'ie ', oils_i18n_gettext('1123', 'Ireland ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1124, 'ctry', 'ii ', oils_i18n_gettext('1124', 'India ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1125, 'ctry', 'ilu', oils_i18n_gettext('1125', 'Illinois ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1126, 'ctry', 'inu', oils_i18n_gettext('1126', 'Indiana ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1127, 'ctry', 'io ', oils_i18n_gettext('1127', 'Indonesia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1128, 'ctry', 'iq ', oils_i18n_gettext('1128', 'Iraq ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1129, 'ctry', 'ir ', oils_i18n_gettext('1129', 'Iran ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1130, 'ctry', 'is ', oils_i18n_gettext('1130', 'Israel ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1131, 'ctry', 'it ', oils_i18n_gettext('1131', 'Italy ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1132, 'ctry', 'iv ', oils_i18n_gettext('1132', 'Côte d''Ivoire ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1133, 'ctry', 'iy ', oils_i18n_gettext('1133', 'Iraq', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1134, 'ctry', 'ja ', oils_i18n_gettext('1134', 'Japan ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1135, 'ctry', 'ji ', oils_i18n_gettext('1135', 'Johnston Atoll ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1136, 'ctry', 'jm ', oils_i18n_gettext('1136', 'Jamaica ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1137, 'ctry', 'jo ', oils_i18n_gettext('1137', 'Jordan ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1138, 'ctry', 'ke ', oils_i18n_gettext('1138', 'Kenya ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1139, 'ctry', 'kg ', oils_i18n_gettext('1139', 'Kyrgyzstan ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1140, 'ctry', 'kn ', oils_i18n_gettext('1140', 'Korea (North) ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1141, 'ctry', 'ko ', oils_i18n_gettext('1141', 'Korea (South) ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1142, 'ctry', 'ksu', oils_i18n_gettext('1142', 'Kansas ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1143, 'ctry', 'ku ', oils_i18n_gettext('1143', 'Kuwait ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1144, 'ctry', 'kv ', oils_i18n_gettext('1144', 'Kosovo ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1145, 'ctry', 'kyu', oils_i18n_gettext('1145', 'Kentucky ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1146, 'ctry', 'kz ', oils_i18n_gettext('1146', 'Kazakhstan ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1147, 'ctry', 'lau', oils_i18n_gettext('1147', 'Louisiana ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1148, 'ctry', 'lb ', oils_i18n_gettext('1148', 'Liberia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1149, 'ctry', 'le ', oils_i18n_gettext('1149', 'Lebanon ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1150, 'ctry', 'lh ', oils_i18n_gettext('1150', 'Liechtenstein ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1151, 'ctry', 'li ', oils_i18n_gettext('1151', 'Lithuania ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1152, 'ctry', 'lo ', oils_i18n_gettext('1152', 'Lesotho ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1153, 'ctry', 'ls ', oils_i18n_gettext('1153', 'Laos ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1154, 'ctry', 'lu ', oils_i18n_gettext('1154', 'Luxembourg ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1155, 'ctry', 'lv ', oils_i18n_gettext('1155', 'Latvia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1156, 'ctry', 'ly ', oils_i18n_gettext('1156', 'Libya ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1157, 'ctry', 'mau', oils_i18n_gettext('1157', 'Massachusetts ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1158, 'ctry', 'mbc', oils_i18n_gettext('1158', 'Manitoba ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1159, 'ctry', 'mc ', oils_i18n_gettext('1159', 'Monaco ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1160, 'ctry', 'mdu', oils_i18n_gettext('1160', 'Maryland ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1161, 'ctry', 'meu', oils_i18n_gettext('1161', 'Maine ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1162, 'ctry', 'mf ', oils_i18n_gettext('1162', 'Mauritius ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1163, 'ctry', 'mg ', oils_i18n_gettext('1163', 'Madagascar ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1164, 'ctry', 'miu', oils_i18n_gettext('1164', 'Michigan ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1165, 'ctry', 'mj ', oils_i18n_gettext('1165', 'Montserrat ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1166, 'ctry', 'mk ', oils_i18n_gettext('1166', 'Oman ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1167, 'ctry', 'ml ', oils_i18n_gettext('1167', 'Mali ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1168, 'ctry', 'mm ', oils_i18n_gettext('1168', 'Malta ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1169, 'ctry', 'mnu', oils_i18n_gettext('1169', 'Minnesota ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1170, 'ctry', 'mo ', oils_i18n_gettext('1170', 'Montenegro ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1171, 'ctry', 'mou', oils_i18n_gettext('1171', 'Missouri ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1172, 'ctry', 'mp ', oils_i18n_gettext('1172', 'Mongolia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1173, 'ctry', 'mq ', oils_i18n_gettext('1173', 'Martinique ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1174, 'ctry', 'mr ', oils_i18n_gettext('1174', 'Morocco ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1175, 'ctry', 'msu', oils_i18n_gettext('1175', 'Mississippi ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1176, 'ctry', 'mtu', oils_i18n_gettext('1176', 'Montana ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1177, 'ctry', 'mu ', oils_i18n_gettext('1177', 'Mauritania ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1178, 'ctry', 'mv ', oils_i18n_gettext('1178', 'Moldova ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1179, 'ctry', 'mw ', oils_i18n_gettext('1179', 'Malawi ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1180, 'ctry', 'mx ', oils_i18n_gettext('1180', 'Mexico ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1181, 'ctry', 'my ', oils_i18n_gettext('1181', 'Malaysia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1182, 'ctry', 'mz ', oils_i18n_gettext('1182', 'Mozambique ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1183, 'ctry', 'nbu', oils_i18n_gettext('1183', 'Nebraska ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1184, 'ctry', 'ncu', oils_i18n_gettext('1184', 'North Carolina ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1185, 'ctry', 'ndu', oils_i18n_gettext('1185', 'North Dakota ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1186, 'ctry', 'ne ', oils_i18n_gettext('1186', 'Netherlands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1187, 'ctry', 'nfc', oils_i18n_gettext('1187', 'Newfoundland and Labrador ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1188, 'ctry', 'ng ', oils_i18n_gettext('1188', 'Niger ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1189, 'ctry', 'nhu', oils_i18n_gettext('1189', 'New Hampshire ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1190, 'ctry', 'nik', oils_i18n_gettext('1190', 'Northern Ireland ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1191, 'ctry', 'nju', oils_i18n_gettext('1191', 'New Jersey ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1192, 'ctry', 'nkc', oils_i18n_gettext('1192', 'New Brunswick ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1193, 'ctry', 'nl ', oils_i18n_gettext('1193', 'New Caledonia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1194, 'ctry', 'nmu', oils_i18n_gettext('1194', 'New Mexico ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1195, 'ctry', 'nn ', oils_i18n_gettext('1195', 'Vanuatu ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1196, 'ctry', 'no ', oils_i18n_gettext('1196', 'Norway ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1197, 'ctry', 'np ', oils_i18n_gettext('1197', 'Nepal ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1198, 'ctry', 'nq ', oils_i18n_gettext('1198', 'Nicaragua ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1199, 'ctry', 'nr ', oils_i18n_gettext('1199', 'Nigeria ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1200, 'ctry', 'nsc', oils_i18n_gettext('1200', 'Nova Scotia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1201, 'ctry', 'ntc', oils_i18n_gettext('1201', 'Northwest Territories ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1202, 'ctry', 'nu ', oils_i18n_gettext('1202', 'Nauru ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1203, 'ctry', 'nuc', oils_i18n_gettext('1203', 'Nunavut ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1204, 'ctry', 'nvu', oils_i18n_gettext('1204', 'Nevada ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1205, 'ctry', 'nw ', oils_i18n_gettext('1205', 'Northern Mariana Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1206, 'ctry', 'nx ', oils_i18n_gettext('1206', 'Norfolk Island ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1207, 'ctry', 'nyu', oils_i18n_gettext('1207', 'New York (State) ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1208, 'ctry', 'nz ', oils_i18n_gettext('1208', 'New Zealand ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1209, 'ctry', 'ohu', oils_i18n_gettext('1209', 'Ohio ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1210, 'ctry', 'oku', oils_i18n_gettext('1210', 'Oklahoma ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1211, 'ctry', 'onc', oils_i18n_gettext('1211', 'Ontario ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1212, 'ctry', 'oru', oils_i18n_gettext('1212', 'Oregon ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1213, 'ctry', 'ot ', oils_i18n_gettext('1213', 'Mayotte ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1214, 'ctry', 'pau', oils_i18n_gettext('1214', 'Pennsylvania ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1215, 'ctry', 'pc ', oils_i18n_gettext('1215', 'Pitcairn Island ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1216, 'ctry', 'pe ', oils_i18n_gettext('1216', 'Peru ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1217, 'ctry', 'pf ', oils_i18n_gettext('1217', 'Paracel Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1218, 'ctry', 'pg ', oils_i18n_gettext('1218', 'Guinea', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1219, 'ctry', 'ph ', oils_i18n_gettext('1219', 'Philippines ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1220, 'ctry', 'pic', oils_i18n_gettext('1220', 'Prince Edward Island ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1221, 'ctry', 'pk ', oils_i18n_gettext('1221', 'Pakistan ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1222, 'ctry', 'pl ', oils_i18n_gettext('1222', 'Poland ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1223, 'ctry', 'pn ', oils_i18n_gettext('1223', 'Panama ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1224, 'ctry', 'po ', oils_i18n_gettext('1224', 'Portugal ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1225, 'ctry', 'pp ', oils_i18n_gettext('1225', 'Papua New Guinea ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1226, 'ctry', 'pr ', oils_i18n_gettext('1226', 'Puerto Rico ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1227, 'ctry', 'pw ', oils_i18n_gettext('1227', 'Palau ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1228, 'ctry', 'py ', oils_i18n_gettext('1228', 'Paraguay ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1229, 'ctry', 'qa ', oils_i18n_gettext('1229', 'Qatar ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1230, 'ctry', 'qea', oils_i18n_gettext('1230', 'Queensland ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1231, 'ctry', 'quc', oils_i18n_gettext('1231', 'Québec (Province) ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1232, 'ctry', 'rb ', oils_i18n_gettext('1232', 'Serbia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1233, 'ctry', 're ', oils_i18n_gettext('1233', 'Réunion ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1234, 'ctry', 'rh ', oils_i18n_gettext('1234', 'Zimbabwe ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1235, 'ctry', 'riu', oils_i18n_gettext('1235', 'Rhode Island ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1236, 'ctry', 'rm ', oils_i18n_gettext('1236', 'Romania ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1237, 'ctry', 'ru ', oils_i18n_gettext('1237', 'Russia (Federation) ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1238, 'ctry', 'rw ', oils_i18n_gettext('1238', 'Rwanda ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1239, 'ctry', 'sa ', oils_i18n_gettext('1239', 'South Africa ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1240, 'ctry', 'sc ', oils_i18n_gettext('1240', 'Saint', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1241, 'ctry', 'scu', oils_i18n_gettext('1241', 'South Carolina ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1242, 'ctry', 'sd ', oils_i18n_gettext('1242', 'South Sudan ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1243, 'ctry', 'sdu', oils_i18n_gettext('1243', 'South Dakota ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1244, 'ctry', 'se ', oils_i18n_gettext('1244', 'Seychelles ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1245, 'ctry', 'sf ', oils_i18n_gettext('1245', 'Sao Tome and Principe ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1246, 'ctry', 'sg ', oils_i18n_gettext('1246', 'Senegal ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1247, 'ctry', 'sh ', oils_i18n_gettext('1247', 'Spanish North Africa ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1248, 'ctry', 'si ', oils_i18n_gettext('1248', 'Singapore ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1249, 'ctry', 'sj ', oils_i18n_gettext('1249', 'Sudan ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1250, 'ctry', 'sl ', oils_i18n_gettext('1250', 'Sierra Leone ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1251, 'ctry', 'sm ', oils_i18n_gettext('1251', 'San Marino ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1252, 'ctry', 'sn ', oils_i18n_gettext('1252', 'Sint Maarten ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1253, 'ctry', 'snc', oils_i18n_gettext('1253', 'Saskatchewan ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1254, 'ctry', 'so ', oils_i18n_gettext('1254', 'Somalia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1255, 'ctry', 'sp ', oils_i18n_gettext('1255', 'Spain ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1256, 'ctry', 'sq ', oils_i18n_gettext('1256', 'Swaziland ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1257, 'ctry', 'sr ', oils_i18n_gettext('1257', 'Surinam ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1258, 'ctry', 'ss ', oils_i18n_gettext('1258', 'Western Sahara ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1259, 'ctry', 'st ', oils_i18n_gettext('1259', 'Saint', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1260, 'ctry', 'stk', oils_i18n_gettext('1260', 'Scotland ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1261, 'ctry', 'su ', oils_i18n_gettext('1261', 'Saudi Arabia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1262, 'ctry', 'sw ', oils_i18n_gettext('1262', 'Sweden ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1263, 'ctry', 'sx ', oils_i18n_gettext('1263', 'Namibia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1264, 'ctry', 'sy ', oils_i18n_gettext('1264', 'Syria ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1265, 'ctry', 'sz ', oils_i18n_gettext('1265', 'Switzerland ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1266, 'ctry', 'ta ', oils_i18n_gettext('1266', 'Tajikistan ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1267, 'ctry', 'tc ', oils_i18n_gettext('1267', 'Turks and Caicos Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1268, 'ctry', 'tg ', oils_i18n_gettext('1268', 'Togo ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1269, 'ctry', 'th ', oils_i18n_gettext('1269', 'Thailand ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1270, 'ctry', 'ti ', oils_i18n_gettext('1270', 'Tunisia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1271, 'ctry', 'tk ', oils_i18n_gettext('1271', 'Turkmenistan ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1272, 'ctry', 'tl ', oils_i18n_gettext('1272', 'Tokelau ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1273, 'ctry', 'tma', oils_i18n_gettext('1273', 'Tasmania ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1274, 'ctry', 'tnu', oils_i18n_gettext('1274', 'Tennessee ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1275, 'ctry', 'to ', oils_i18n_gettext('1275', 'Tonga ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1276, 'ctry', 'tr ', oils_i18n_gettext('1276', 'Trinidad and Tobago ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1277, 'ctry', 'ts ', oils_i18n_gettext('1277', 'United Arab Emirates ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1278, 'ctry', 'tu ', oils_i18n_gettext('1278', 'Turkey ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1279, 'ctry', 'tv ', oils_i18n_gettext('1279', 'Tuvalu ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1280, 'ctry', 'txu', oils_i18n_gettext('1280', 'Texas ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1281, 'ctry', 'tz ', oils_i18n_gettext('1281', 'Tanzania ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1282, 'ctry', 'ua ', oils_i18n_gettext('1282', 'Egypt ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1283, 'ctry', 'uc ', oils_i18n_gettext('1283', 'United States Misc. Caribbean Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1284, 'ctry', 'ug ', oils_i18n_gettext('1284', 'Uganda ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1285, 'ctry', 'uik', oils_i18n_gettext('1285', 'United Kingdom Misc. Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1286, 'ctry', 'un ', oils_i18n_gettext('1286', 'Ukraine ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1287, 'ctry', 'up ', oils_i18n_gettext('1287', 'United States Misc. Pacific Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1288, 'ctry', 'utu', oils_i18n_gettext('1288', 'Utah ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1289, 'ctry', 'uv ', oils_i18n_gettext('1289', 'Burkina Faso ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1290, 'ctry', 'uy ', oils_i18n_gettext('1290', 'Uruguay ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1291, 'ctry', 'uz ', oils_i18n_gettext('1291', 'Uzbekistan ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1292, 'ctry', 'vau', oils_i18n_gettext('1292', 'Virginia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1293, 'ctry', 'vb ', oils_i18n_gettext('1293', 'British Virgin Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1294, 'ctry', 'vc ', oils_i18n_gettext('1294', 'Vatican City ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1295, 'ctry', 've ', oils_i18n_gettext('1295', 'Venezuela ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1296, 'ctry', 'vi ', oils_i18n_gettext('1296', 'Virgin Islands of the United States ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1297, 'ctry', 'vm ', oils_i18n_gettext('1297', 'Vietnam ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1298, 'ctry', 'vp ', oils_i18n_gettext('1298', 'Various places ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1299, 'ctry', 'vra', oils_i18n_gettext('1299', 'Victoria ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1300, 'ctry', 'vtu', oils_i18n_gettext('1300', 'Vermont ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1301, 'ctry', 'wau', oils_i18n_gettext('1301', 'Washington (State) ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1302, 'ctry', 'wea', oils_i18n_gettext('1302', 'Western Australia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1303, 'ctry', 'wf ', oils_i18n_gettext('1303', 'Wallis and Futuna ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1304, 'ctry', 'wiu', oils_i18n_gettext('1304', 'Wisconsin ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1305, 'ctry', 'wj ', oils_i18n_gettext('1305', 'West Bank of the Jordan River ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1306, 'ctry', 'wk ', oils_i18n_gettext('1306', 'Wake Island ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1307, 'ctry', 'wlk', oils_i18n_gettext('1307', 'Wales ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1308, 'ctry', 'ws ', oils_i18n_gettext('1308', 'Samoa ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1309, 'ctry', 'wvu', oils_i18n_gettext('1309', 'West Virginia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1310, 'ctry', 'wyu', oils_i18n_gettext('1310', 'Wyoming ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1311, 'ctry', 'xa ', oils_i18n_gettext('1311', 'Christmas Island (Indian Ocean) ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1312, 'ctry', 'xb ', oils_i18n_gettext('1312', 'Cocos (Keeling) Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1313, 'ctry', 'xc ', oils_i18n_gettext('1313', 'Maldives ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1314, 'ctry', 'xd ', oils_i18n_gettext('1314', 'Saint Kitts', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1315, 'ctry', 'xe ', oils_i18n_gettext('1315', 'Marshall Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1316, 'ctry', 'xf ', oils_i18n_gettext('1316', 'Midway Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1317, 'ctry', 'xga', oils_i18n_gettext('1317', 'Coral Sea Islands Territory ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1318, 'ctry', 'xh ', oils_i18n_gettext('1318', 'Niue ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1319, 'ctry', 'xj ', oils_i18n_gettext('1319', 'Saint Helena ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1320, 'ctry', 'xk ', oils_i18n_gettext('1320', 'Saint Lucia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1321, 'ctry', 'xl ', oils_i18n_gettext('1321', 'Saint Pierre and Miquelon ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1322, 'ctry', 'xm ', oils_i18n_gettext('1322', 'Saint Vincent and the Grenadines ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1323, 'ctry', 'xn ', oils_i18n_gettext('1323', 'Macedonia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1324, 'ctry', 'xna', oils_i18n_gettext('1324', 'New South Wales ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1325, 'ctry', 'xo ', oils_i18n_gettext('1325', 'Slovakia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1326, 'ctry', 'xoa', oils_i18n_gettext('1326', 'Northern Territory ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1327, 'ctry', 'xp ', oils_i18n_gettext('1327', 'Spratly Island ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1328, 'ctry', 'xr ', oils_i18n_gettext('1328', 'Czech Republic ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1329, 'ctry', 'xra', oils_i18n_gettext('1329', 'South Australia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1330, 'ctry', 'xs ', oils_i18n_gettext('1330', 'South Georgia and the South Sandwich Islands ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1331, 'ctry', 'xv ', oils_i18n_gettext('1331', 'Slovenia ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1332, 'ctry', 'xx ', oils_i18n_gettext('1332', 'No place, unknown, or undetermined ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1333, 'ctry', 'xxc', oils_i18n_gettext('1333', 'Canada ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1334, 'ctry', 'xxk', oils_i18n_gettext('1334', 'United Kingdom ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1335, 'ctry', 'xxu', oils_i18n_gettext('1335', 'United States ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1336, 'ctry', 'ye ', oils_i18n_gettext('1336', 'Yemen ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1337, 'ctry', 'ykc', oils_i18n_gettext('1337', 'Yukon Territory ', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1338, 'ctry', 'za ', oils_i18n_gettext('1338', 'Zambia ', 'ccvm', 'value')); + +-- Type of Date/Publication Status +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1339, 'pub_status', 'b', oils_i18n_gettext('1339', 'No dates given; B.C. date involved', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1340, 'pub_status', 'c', oils_i18n_gettext('1340', 'Continuing resource currently published', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1341, 'pub_status', 'd', oils_i18n_gettext('1341', 'Continuing resource ceased publication', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1342, 'pub_status', 'e', oils_i18n_gettext('1342', 'Detailed date', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1343, 'pub_status', 'i', oils_i18n_gettext('1343', 'Inclusive dates of collection', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1344, 'pub_status', 'k', oils_i18n_gettext('1344', 'Range of years of bulk of collection', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1345, 'pub_status', 'm', oils_i18n_gettext('1345', 'Multiple dates', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1346, 'pub_status', 'n', oils_i18n_gettext('1346', 'Dates unknown', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1347, 'pub_status', 'p', oils_i18n_gettext('1347', 'Date of distribution/release/issue and production/recording session when different', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1348, 'pub_status', 'q', oils_i18n_gettext('1348', 'Questionable date', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1349, 'pub_status', 'r', oils_i18n_gettext('1349', 'Reprint/reissue date and original date', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1350, 'pub_status', 's', oils_i18n_gettext('1350', 'Single known date/probable date', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1351, 'pub_status', 't', oils_i18n_gettext('1351', 'Publication date and copyright date', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1352, 'pub_status', 'u', oils_i18n_gettext('1352', 'Continuing resource status unknown', 'ccvm', 'value')); + + +-- These are fixed fields that are made up of multiple single-character codes. These are the actual fields used for the individual positions, +-- the "unnumbered" version of these fields are used for the MARC editor and as composite attributes for use in the OPAC if desired. +-- i18n ids are left as-is because they are exactly the same value. +-- The ' ' codes only apply to the first position because if there's anything in pos 1 then additional spaces are just filler. +-- There's also no need for them to be opac visible because there are composite attributes that OR these numbered attributes together. +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1353, 'accm1', ' ', oils_i18n_gettext('1735', 'No accompanying matter', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1354, 'accm1', 'a', oils_i18n_gettext('713', 'Discography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1355, 'accm1', 'b', oils_i18n_gettext('714', 'Bibliography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1356, 'accm1', 'c', oils_i18n_gettext('715', 'Thematic index', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1357, 'accm1', 'd', oils_i18n_gettext('716', 'Libretto or text', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1358, 'accm1', 'e', oils_i18n_gettext('717', 'Biography of composer or author', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1359, 'accm1', 'f', oils_i18n_gettext('718', 'Biography or performer or history of ensemble', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1360, 'accm1', 'g', oils_i18n_gettext('719', 'Technical and/or historical information on instruments', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1361, 'accm1', 'h', oils_i18n_gettext('720', 'Technical information on music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1362, 'accm1', 'i', oils_i18n_gettext('721', 'Historical information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1363, 'accm1', 'k', oils_i18n_gettext('722', 'Ethnological information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1364, 'accm1', 'r', oils_i18n_gettext('723', 'Instructional materials', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1365, 'accm1', 's', oils_i18n_gettext('724', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1366, 'accm1', 'z', oils_i18n_gettext('725', 'Other accompanying matter', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1367, 'accm2', 'a', oils_i18n_gettext('713', 'Discography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1368, 'accm2', 'b', oils_i18n_gettext('714', 'Bibliography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1369, 'accm2', 'c', oils_i18n_gettext('715', 'Thematic index', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1370, 'accm2', 'd', oils_i18n_gettext('716', 'Libretto or text', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1371, 'accm2', 'e', oils_i18n_gettext('717', 'Biography of composer or author', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1372, 'accm2', 'f', oils_i18n_gettext('718', 'Biography or performer or history of ensemble', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1373, 'accm2', 'g', oils_i18n_gettext('719', 'Technical and/or historical information on instruments', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1374, 'accm2', 'h', oils_i18n_gettext('720', 'Technical information on music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1375, 'accm2', 'i', oils_i18n_gettext('721', 'Historical information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1376, 'accm2', 'k', oils_i18n_gettext('722', 'Ethnological information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1377, 'accm2', 'r', oils_i18n_gettext('723', 'Instructional materials', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1378, 'accm2', 's', oils_i18n_gettext('724', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1379, 'accm2', 'z', oils_i18n_gettext('725', 'Other accompanying matter', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1380, 'accm3', 'a', oils_i18n_gettext('713', 'Discography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1381, 'accm3', 'b', oils_i18n_gettext('714', 'Bibliography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1382, 'accm3', 'c', oils_i18n_gettext('715', 'Thematic index', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1383, 'accm3', 'd', oils_i18n_gettext('716', 'Libretto or text', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1384, 'accm3', 'e', oils_i18n_gettext('717', 'Biography of composer or author', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1385, 'accm3', 'f', oils_i18n_gettext('718', 'Biography or performer or history of ensemble', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1386, 'accm3', 'g', oils_i18n_gettext('719', 'Technical and/or historical information on instruments', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1387, 'accm3', 'h', oils_i18n_gettext('720', 'Technical information on music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1388, 'accm3', 'i', oils_i18n_gettext('721', 'Historical information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1389, 'accm3', 'k', oils_i18n_gettext('722', 'Ethnological information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1390, 'accm3', 'r', oils_i18n_gettext('723', 'Instructional materials', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1391, 'accm3', 's', oils_i18n_gettext('724', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1392, 'accm3', 'z', oils_i18n_gettext('725', 'Other accompanying matter', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1393, 'accm4', 'a', oils_i18n_gettext('713', 'Discography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1394, 'accm4', 'b', oils_i18n_gettext('714', 'Bibliography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1395, 'accm4', 'c', oils_i18n_gettext('715', 'Thematic index', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1396, 'accm4', 'd', oils_i18n_gettext('716', 'Libretto or text', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1397, 'accm4', 'e', oils_i18n_gettext('717', 'Biography of composer or author', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1398, 'accm4', 'f', oils_i18n_gettext('718', 'Biography or performer or history of ensemble', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1399, 'accm4', 'g', oils_i18n_gettext('719', 'Technical and/or historical information on instruments', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1400, 'accm4', 'h', oils_i18n_gettext('720', 'Technical information on music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1401, 'accm4', 'i', oils_i18n_gettext('721', 'Historical information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1402, 'accm4', 'k', oils_i18n_gettext('722', 'Ethnological information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1403, 'accm4', 'r', oils_i18n_gettext('723', 'Instructional materials', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1404, 'accm4', 's', oils_i18n_gettext('724', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1405, 'accm4', 'z', oils_i18n_gettext('725', 'Other accompanying matter', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1406, 'accm5', 'a', oils_i18n_gettext('713', 'Discography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1407, 'accm5', 'b', oils_i18n_gettext('714', 'Bibliography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1408, 'accm5', 'c', oils_i18n_gettext('715', 'Thematic index', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1409, 'accm5', 'd', oils_i18n_gettext('716', 'Libretto or text', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1410, 'accm5', 'e', oils_i18n_gettext('717', 'Biography of composer or author', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1411, 'accm5', 'f', oils_i18n_gettext('718', 'Biography or performer or history of ensemble', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1412, 'accm5', 'g', oils_i18n_gettext('719', 'Technical and/or historical information on instruments', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1413, 'accm5', 'h', oils_i18n_gettext('720', 'Technical information on music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1414, 'accm5', 'i', oils_i18n_gettext('721', 'Historical information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1415, 'accm5', 'k', oils_i18n_gettext('722', 'Ethnological information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1416, 'accm5', 'r', oils_i18n_gettext('723', 'Instructional materials', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1417, 'accm5', 's', oils_i18n_gettext('724', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1418, 'accm5', 'z', oils_i18n_gettext('725', 'Other accompanying matter', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1419, 'accm6', 'a', oils_i18n_gettext('713', 'Discography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1420, 'accm6', 'b', oils_i18n_gettext('714', 'Bibliography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1421, 'accm6', 'c', oils_i18n_gettext('715', 'Thematic index', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1422, 'accm6', 'd', oils_i18n_gettext('716', 'Libretto or text', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1423, 'accm6', 'e', oils_i18n_gettext('717', 'Biography of composer or author', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1424, 'accm6', 'f', oils_i18n_gettext('718', 'Biography or performer or history of ensemble', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1425, 'accm6', 'g', oils_i18n_gettext('719', 'Technical and/or historical information on instruments', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1426, 'accm6', 'h', oils_i18n_gettext('720', 'Technical information on music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1427, 'accm6', 'i', oils_i18n_gettext('721', 'Historical information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1428, 'accm6', 'k', oils_i18n_gettext('722', 'Ethnological information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1429, 'accm6', 'r', oils_i18n_gettext('723', 'Instructional materials', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1430, 'accm6', 's', oils_i18n_gettext('724', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1431, 'accm6', 'z', oils_i18n_gettext('725', 'Other accompanying matter', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1432, 'cont1', ' ', oils_i18n_gettext('835', 'Not specified', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1433, 'cont1', 'a', oils_i18n_gettext('836', 'Abstracts/summaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1434, 'cont1', 'b', oils_i18n_gettext('837', 'Bibliographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1435, 'cont1', 'c', oils_i18n_gettext('838', 'Catalogs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1436, 'cont1', 'd', oils_i18n_gettext('839', 'Dictionaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1437, 'cont1', 'e', oils_i18n_gettext('840', 'Encyclopedias', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1438, 'cont1', 'f', oils_i18n_gettext('841', 'Handbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1439, 'cont1', 'g', oils_i18n_gettext('842', 'Legal articles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1440, 'cont1', 'h', oils_i18n_gettext('843', 'Biography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1441, 'cont1', 'i', oils_i18n_gettext('844', 'Indexes', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1442, 'cont1', 'j', oils_i18n_gettext('845', 'Patent document', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1443, 'cont1', 'k', oils_i18n_gettext('846', 'Discographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1444, 'cont1', 'l', oils_i18n_gettext('847', 'Legislation', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1445, 'cont1', 'm', oils_i18n_gettext('848', 'Theses', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1446, 'cont1', 'n', oils_i18n_gettext('849', 'Surveys of the literature in a subject area', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1447, 'cont1', 'o', oils_i18n_gettext('850', 'Reviews', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1448, 'cont1', 'p', oils_i18n_gettext('851', 'Programmed texts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1449, 'cont1', 'q', oils_i18n_gettext('852', 'Filmographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1450, 'cont1', 'r', oils_i18n_gettext('853', 'Directories', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1451, 'cont1', 's', oils_i18n_gettext('854', 'Statistics', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1452, 'cont1', 't', oils_i18n_gettext('855', 'Technical reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1453, 'cont1', 'u', oils_i18n_gettext('856', 'Standards/specifications', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1454, 'cont1', 'v', oils_i18n_gettext('857', 'Legal cases and case notes', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1455, 'cont1', 'w', oils_i18n_gettext('858', 'Law reports and digests', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1456, 'cont1', 'x', oils_i18n_gettext('859', 'Other reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1457, 'cont1', 'y', oils_i18n_gettext('860', 'Yearbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1458, 'cont1', 'z', oils_i18n_gettext('861', 'Treaties', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1459, 'cont1', '2', oils_i18n_gettext('862', 'Offprints', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1460, 'cont1', '5', oils_i18n_gettext('863', 'Calendars', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1461, 'cont1', '6', oils_i18n_gettext('864', 'Comics/graphic novels', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1462, 'cont2', 'a', oils_i18n_gettext('836', 'Abstracts/summaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1463, 'cont2', 'b', oils_i18n_gettext('837', 'Bibliographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1464, 'cont2', 'c', oils_i18n_gettext('838', 'Catalogs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1465, 'cont2', 'd', oils_i18n_gettext('839', 'Dictionaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1466, 'cont2', 'e', oils_i18n_gettext('840', 'Encyclopedias', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1467, 'cont2', 'f', oils_i18n_gettext('841', 'Handbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1468, 'cont2', 'g', oils_i18n_gettext('842', 'Legal articles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1469, 'cont2', 'h', oils_i18n_gettext('843', 'Biography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1470, 'cont2', 'i', oils_i18n_gettext('844', 'Indexes', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1471, 'cont2', 'j', oils_i18n_gettext('845', 'Patent document', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1472, 'cont2', 'k', oils_i18n_gettext('846', 'Discographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1473, 'cont2', 'l', oils_i18n_gettext('847', 'Legislation', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1474, 'cont2', 'm', oils_i18n_gettext('848', 'Theses', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1475, 'cont2', 'n', oils_i18n_gettext('849', 'Surveys of the literature in a subject area', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1476, 'cont2', 'o', oils_i18n_gettext('850', 'Reviews', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1477, 'cont2', 'p', oils_i18n_gettext('851', 'Programmed texts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1478, 'cont2', 'q', oils_i18n_gettext('852', 'Filmographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1479, 'cont2', 'r', oils_i18n_gettext('853', 'Directories', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1480, 'cont2', 's', oils_i18n_gettext('854', 'Statistics', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1481, 'cont2', 't', oils_i18n_gettext('855', 'Technical reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1482, 'cont2', 'u', oils_i18n_gettext('856', 'Standards/specifications', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1483, 'cont2', 'v', oils_i18n_gettext('857', 'Legal cases and case notes', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1484, 'cont2', 'w', oils_i18n_gettext('858', 'Law reports and digests', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1485, 'cont2', 'x', oils_i18n_gettext('859', 'Other reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1486, 'cont2', 'y', oils_i18n_gettext('860', 'Yearbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1487, 'cont2', 'z', oils_i18n_gettext('861', 'Treaties', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1488, 'cont2', '2', oils_i18n_gettext('862', 'Offprints', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1489, 'cont2', '5', oils_i18n_gettext('863', 'Calendars', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1490, 'cont2', '6', oils_i18n_gettext('864', 'Comics/graphic novels', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1491, 'cont3', 'a', oils_i18n_gettext('836', 'Abstracts/summaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1492, 'cont3', 'b', oils_i18n_gettext('837', 'Bibliographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1493, 'cont3', 'c', oils_i18n_gettext('838', 'Catalogs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1494, 'cont3', 'd', oils_i18n_gettext('839', 'Dictionaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1495, 'cont3', 'e', oils_i18n_gettext('840', 'Encyclopedias', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1496, 'cont3', 'f', oils_i18n_gettext('841', 'Handbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1497, 'cont3', 'g', oils_i18n_gettext('842', 'Legal articles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1498, 'cont3', 'h', oils_i18n_gettext('843', 'Biography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1499, 'cont3', 'i', oils_i18n_gettext('844', 'Indexes', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1500, 'cont3', 'j', oils_i18n_gettext('845', 'Patent document', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1501, 'cont3', 'k', oils_i18n_gettext('846', 'Discographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1502, 'cont3', 'l', oils_i18n_gettext('847', 'Legislation', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1503, 'cont3', 'm', oils_i18n_gettext('848', 'Theses', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1504, 'cont3', 'n', oils_i18n_gettext('849', 'Surveys of the literature in a subject area', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1505, 'cont3', 'o', oils_i18n_gettext('850', 'Reviews', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1506, 'cont3', 'p', oils_i18n_gettext('851', 'Programmed texts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1507, 'cont3', 'q', oils_i18n_gettext('852', 'Filmographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1508, 'cont3', 'r', oils_i18n_gettext('853', 'Directories', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1509, 'cont3', 's', oils_i18n_gettext('854', 'Statistics', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1510, 'cont3', 't', oils_i18n_gettext('855', 'Technical reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1511, 'cont3', 'u', oils_i18n_gettext('856', 'Standards/specifications', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1512, 'cont3', 'v', oils_i18n_gettext('857', 'Legal cases and case notes', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1513, 'cont3', 'w', oils_i18n_gettext('858', 'Law reports and digests', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1514, 'cont3', 'x', oils_i18n_gettext('859', 'Other reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1515, 'cont3', 'y', oils_i18n_gettext('860', 'Yearbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1516, 'cont3', 'z', oils_i18n_gettext('861', 'Treaties', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1517, 'cont3', '2', oils_i18n_gettext('862', 'Offprints', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1518, 'cont3', '5', oils_i18n_gettext('863', 'Calendars', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1519, 'cont3', '6', oils_i18n_gettext('864', 'Comics/graphic novels', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1520, 'cont4', 'a', oils_i18n_gettext('836', 'Abstracts/summaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1521, 'cont4', 'b', oils_i18n_gettext('837', 'Bibliographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1522, 'cont4', 'c', oils_i18n_gettext('838', 'Catalogs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1523, 'cont4', 'd', oils_i18n_gettext('839', 'Dictionaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1524, 'cont4', 'e', oils_i18n_gettext('840', 'Encyclopedias', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1525, 'cont4', 'f', oils_i18n_gettext('841', 'Handbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1526, 'cont4', 'g', oils_i18n_gettext('842', 'Legal articles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1527, 'cont4', 'h', oils_i18n_gettext('843', 'Biography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1528, 'cont4', 'i', oils_i18n_gettext('844', 'Indexes', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1529, 'cont4', 'j', oils_i18n_gettext('845', 'Patent document', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1530, 'cont4', 'k', oils_i18n_gettext('846', 'Discographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1531, 'cont4', 'l', oils_i18n_gettext('847', 'Legislation', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1532, 'cont4', 'm', oils_i18n_gettext('848', 'Theses', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1533, 'cont4', 'n', oils_i18n_gettext('849', 'Surveys of the literature in a subject area', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1534, 'cont4', 'o', oils_i18n_gettext('850', 'Reviews', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1535, 'cont4', 'p', oils_i18n_gettext('851', 'Programmed texts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1536, 'cont4', 'q', oils_i18n_gettext('852', 'Filmographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1537, 'cont4', 'r', oils_i18n_gettext('853', 'Directories', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1538, 'cont4', 's', oils_i18n_gettext('854', 'Statistics', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1539, 'cont4', 't', oils_i18n_gettext('855', 'Technical reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1540, 'cont4', 'u', oils_i18n_gettext('856', 'Standards/specifications', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1541, 'cont4', 'v', oils_i18n_gettext('857', 'Legal cases and case notes', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1542, 'cont4', 'w', oils_i18n_gettext('858', 'Law reports and digests', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1543, 'cont4', 'x', oils_i18n_gettext('859', 'Other reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1544, 'cont4', 'y', oils_i18n_gettext('860', 'Yearbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1545, 'cont4', 'z', oils_i18n_gettext('861', 'Treaties', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1546, 'cont4', '2', oils_i18n_gettext('862', 'Offprints', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1547, 'cont4', '5', oils_i18n_gettext('863', 'Calendars', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1548, 'cont4', '6', oils_i18n_gettext('864', 'Comics/graphic novels', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1549, 'ltxt1', ' ', oils_i18n_gettext('881', 'Item is a music sound recording', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1550, 'ltxt1', 'a', oils_i18n_gettext('882', 'Autobiography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1551, 'ltxt1', 'b', oils_i18n_gettext('883', 'Biography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1552, 'ltxt1', 'c', oils_i18n_gettext('884', 'Conference proceedings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1553, 'ltxt1', 'd', oils_i18n_gettext('885', 'Drama', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1554, 'ltxt1', 'e', oils_i18n_gettext('886', 'Essays', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1555, 'ltxt1', 'f', oils_i18n_gettext('887', 'Fiction', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1556, 'ltxt1', 'g', oils_i18n_gettext('888', 'Reporting', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1557, 'ltxt1', 'h', oils_i18n_gettext('889', 'History', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1558, 'ltxt1', 'i', oils_i18n_gettext('890', 'Instruction', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1559, 'ltxt1', 'j', oils_i18n_gettext('891', 'Language instruction', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1560, 'ltxt1', 'k', oils_i18n_gettext('892', 'Comedy', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1561, 'ltxt1', 'l', oils_i18n_gettext('893', 'Lectures, speeches', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1562, 'ltxt1', 'm', oils_i18n_gettext('894', 'Memoirs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1563, 'ltxt1', 'n', oils_i18n_gettext('895', 'Not applicable', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1564, 'ltxt1', 'o', oils_i18n_gettext('896', 'Folktales', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1565, 'ltxt1', 'p', oils_i18n_gettext('897', 'Poetry', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1566, 'ltxt1', 'r', oils_i18n_gettext('898', 'Rehearsals', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1567, 'ltxt1', 's', oils_i18n_gettext('899', 'Sounds', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1568, 'ltxt1', 't', oils_i18n_gettext('900', 'Interviews', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1569, 'ltxt1', 'z', oils_i18n_gettext('901', 'Other', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1570, 'ltxt2', 'a', oils_i18n_gettext('882', 'Autobiography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1571, 'ltxt2', 'b', oils_i18n_gettext('883', 'Biography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1572, 'ltxt2', 'c', oils_i18n_gettext('884', 'Conference proceedings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1573, 'ltxt2', 'd', oils_i18n_gettext('885', 'Drama', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1574, 'ltxt2', 'e', oils_i18n_gettext('886', 'Essays', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1575, 'ltxt2', 'f', oils_i18n_gettext('887', 'Fiction', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1576, 'ltxt2', 'g', oils_i18n_gettext('888', 'Reporting', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1577, 'ltxt2', 'h', oils_i18n_gettext('889', 'History', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1578, 'ltxt2', 'i', oils_i18n_gettext('890', 'Instruction', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1579, 'ltxt2', 'j', oils_i18n_gettext('891', 'Language instruction', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1580, 'ltxt2', 'k', oils_i18n_gettext('892', 'Comedy', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1581, 'ltxt2', 'l', oils_i18n_gettext('893', 'Lectures, speeches', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1582, 'ltxt2', 'm', oils_i18n_gettext('894', 'Memoirs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1583, 'ltxt2', 'n', oils_i18n_gettext('895', 'Not applicable', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1584, 'ltxt2', 'o', oils_i18n_gettext('896', 'Folktales', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1585, 'ltxt2', 'p', oils_i18n_gettext('897', 'Poetry', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1586, 'ltxt2', 'r', oils_i18n_gettext('898', 'Rehearsals', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1587, 'ltxt2', 's', oils_i18n_gettext('899', 'Sounds', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1588, 'ltxt2', 't', oils_i18n_gettext('900', 'Interviews', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1589, 'ltxt2', 'z', oils_i18n_gettext('901', 'Other', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1590, 'relf1', ' ', oils_i18n_gettext('965', 'No relief shown', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1591, 'relf1', 'a', oils_i18n_gettext('966', 'Contours', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1592, 'relf1', 'b', oils_i18n_gettext('967', 'Shading', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1593, 'relf1', 'c', oils_i18n_gettext('968', 'Gradient and bathymetric tints', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1594, 'relf1', 'd', oils_i18n_gettext('969', 'Hachures', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1595, 'relf1', 'e', oils_i18n_gettext('970', 'Bathymetry, soundings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1596, 'relf1', 'f', oils_i18n_gettext('971', 'Form lines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1597, 'relf1', 'g', oils_i18n_gettext('972', 'Spot heights', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1598, 'relf1', 'i', oils_i18n_gettext('973', 'Pictorially', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1599, 'relf1', 'j', oils_i18n_gettext('974', 'Land forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1600, 'relf1', 'k', oils_i18n_gettext('975', 'Bathymetry, isolines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1601, 'relf1', 'm', oils_i18n_gettext('976', 'Rock drawings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1602, 'relf1', 'z', oils_i18n_gettext('977', 'Other', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1603, 'relf2', 'a', oils_i18n_gettext('966', 'Contours', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1604, 'relf2', 'b', oils_i18n_gettext('967', 'Shading', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1605, 'relf2', 'c', oils_i18n_gettext('968', 'Gradient and bathymetric tints', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1606, 'relf2', 'd', oils_i18n_gettext('969', 'Hachures', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1607, 'relf2', 'e', oils_i18n_gettext('970', 'Bathymetry, soundings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1608, 'relf2', 'f', oils_i18n_gettext('971', 'Form lines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1609, 'relf2', 'g', oils_i18n_gettext('972', 'Spot heights', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1610, 'relf2', 'i', oils_i18n_gettext('973', 'Pictorially', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1611, 'relf2', 'j', oils_i18n_gettext('974', 'Land forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1612, 'relf2', 'k', oils_i18n_gettext('975', 'Bathymetry, isolines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1613, 'relf2', 'm', oils_i18n_gettext('976', 'Rock drawings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1614, 'relf2', 'z', oils_i18n_gettext('977', 'Other', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1615, 'relf3', 'a', oils_i18n_gettext('966', 'Contours', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1616, 'relf3', 'b', oils_i18n_gettext('967', 'Shading', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1617, 'relf3', 'c', oils_i18n_gettext('968', 'Gradient and bathymetric tints', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1618, 'relf3', 'd', oils_i18n_gettext('969', 'Hachures', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1619, 'relf3', 'e', oils_i18n_gettext('970', 'Bathymetry, soundings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1620, 'relf3', 'f', oils_i18n_gettext('971', 'Form lines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1621, 'relf3', 'g', oils_i18n_gettext('972', 'Spot heights', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1622, 'relf3', 'i', oils_i18n_gettext('973', 'Pictorially', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1623, 'relf3', 'j', oils_i18n_gettext('974', 'Land forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1624, 'relf3', 'k', oils_i18n_gettext('975', 'Bathymetry, isolines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1625, 'relf3', 'm', oils_i18n_gettext('976', 'Rock drawings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1626, 'relf3', 'z', oils_i18n_gettext('977', 'Other', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1627, 'relf4', 'a', oils_i18n_gettext('966', 'Contours', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1628, 'relf4', 'b', oils_i18n_gettext('967', 'Shading', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1629, 'relf4', 'c', oils_i18n_gettext('968', 'Gradient and bathymetric tints', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1630, 'relf4', 'd', oils_i18n_gettext('969', 'Hachures', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1631, 'relf4', 'e', oils_i18n_gettext('970', 'Bathymetry, soundings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1632, 'relf4', 'f', oils_i18n_gettext('971', 'Form lines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1633, 'relf4', 'g', oils_i18n_gettext('972', 'Spot heights', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1634, 'relf4', 'i', oils_i18n_gettext('973', 'Pictorially', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1635, 'relf4', 'j', oils_i18n_gettext('974', 'Land forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1636, 'relf4', 'k', oils_i18n_gettext('975', 'Bathymetry, isolines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1637, 'relf4', 'm', oils_i18n_gettext('976', 'Rock drawings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1638, 'relf4', 'z', oils_i18n_gettext('977', 'Other', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1639, 'spfm1', ' ', oils_i18n_gettext('978', 'No specified special format characteristics', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1640, 'spfm1', 'e', oils_i18n_gettext('979', 'Manuscript', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1641, 'spfm1', 'j', oils_i18n_gettext('980', 'Picture card, post card', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1642, 'spfm1', 'k', oils_i18n_gettext('981', 'Calendar', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1643, 'spfm1', 'l', oils_i18n_gettext('982', 'Puzzle', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1644, 'spfm1', 'n', oils_i18n_gettext('983', 'Game', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1645, 'spfm1', 'o', oils_i18n_gettext('984', 'Wall map', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1646, 'spfm1', 'p', oils_i18n_gettext('985', 'Playing cards', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1647, 'spfm1', 'r', oils_i18n_gettext('986', 'Loose-leaf', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1648, 'spfm1', 'z', oils_i18n_gettext('987', 'Other', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1649, 'spfm2', 'e', oils_i18n_gettext('979', 'Manuscript', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1650, 'spfm2', 'j', oils_i18n_gettext('980', 'Picture card, post card', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1651, 'spfm2', 'k', oils_i18n_gettext('981', 'Calendar', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1652, 'spfm2', 'l', oils_i18n_gettext('982', 'Puzzle', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1653, 'spfm2', 'n', oils_i18n_gettext('983', 'Game', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1654, 'spfm2', 'o', oils_i18n_gettext('984', 'Wall map', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1655, 'spfm2', 'p', oils_i18n_gettext('985', 'Playing cards', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1656, 'spfm2', 'r', oils_i18n_gettext('986', 'Loose-leaf', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1657, 'spfm2', 'z', oils_i18n_gettext('987', 'Other', 'ccvm', 'value'), FALSE); + +-- Illustrations +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1658, 'ills', ' ', oils_i18n_gettext('1658', 'No Illustrations', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1659, 'ills', 'a', oils_i18n_gettext('1659', 'Illustrations', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1660, 'ills', 'b', oils_i18n_gettext('1660', 'Maps', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1661, 'ills', 'c', oils_i18n_gettext('1661', 'Portraits', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1662, 'ills', 'd', oils_i18n_gettext('1662', 'Charts', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1663, 'ills', 'e', oils_i18n_gettext('1663', 'Plans', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1664, 'ills', 'f', oils_i18n_gettext('1664', 'Plates', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1665, 'ills', 'g', oils_i18n_gettext('1665', 'Music', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1666, 'ills', 'h', oils_i18n_gettext('1666', 'Facsimiles', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1667, 'ills', 'i', oils_i18n_gettext('1667', 'Coats of arms', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1668, 'ills', 'j', oils_i18n_gettext('1668', 'Genealogical tables', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1669, 'ills', 'k', oils_i18n_gettext('1669', 'Forms', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1670, 'ills', 'l', oils_i18n_gettext('1670', 'Samples', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1671, 'ills', 'm', oils_i18n_gettext('1671', 'Phonodisc, phonowire, etc.', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1672, 'ills', 'o', oils_i18n_gettext('1672', 'Photographs', 'ccvm', 'value')); +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES (1673, 'ills', 'p', oils_i18n_gettext('1673', 'Illuminations', 'ccvm', 'value')); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1674, 'ills1', ' ', oils_i18n_gettext('1658', 'No Illustrations', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1675, 'ills1', 'a', oils_i18n_gettext('1659', 'Illustrations', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1676, 'ills1', 'b', oils_i18n_gettext('1660', 'Maps', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1677, 'ills1', 'c', oils_i18n_gettext('1661', 'Portraits', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1678, 'ills1', 'd', oils_i18n_gettext('1662', 'Charts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1679, 'ills1', 'e', oils_i18n_gettext('1663', 'Plans', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1680, 'ills1', 'f', oils_i18n_gettext('1664', 'Plates', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1681, 'ills1', 'g', oils_i18n_gettext('1665', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1682, 'ills1', 'h', oils_i18n_gettext('1666', 'Facsimiles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1683, 'ills1', 'i', oils_i18n_gettext('1667', 'Coats of arms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1684, 'ills1', 'j', oils_i18n_gettext('1668', 'Genealogical tables', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1685, 'ills1', 'k', oils_i18n_gettext('1669', 'Forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1686, 'ills1', 'l', oils_i18n_gettext('1670', 'Samples', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1687, 'ills1', 'm', oils_i18n_gettext('1671', 'Phonodisc, phonowire, etc.', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1688, 'ills1', 'o', oils_i18n_gettext('1672', 'Photographs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1689, 'ills1', 'p', oils_i18n_gettext('1673', 'Illuminations', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1690, 'ills2', 'a', oils_i18n_gettext('1659', 'Illustrations', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1691, 'ills2', 'b', oils_i18n_gettext('1660', 'Maps', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1692, 'ills2', 'c', oils_i18n_gettext('1661', 'Portraits', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1693, 'ills2', 'd', oils_i18n_gettext('1662', 'Charts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1694, 'ills2', 'e', oils_i18n_gettext('1663', 'Plans', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1695, 'ills2', 'f', oils_i18n_gettext('1664', 'Plates', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1696, 'ills2', 'g', oils_i18n_gettext('1665', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1697, 'ills2', 'h', oils_i18n_gettext('1666', 'Facsimiles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1698, 'ills2', 'i', oils_i18n_gettext('1667', 'Coats of arms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1699, 'ills2', 'j', oils_i18n_gettext('1668', 'Genealogical tables', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1700, 'ills2', 'k', oils_i18n_gettext('1669', 'Forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1701, 'ills2', 'l', oils_i18n_gettext('1670', 'Samples', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1702, 'ills2', 'm', oils_i18n_gettext('1671', 'Phonodisc, phonowire, etc.', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1703, 'ills2', 'o', oils_i18n_gettext('1672', 'Photographs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1704, 'ills2', 'p', oils_i18n_gettext('1673', 'Illuminations', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1705, 'ills3', 'a', oils_i18n_gettext('1659', 'Illustrations', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1706, 'ills3', 'b', oils_i18n_gettext('1660', 'Maps', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1707, 'ills3', 'c', oils_i18n_gettext('1661', 'Portraits', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1708, 'ills3', 'd', oils_i18n_gettext('1662', 'Charts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1709, 'ills3', 'e', oils_i18n_gettext('1663', 'Plans', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1710, 'ills3', 'f', oils_i18n_gettext('1664', 'Plates', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1711, 'ills3', 'g', oils_i18n_gettext('1665', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1712, 'ills3', 'h', oils_i18n_gettext('1666', 'Facsimiles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1713, 'ills3', 'i', oils_i18n_gettext('1667', 'Coats of arms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1714, 'ills3', 'j', oils_i18n_gettext('1668', 'Genealogical tables', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1715, 'ills3', 'k', oils_i18n_gettext('1669', 'Forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1716, 'ills3', 'l', oils_i18n_gettext('1670', 'Samples', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1717, 'ills3', 'm', oils_i18n_gettext('1671', 'Phonodisc, phonowire, etc.', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1718, 'ills3', 'o', oils_i18n_gettext('1672', 'Photographs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1719, 'ills3', 'p', oils_i18n_gettext('1673', 'Illuminations', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1720, 'ills4', 'a', oils_i18n_gettext('1659', 'Illustrations', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1721, 'ills4', 'b', oils_i18n_gettext('1660', 'Maps', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1722, 'ills4', 'c', oils_i18n_gettext('1661', 'Portraits', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1723, 'ills4', 'd', oils_i18n_gettext('1662', 'Charts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1724, 'ills4', 'e', oils_i18n_gettext('1663', 'Plans', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1725, 'ills4', 'f', oils_i18n_gettext('1664', 'Plates', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1726, 'ills4', 'g', oils_i18n_gettext('1665', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1727, 'ills4', 'h', oils_i18n_gettext('1666', 'Facsimiles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1728, 'ills4', 'i', oils_i18n_gettext('1667', 'Coats of arms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1729, 'ills4', 'j', oils_i18n_gettext('1668', 'Genealogical tables', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1730, 'ills4', 'k', oils_i18n_gettext('1669', 'Forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1731, 'ills4', 'l', oils_i18n_gettext('1670', 'Samples', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1732, 'ills4', 'm', oils_i18n_gettext('1671', 'Phonodisc, phonowire, etc.', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1733, 'ills4', 'o', oils_i18n_gettext('1672', 'Photographs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1734, 'ills4', 'p', oils_i18n_gettext('1673', 'Illuminations', 'ccvm', 'value'), FALSE); + + +-- carve out a slot of 10k IDs for stock CCVMs +SELECT SETVAL('config.coded_value_map_id_seq'::TEXT, 10000); + + +-- composite definitions for record attr "icon_format" + +INSERT INTO config.composite_attr_entry_definition + (coded_value, definition) VALUES +--book +(564, '{"0":[{"_attr":"item_type","_val":"a"},{"_attr":"item_type","_val":"t"}],"1":{"_not":[{"_attr":"item_form","_val":"a"},{"_attr":"item_form","_val":"b"},{"_attr":"item_form","_val":"c"},{"_attr":"item_form","_val":"d"},{"_attr":"item_form","_val":"f"},{"_attr":"item_form","_val":"o"},{"_attr":"item_form","_val":"q"},{"_attr":"item_form","_val":"r"},{"_attr":"item_form","_val":"s"}]},"2":[{"_attr":"bib_level","_val":"a"},{"_attr":"bib_level","_val":"c"},{"_attr":"bib_level","_val":"d"},{"_attr":"bib_level","_val":"m"}]}'), + +-- braille +(565, '{"0":{"_attr":"item_type","_val":"a"},"1":{"_attr":"item_form","_val":"f"}}'), + +-- software +(566, '{"_attr":"item_type","_val":"m"}'), + +-- dvd +(567, '{"_attr":"vr_format","_val":"v"}'), + +-- ebook +(568, '{"0":[{"_attr":"item_type","_val":"a"},{"_attr":"item_type","_val":"t"}],"1":[{"_attr":"item_form","_val":"o"},{"_attr":"item_form","_val":"s"},{"_attr":"item_form","_val":"q"}],"2":[{"_attr":"bib_level","_val":"a"},{"_attr":"bib_level","_val":"c"},{"_attr":"bib_level","_val":"d"},{"_attr":"bib_level","_val":"m"}]}'), + +-- eaudio +(569, '{"0":{"_attr":"item_type","_val":"i"},"1":[{"_attr":"item_form","_val":"o"},{"_attr":"item_form","_val":"q"},{"_attr":"item_form","_val":"s"}]}'), + +-- kit +(570, '[{"_attr":"item_type","_val":"o"},{"_attr":"item_type","_val":"p"}]'), + +-- map +(571, '[{"_attr":"item_type","_val":"e"},{"_attr":"item_type","_val":"f"}]'), + +-- microform +(572, '[{"_attr":"item_form","_val":"a"},{"_attr":"item_form","_val":"b"},{"_attr":"item_form","_val":"c"}]'), + +-- score +(573, '[{"_attr":"item_type","_val":"c"},{"_attr":"item_type","_val":"d"}]'), + +-- picture +(574, '{"_attr":"item_type","_val":"k"}'), + +-- equip +(575, '{"_attr":"item_type","_val":"r"}'), + +-- serial +(576, '[{"_attr":"bib_level","_val":"b"},{"_attr":"bib_level","_val":"s"}]'), + +-- vhs +(577, '{"_attr":"vr_format","_val":"b"}'), + +-- evideo +(578, '{"0":{"_attr":"item_type","_val":"g"},"1":[{"_attr":"item_form","_val":"o"},{"_attr":"item_form","_val":"s"},{"_attr":"item_form","_val":"q"}]}'), + +-- cdaudiobook +(579, '{"0":{"_attr":"item_type","_val":"i"},"1":{"_attr":"sr_format","_val":"f"}}'), + +-- cdmusic +(580, '{"0":{"_attr":"item_type","_val":"j"},"1":{"_attr":"sr_format","_val":"f"}}'), + +-- casaudiobook +(581, '{"0":{"_attr":"item_type","_val":"i"},"1":{"_attr":"sr_format","_val":"l"}}'), + +-- casmusic +(582, '{"0":{"_attr":"item_type","_val":"j"},"1":{"_attr":"sr_format","_val":"l"}}'), + +-- phonospoken +(583, '{"0":{"_attr":"item_type","_val":"i"},"1":[{"_attr":"sr_format","_val":"a"},{"_attr":"sr_format","_val":"b"},{"_attr":"sr_format","_val":"c"},{"_attr":"sr_format","_val":"d"},{"_attr":"sr_format","_val":"e"}]}'), + +-- phonomusic +(584, '{"0":{"_attr":"item_type","_val":"j"},"1":[{"_attr":"sr_format","_val":"a"},{"_attr":"sr_format","_val":"b"},{"_attr":"sr_format","_val":"c"},{"_attr":"sr_format","_val":"d"},{"_attr":"sr_format","_val":"e"}]}'), + +-- lpbook +(585, '{"0":[{"_attr":"item_type","_val":"a"},{"_attr":"item_type","_val":"t"}],"1":{"_attr":"item_form","_val":"d"},"2":[{"_attr":"bib_level","_val":"a"},{"_attr":"bib_level","_val":"c"},{"_attr":"bib_level","_val":"d"},{"_attr":"bib_level","_val":"m"}]}'); + +-- music (catch-all) +INSERT INTO config.composite_attr_entry_definition + (coded_value, definition) VALUES +(607, '{"0":{"_attr":"item_type","_val":"j"},"1":{"_not":[{"_attr":"sr_format","_val":"a"},{"_attr":"sr_format","_val":"b"},{"_attr":"sr_format","_val":"c"},{"_attr":"sr_format","_val":"d"},{"_attr":"sr_format","_val":"f"},{"_attr":"sr_format","_val":"e"},{"_attr":"sr_format","_val":"l"}]}}'); + +-- blu-ray icon_format +INSERT INTO config.composite_attr_entry_definition + (coded_value, definition) VALUES (608, '{"_attr":"vr_format","_val":"s"}'); + +-- electronic +INSERT INTO config.composite_attr_entry_definition + (coded_value, definition) VALUES +(712, '[{"_attr":"item_form","_val":"s"},{"_attr":"item_form","_val":"o"}]'); + +-- use the definitions from the icon_format as the basis for the MR hold format definitions +DO $$ + DECLARE format TEXT; +BEGIN + FOR format IN SELECT UNNEST( + '{book,braille,software,dvd,kit,map,microform,score,picture,equip,serial,vhs,cdaudiobook,cdmusic,casaudiobook,casmusic,phonospoken,phonomusic,lpbook,blu-ray}'::text[]) + LOOP + INSERT INTO config.composite_attr_entry_definition + (coded_value, definition) VALUES + ( + -- get the ID from the new ccvm above + (SELECT id FROM config.coded_value_map + WHERE code = format AND ctype = 'mr_hold_format'), + -- get the def of the matching ccvm attached to the icon_format attr + (SELECT definition FROM config.composite_attr_entry_definition ccaed + JOIN config.coded_value_map ccvm ON (ccaed.coded_value = ccvm.id) + WHERE ccvm.ctype = 'icon_format' AND ccvm.code = format) + ); + END LOOP; +END $$; + +-- copy the composite definition from icon_format into +-- search_format for a baseline data set +DO $$ + DECLARE format config.coded_value_map%ROWTYPE; +BEGIN + FOR format IN SELECT * + FROM config.coded_value_map WHERE ctype = 'icon_format' + LOOP + INSERT INTO config.composite_attr_entry_definition + (coded_value, definition) VALUES + ( + -- get the ID from the new ccvm above + (SELECT id FROM config.coded_value_map + WHERE code = format.code AND ctype = 'search_format'), + + -- def of the matching icon_format attr + (SELECT definition FROM config.composite_attr_entry_definition + WHERE coded_value = format.id) + ); + END LOOP; +END $$; + +-- modify the 'book' definition so that it includes large print +UPDATE config.composite_attr_entry_definition + SET definition = '{"0":[{"_attr":"item_type","_val":"a"},{"_attr":"item_type","_val":"t"}],"1":{"_not":[{"_attr":"item_form","_val":"a"},{"_attr":"item_form","_val":"b"},{"_attr":"item_form","_val":"c"},{"_attr":"item_form","_val":"f"},{"_attr":"item_form","_val":"o"},{"_attr":"item_form","_val":"q"},{"_attr":"item_form","_val":"r"},{"_attr":"item_form","_val":"s"}]},"2":[{"_attr":"bib_level","_val":"a"},{"_attr":"bib_level","_val":"c"},{"_attr":"bib_level","_val":"d"},{"_attr":"bib_level","_val":"m"}]}' + WHERE coded_value = 610; + +-- modify 'music' to include all recorded music, regardless of format +UPDATE config.composite_attr_entry_definition + SET definition = '{"_attr":"item_type","_val":"j"}' + WHERE coded_value = 632; + + +-- Composite coded value maps for multi-position single-character fields that allow the "primary" fixed field to be used in advanced searches or other composite definitions without a ton of ORs and extra work. +-- Space is used as a filler for any position other than the first, so for something to actually have "No accompanying matter," for example, specifically accm1 must = ' '. +-- Any other value has the same meaning in any position. + +-- Accompanying Matter +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1735, '{"_attr":"accm1","_val":" "}'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (713, '[{"_attr":"accm6","_val":"a"},{"_attr":"accm5","_val":"a"},{"_attr":"accm4","_val":"a"},{"_attr":"accm3","_val":"a"},{"_attr":"accm2","_val":"a"},{"_attr":"accm1","_val":"a"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (714, '[{"_attr":"accm6","_val":"b"},{"_attr":"accm5","_val":"b"},{"_attr":"accm4","_val":"b"},{"_attr":"accm3","_val":"b"},{"_attr":"accm2","_val":"b"},{"_attr":"accm1","_val":"b"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (715, '[{"_attr":"accm6","_val":"c"},{"_attr":"accm5","_val":"c"},{"_attr":"accm4","_val":"c"},{"_attr":"accm3","_val":"c"},{"_attr":"accm2","_val":"c"},{"_attr":"accm1","_val":"c"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (716, '[{"_attr":"accm6","_val":"d"},{"_attr":"accm5","_val":"d"},{"_attr":"accm4","_val":"d"},{"_attr":"accm3","_val":"d"},{"_attr":"accm2","_val":"d"},{"_attr":"accm1","_val":"d"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (717, '[{"_attr":"accm6","_val":"e"},{"_attr":"accm5","_val":"e"},{"_attr":"accm4","_val":"e"},{"_attr":"accm3","_val":"e"},{"_attr":"accm2","_val":"e"},{"_attr":"accm1","_val":"e"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (718, '[{"_attr":"accm6","_val":"f"},{"_attr":"accm5","_val":"f"},{"_attr":"accm4","_val":"f"},{"_attr":"accm3","_val":"f"},{"_attr":"accm2","_val":"f"},{"_attr":"accm1","_val":"f"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (719, '[{"_attr":"accm6","_val":"g"},{"_attr":"accm5","_val":"g"},{"_attr":"accm4","_val":"g"},{"_attr":"accm3","_val":"g"},{"_attr":"accm2","_val":"g"},{"_attr":"accm1","_val":"g"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (720, '[{"_attr":"accm6","_val":"h"},{"_attr":"accm5","_val":"h"},{"_attr":"accm4","_val":"h"},{"_attr":"accm3","_val":"h"},{"_attr":"accm2","_val":"h"},{"_attr":"accm1","_val":"h"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (721, '[{"_attr":"accm6","_val":"i"},{"_attr":"accm5","_val":"i"},{"_attr":"accm4","_val":"i"},{"_attr":"accm3","_val":"i"},{"_attr":"accm2","_val":"i"},{"_attr":"accm1","_val":"i"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (722, '[{"_attr":"accm6","_val":"k"},{"_attr":"accm5","_val":"k"},{"_attr":"accm4","_val":"k"},{"_attr":"accm3","_val":"k"},{"_attr":"accm2","_val":"k"},{"_attr":"accm1","_val":"k"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (723, '[{"_attr":"accm6","_val":"r"},{"_attr":"accm5","_val":"r"},{"_attr":"accm4","_val":"r"},{"_attr":"accm3","_val":"r"},{"_attr":"accm2","_val":"r"},{"_attr":"accm1","_val":"r"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (724, '[{"_attr":"accm6","_val":"s"},{"_attr":"accm5","_val":"s"},{"_attr":"accm4","_val":"s"},{"_attr":"accm3","_val":"s"},{"_attr":"accm2","_val":"s"},{"_attr":"accm1","_val":"s"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (725, '[{"_attr":"accm6","_val":"z"},{"_attr":"accm5","_val":"z"},{"_attr":"accm4","_val":"z"},{"_attr":"accm3","_val":"z"},{"_attr":"accm2","_val":"z"},{"_attr":"accm1","_val":"z"}]'); + +-- Nature of Contents +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (835, '{"_attr":"cont1","_val":" "}'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (836, '[{"_attr":"cont4","_val":"a"},{"_attr":"cont3","_val":"a"},{"_attr":"cont2","_val":"a"},{"_attr":"cont1","_val":"a"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (837, '[{"_attr":"cont4","_val":"b"},{"_attr":"cont3","_val":"b"},{"_attr":"cont2","_val":"b"},{"_attr":"cont1","_val":"b"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (838, '[{"_attr":"cont4","_val":"c"},{"_attr":"cont3","_val":"c"},{"_attr":"cont2","_val":"c"},{"_attr":"cont1","_val":"c"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (839, '[{"_attr":"cont4","_val":"d"},{"_attr":"cont3","_val":"d"},{"_attr":"cont2","_val":"d"},{"_attr":"cont1","_val":"d"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (840, '[{"_attr":"cont4","_val":"e"},{"_attr":"cont3","_val":"e"},{"_attr":"cont2","_val":"e"},{"_attr":"cont1","_val":"e"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (841, '[{"_attr":"cont4","_val":"f"},{"_attr":"cont3","_val":"f"},{"_attr":"cont2","_val":"f"},{"_attr":"cont1","_val":"f"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (842, '[{"_attr":"cont4","_val":"g"},{"_attr":"cont3","_val":"g"},{"_attr":"cont2","_val":"g"},{"_attr":"cont1","_val":"g"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (843, '[{"_attr":"cont4","_val":"h"},{"_attr":"cont3","_val":"h"},{"_attr":"cont2","_val":"h"},{"_attr":"cont1","_val":"h"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (844, '[{"_attr":"cont4","_val":"i"},{"_attr":"cont3","_val":"i"},{"_attr":"cont2","_val":"i"},{"_attr":"cont1","_val":"i"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (845, '[{"_attr":"cont4","_val":"j"},{"_attr":"cont3","_val":"j"},{"_attr":"cont2","_val":"j"},{"_attr":"cont1","_val":"j"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (846, '[{"_attr":"cont4","_val":"k"},{"_attr":"cont3","_val":"k"},{"_attr":"cont2","_val":"k"},{"_attr":"cont1","_val":"k"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (847, '[{"_attr":"cont4","_val":"l"},{"_attr":"cont3","_val":"l"},{"_attr":"cont2","_val":"l"},{"_attr":"cont1","_val":"l"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (848, '[{"_attr":"cont4","_val":"m"},{"_attr":"cont3","_val":"m"},{"_attr":"cont2","_val":"m"},{"_attr":"cont1","_val":"m"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (849, '[{"_attr":"cont4","_val":"n"},{"_attr":"cont3","_val":"n"},{"_attr":"cont2","_val":"n"},{"_attr":"cont1","_val":"n"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (850, '[{"_attr":"cont4","_val":"o"},{"_attr":"cont3","_val":"o"},{"_attr":"cont2","_val":"o"},{"_attr":"cont1","_val":"o"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (851, '[{"_attr":"cont4","_val":"p"},{"_attr":"cont3","_val":"p"},{"_attr":"cont2","_val":"p"},{"_attr":"cont1","_val":"p"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (852, '[{"_attr":"cont4","_val":"q"},{"_attr":"cont3","_val":"q"},{"_attr":"cont2","_val":"q"},{"_attr":"cont1","_val":"q"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (853, '[{"_attr":"cont4","_val":"r"},{"_attr":"cont3","_val":"r"},{"_attr":"cont2","_val":"r"},{"_attr":"cont1","_val":"r"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (854, '[{"_attr":"cont4","_val":"s"},{"_attr":"cont3","_val":"s"},{"_attr":"cont2","_val":"s"},{"_attr":"cont1","_val":"s"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (855, '[{"_attr":"cont4","_val":"t"},{"_attr":"cont3","_val":"t"},{"_attr":"cont2","_val":"t"},{"_attr":"cont1","_val":"t"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (856, '[{"_attr":"cont4","_val":"u"},{"_attr":"cont3","_val":"u"},{"_attr":"cont2","_val":"u"},{"_attr":"cont1","_val":"u"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (857, '[{"_attr":"cont4","_val":"v"},{"_attr":"cont3","_val":"v"},{"_attr":"cont2","_val":"v"},{"_attr":"cont1","_val":"v"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (858, '[{"_attr":"cont4","_val":"w"},{"_attr":"cont3","_val":"w"},{"_attr":"cont2","_val":"w"},{"_attr":"cont1","_val":"w"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (859, '[{"_attr":"cont4","_val":"x"},{"_attr":"cont3","_val":"x"},{"_attr":"cont2","_val":"x"},{"_attr":"cont1","_val":"x"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (860, '[{"_attr":"cont4","_val":"y"},{"_attr":"cont3","_val":"y"},{"_attr":"cont2","_val":"y"},{"_attr":"cont1","_val":"y"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (861, '[{"_attr":"cont4","_val":"z"},{"_attr":"cont3","_val":"z"},{"_attr":"cont2","_val":"z"},{"_attr":"cont1","_val":"z"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (862, '[{"_attr":"cont4","_val":"2"},{"_attr":"cont3","_val":"2"},{"_attr":"cont2","_val":"2"},{"_attr":"cont1","_val":"2"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (863, '[{"_attr":"cont4","_val":"5"},{"_attr":"cont3","_val":"5"},{"_attr":"cont2","_val":"5"},{"_attr":"cont1","_val":"5"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (864, '[{"_attr":"cont4","_val":"6"},{"_attr":"cont3","_val":"6"},{"_attr":"cont2","_val":"6"},{"_attr":"cont1","_val":"6"}]'); + +-- Literary Text for Sound Recordings +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (881, '{"_attr":"ltxt1","_val":" "}'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (882, '[{"_attr":"ltxt2","_val":"a"},{"_attr":"ltxt1","_val":"a"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (883, '[{"_attr":"ltxt2","_val":"b"},{"_attr":"ltxt1","_val":"b"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (884, '[{"_attr":"ltxt2","_val":"c"},{"_attr":"ltxt1","_val":"c"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (885, '[{"_attr":"ltxt2","_val":"d"},{"_attr":"ltxt1","_val":"d"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (886, '[{"_attr":"ltxt2","_val":"e"},{"_attr":"ltxt1","_val":"e"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (887, '[{"_attr":"ltxt2","_val":"f"},{"_attr":"ltxt1","_val":"f"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (888, '[{"_attr":"ltxt2","_val":"g"},{"_attr":"ltxt1","_val":"g"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (889, '[{"_attr":"ltxt2","_val":"h"},{"_attr":"ltxt1","_val":"h"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (890, '[{"_attr":"ltxt2","_val":"i"},{"_attr":"ltxt1","_val":"i"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (891, '[{"_attr":"ltxt2","_val":"j"},{"_attr":"ltxt1","_val":"j"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (892, '[{"_attr":"ltxt2","_val":"k"},{"_attr":"ltxt1","_val":"k"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (893, '[{"_attr":"ltxt2","_val":"l"},{"_attr":"ltxt1","_val":"l"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (894, '[{"_attr":"ltxt2","_val":"m"},{"_attr":"ltxt1","_val":"m"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (895, '[{"_attr":"ltxt2","_val":"n"},{"_attr":"ltxt1","_val":"n"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (896, '[{"_attr":"ltxt2","_val":"o"},{"_attr":"ltxt1","_val":"o"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (897, '[{"_attr":"ltxt2","_val":"p"},{"_attr":"ltxt1","_val":"p"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (898, '[{"_attr":"ltxt2","_val":"r"},{"_attr":"ltxt1","_val":"r"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (899, '[{"_attr":"ltxt2","_val":"s"},{"_attr":"ltxt1","_val":"s"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (900, '[{"_attr":"ltxt2","_val":"t"},{"_attr":"ltxt1","_val":"t"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (901, '[{"_attr":"ltxt2","_val":"z"},{"_attr":"ltxt1","_val":"z"}]'); + +-- Relief +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (965, '{"_attr":"relf1","_val":" "}'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (966, '[{"_attr":"relf4","_val":"a"},{"_attr":"relf3","_val":"a"},{"_attr":"relf2","_val":"a"},{"_attr":"relf1","_val":"a"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (967, '[{"_attr":"relf4","_val":"b"},{"_attr":"relf3","_val":"b"},{"_attr":"relf2","_val":"b"},{"_attr":"relf1","_val":"b"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (968, '[{"_attr":"relf4","_val":"c"},{"_attr":"relf3","_val":"c"},{"_attr":"relf2","_val":"c"},{"_attr":"relf1","_val":"c"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (969, '[{"_attr":"relf4","_val":"d"},{"_attr":"relf3","_val":"d"},{"_attr":"relf2","_val":"d"},{"_attr":"relf1","_val":"d"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (970, '[{"_attr":"relf4","_val":"e"},{"_attr":"relf3","_val":"e"},{"_attr":"relf2","_val":"e"},{"_attr":"relf1","_val":"e"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (971, '[{"_attr":"relf4","_val":"f"},{"_attr":"relf3","_val":"f"},{"_attr":"relf2","_val":"f"},{"_attr":"relf1","_val":"f"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (972, '[{"_attr":"relf4","_val":"g"},{"_attr":"relf3","_val":"g"},{"_attr":"relf2","_val":"g"},{"_attr":"relf1","_val":"g"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (973, '[{"_attr":"relf4","_val":"i"},{"_attr":"relf3","_val":"i"},{"_attr":"relf2","_val":"i"},{"_attr":"relf1","_val":"i"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (974, '[{"_attr":"relf4","_val":"j"},{"_attr":"relf3","_val":"j"},{"_attr":"relf2","_val":"j"},{"_attr":"relf1","_val":"j"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (975, '[{"_attr":"relf4","_val":"k"},{"_attr":"relf3","_val":"k"},{"_attr":"relf2","_val":"k"},{"_attr":"relf1","_val":"k"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (976, '[{"_attr":"relf4","_val":"m"},{"_attr":"relf3","_val":"m"},{"_attr":"relf2","_val":"m"},{"_attr":"relf1","_val":"m"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (977, '[{"_attr":"relf4","_val":"z"},{"_attr":"relf3","_val":"z"},{"_attr":"relf2","_val":"z"},{"_attr":"relf1","_val":"z"}]'); + +-- Special Format Characteristics +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (978, '{"_attr":"spfm1","_val":" "}'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (979, '[{"_attr":"spfm2","_val":"e"},{"_attr":"spfm1","_val":"e"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (980, '[{"_attr":"spfm2","_val":"j"},{"_attr":"spfm1","_val":"j"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (981, '[{"_attr":"spfm2","_val":"k"},{"_attr":"spfm1","_val":"k"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (982, '[{"_attr":"spfm2","_val":"l"},{"_attr":"spfm1","_val":"l"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (983, '[{"_attr":"spfm2","_val":"n"},{"_attr":"spfm1","_val":"n"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (984, '[{"_attr":"spfm2","_val":"o"},{"_attr":"spfm1","_val":"o"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (985, '[{"_attr":"spfm2","_val":"p"},{"_attr":"spfm1","_val":"p"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (986, '[{"_attr":"spfm2","_val":"r"},{"_attr":"spfm1","_val":"r"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (987, '[{"_attr":"spfm2","_val":"z"},{"_attr":"spfm1","_val":"z"}]'); + +-- Illustrations +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1658, '{"_attr":"ills1","_val":" "}'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1659, '[{"_attr":"ills4","_val":"a"},{"_attr":"ills3","_val":"a"},{"_attr":"ills2","_val":"a"},{"_attr":"ills1","_val":"a"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1660, '[{"_attr":"ills4","_val":"b"},{"_attr":"ills3","_val":"b"},{"_attr":"ills2","_val":"b"},{"_attr":"ills1","_val":"b"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1661, '[{"_attr":"ills4","_val":"c"},{"_attr":"ills3","_val":"c"},{"_attr":"ills2","_val":"c"},{"_attr":"ills1","_val":"c"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1662, '[{"_attr":"ills4","_val":"d"},{"_attr":"ills3","_val":"d"},{"_attr":"ills2","_val":"d"},{"_attr":"ills1","_val":"d"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1663, '[{"_attr":"ills4","_val":"e"},{"_attr":"ills3","_val":"e"},{"_attr":"ills2","_val":"e"},{"_attr":"ills1","_val":"e"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1664, '[{"_attr":"ills4","_val":"f"},{"_attr":"ills3","_val":"f"},{"_attr":"ills2","_val":"f"},{"_attr":"ills1","_val":"f"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1665, '[{"_attr":"ills4","_val":"g"},{"_attr":"ills3","_val":"g"},{"_attr":"ills2","_val":"g"},{"_attr":"ills1","_val":"g"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1666, '[{"_attr":"ills4","_val":"h"},{"_attr":"ills3","_val":"h"},{"_attr":"ills2","_val":"h"},{"_attr":"ills1","_val":"h"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1667, '[{"_attr":"ills4","_val":"i"},{"_attr":"ills3","_val":"i"},{"_attr":"ills2","_val":"i"},{"_attr":"ills1","_val":"i"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1668, '[{"_attr":"ills4","_val":"j"},{"_attr":"ills3","_val":"j"},{"_attr":"ills2","_val":"j"},{"_attr":"ills1","_val":"j"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1669, '[{"_attr":"ills4","_val":"k"},{"_attr":"ills3","_val":"k"},{"_attr":"ills2","_val":"k"},{"_attr":"ills1","_val":"k"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1670, '[{"_attr":"ills4","_val":"l"},{"_attr":"ills3","_val":"l"},{"_attr":"ills2","_val":"l"},{"_attr":"ills1","_val":"l"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1671, '[{"_attr":"ills4","_val":"m"},{"_attr":"ills3","_val":"m"},{"_attr":"ills2","_val":"m"},{"_attr":"ills1","_val":"m"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1672, '[{"_attr":"ills4","_val":"o"},{"_attr":"ills3","_val":"o"},{"_attr":"ills2","_val":"o"},{"_attr":"ills1","_val":"o"}]'); +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES (1673, '[{"_attr":"ills4","_val":"p"},{"_attr":"ills3","_val":"p"},{"_attr":"ills2","_val":"p"},{"_attr":"ills1","_val":"p"}]'); + + + +-- Trigger Event Definitions ------------------------------------------------- + +-- Sample Overdue Notice -- + +INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, delay_field, group_field, max_delay, template) + VALUES (1, 'f', 1, '7 Day Overdue Email Notification', 'checkout.due', 'CircIsOverdue', 'SendEmail', '7 days', 'due_date', 'usr', '8 days', +$$ +[%- USE date -%] +[%- user = target.0.usr -%] +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Overdue Notification +Auto-Submitted: auto-generated + +Dear [% user.family_name %], [% user.first_given_name %] +Our records indicate the following items are overdue. + +[% FOR circ IN target %] + [%- copy_details = helpers.get_copy_bib_basics(circ.target_copy.id) -%] + Title: [% copy_details.title %] + Author: [% copy_details.author %] + Call Number: [% circ.target_copy.call_number.label %] + Barcode: [% circ.target_copy.barcode %] + Due: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %] + Item Cost: [% helpers.get_copy_price(circ.target_copy) %] + Total Owed For Transaction: [% circ.billable_transaction.summary.balance_owed %] + Library: [% circ.circ_lib.name %] + +[% END %] + +$$); + +INSERT INTO action_trigger.environment (event_def, path) VALUES + (1, 'target_copy.call_number'), + (1, 'target_copy.location'), + (1, 'usr'), + (1, 'billable_transaction.summary'), + (1, 'circ_lib.billing_address'); + +-- Sample Mark Long-Overdue Item Lost -- + +INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, delay_field) + VALUES (2, 'f', 1, '90 Day Overdue Mark Lost', 'checkout.due', 'CircIsOverdue', 'MarkItemLost', '90 days', 'due_date'); + +INSERT INTO action_trigger.event_params (event_def, param, value) VALUES + (2, 'editor', '''1'''); + +-- Sample Auto Mark Lost Notice -- + +INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, template) + VALUES (3, 'f', 1, '90 Day Overdue Mark Lost Notice', 'lost.auto', 'NOOP_True', 'SendEmail', 'usr', +$$ +[%- USE date -%] +[%- user = target.0.usr -%] +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Overdue Items Marked Lost +Auto-Submitted: auto-generated + +Dear [% user.family_name %], [% user.first_given_name %] +The following items are 90 days overdue and have been marked LOST. + +[% FOR circ IN target %] + [%- copy_details = helpers.get_copy_bib_basics(circ.target_copy.id) -%] + Title: [% copy_details.title %], by [% copy_details.author %] + Call Number: [% circ.target_copy.call_number.label %] + Shelving Location: [% circ.target_copy.location.name %] + Barcode: [% circ.target_copy.barcode %] + Due: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %] + Item Cost: [% helpers.get_copy_price(circ.target_copy) %] + Total Owed For Transaction: [% circ.billable_transaction.summary.balance_owed %] + Library: [% circ.circ_lib.name %] + +[% END %] + +$$); + + +INSERT INTO action_trigger.environment (event_def, path) VALUES + (3, 'target_copy.call_number'), + (3, 'usr'), + (3, 'billable_transaction.summary'), + (3, 'circ_lib.billing_address'), + (3, 'target_copy.location'); + + +-- Sample Purchase Order HTML Template -- + +INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, template) + VALUES (4, 't', 1, 'PO HTML', 'format.po.html', 'NOOP_True', 'ProcessTemplate', +$$ +[%- USE date -%] +[%- + # find a lineitem attribute by name and optional type + BLOCK get_li_attr; + FOR attr IN li.attributes; + IF attr.attr_name == attr_name; + IF !attr_type OR attr_type == attr.attr_type; + attr.attr_value; + LAST; + END; + END; + END; + END +-%] + +

Purchase Order: [% target.name %] ([% target.id %])

+
+date [% date.format(date.now, '%Y%m%d') %] +
+ + + + + + + + + +
Vendor +
[% target.provider.name %]
+
[% target.provider.addresses.0.street1 %]
+
[% target.provider.addresses.0.street2 %]
+
[% target.provider.addresses.0.city %]
+
[% target.provider.addresses.0.state %]
+
[% target.provider.addresses.0.country %]
+
[% target.provider.addresses.0.post_code %]
+
Ship to / Bill to +
[% target.ordering_agency.name %]
+
[% target.ordering_agency.billing_address.street1 %]
+
[% target.ordering_agency.billing_address.street2 %]
+
[% target.ordering_agency.billing_address.city %]
+
[% target.ordering_agency.billing_address.state %]
+
[% target.ordering_agency.billing_address.country %]
+
[% target.ordering_agency.billing_address.post_code %]
+
+ +

+
+ Notes to the Vendor +
    + [% FOR note IN target.notes %] + [% IF note.vendor_public == 't' %] +
  • [% note.value %]
  • + [% END %] + [% END %] +
+
+

+ + + + + + + + + + + + + + + + + [% subtotal = 0 %] + [% FOR li IN target.lineitems %] + + + [% count = li.lineitem_details.size %] + [% price = li.estimated_unit_price %] + [% litotal = (price * count) %] + [% subtotal = subtotal + litotal %] + [% + ident_attr = helpers.get_li_order_ident(li.attributes); + SET ident_value = ident_attr.attr_value IF ident_attr; + %] + + + + + + + + + + [% END %] + + + + + +
PO#ISBN or Item #TitleQuantityUnit PriceLine TotalDelayed / CanceledNotes
[% target.id %][% ident_value %][% PROCESS get_li_attr attr_name = 'title' %][% count %][% price %][% litotal %][% li.cancel_reason.label %] +
    + [% FOR note IN li.lineitem_notes %] + [% IF note.vendor_public == 't' %] +
  • [% note.value %]
  • + [% END %] + [% END %] +
+
+ Subtotal[% subtotal %]
+ +
+ +Total Line Item Count: [% target.lineitems.size %] +$$); + +INSERT INTO action_trigger.environment (event_def, path) VALUES + (4, 'lineitems.lineitem_details.fund'), + (4, 'lineitems.lineitem_details.location'), + (4, 'lineitems.lineitem_details.owning_lib'), + (4, 'ordering_agency.mailing_address'), + (4, 'ordering_agency.billing_address'), + (4, 'provider.addresses'), + (4, 'lineitems.attributes'), + (4, 'lineitems.cancel_reason'), + (4, 'lineitems.lineitem_notes'), + (4, 'notes'); + +INSERT INTO action_trigger.cleanup ( module, description ) VALUES ( + 'CreateHoldNotification', + oils_i18n_gettext( + 'CreateHoldNotification', + 'Creates a hold_notification record for each notified hold', + 'atclean', + 'description' + ) +); + +INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, delay_field, group_field, cleanup_success, template) + VALUES (5, 'f', 1, 'Hold Ready for Pickup Email Notification', 'hold.available', 'HoldIsAvailable', 'SendEmail', '30 minutes', 'shelf_time', 'usr', 'CreateHoldNotification', +$$ +[%- USE date -%] +[%- user = target.0.usr -%] +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Hold Available Notification +Auto-Submitted: auto-generated + +Dear [% user.family_name %], [% user.first_given_name %] +The item(s) you requested are available for pickup from the Library. + +[% FOR hold IN target %] + [%- copy_details = helpers.get_copy_bib_basics(hold.current_copy.id) -%] + Title: [% copy_details.title %] + Author: [% copy_details.author %] + Call Number: [% hold.current_copy.call_number.label %] + Barcode: [% hold.current_copy.barcode %] + Library: [% hold.pickup_lib.name %] +[% END %] + +$$); + +INSERT INTO action_trigger.event_params (event_def, param, value) + VALUES (5, 'check_email_notify', 1); + +INSERT INTO action_trigger.hook ( + key, + core_type, + description, + passive + ) VALUES ( + 'hold_request.shelf_expires_soon', + 'ahr', + 'A hold on the shelf will expire there soon.', + TRUE + ); + +INSERT INTO action_trigger.environment (event_def, path) VALUES + (5, 'current_copy.call_number'), + (5, 'usr'), + (5, 'pickup_lib.billing_address'); + + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + delay, + delay_field, + group_field, + template + ) VALUES ( + 7, + FALSE, + 1, + 'Hold Expires from Shelf Soon', + 'hold_request.shelf_expires_soon', + 'HoldIsAvailable', + 'SendEmail', + '- 1 DAY', + 'shelf_expire_time', + 'usr', +$$ +[%- USE date -%] +[%- user = target.0.usr -%] +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Hold Available Notification +Auto-Submitted: auto-generated + +Dear [% user.family_name %], [% user.first_given_name %] +You requested holds on the following item(s), which are available for +pickup, but these holds will soon expire. + +[% FOR hold IN target %] + [%- data = helpers.get_copy_bib_basics(hold.current_copy.id) -%] + Title: [% data.title %] + Author: [% data.author %] + Library: [% hold.pickup_lib.name %] +[% END %] +$$ +); + +INSERT INTO action_trigger.event_params (event_def, param, value) + VALUES (7, 'check_email_notify', 1); + +INSERT INTO action_trigger.environment ( + event_def, + path + ) VALUES + ( 7, 'current_copy'), + ( 7, 'pickup_lib.billing_address'), + ( 7, 'usr'); + +-- long wait hold request notifications + +INSERT INTO action_trigger.hook ( + key, + core_type, + description, + passive + ) VALUES ( + 'hold_request.long_wait', + 'ahr', + 'A patron has been waiting on a hold to be fulfilled for a long time.', + TRUE + ); + +INSERT INTO action_trigger.validator (module,description) VALUES + ('HoldNotifyCheck', + oils_i18n_gettext( + 'HoldNotifyCheck', + 'Check Hold notification flag(s)', + 'atval', + 'description' + )); + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + delay, + delay_field, + group_field, + template + ) VALUES ( + 9, + FALSE, + 1, + 'Hold waiting for pickup for long time', + 'hold_request.long_wait', + 'HoldNotifyCheck', + 'SendEmail', + '6 MONTHS', + 'request_time', + 'usr', +$$ +[%- USE date -%] +[%- user = target.0.usr -%] +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Long Wait Hold Notification +Auto-Submitted: auto-generated + +Dear [% user.family_name %], [% user.first_given_name %] + +You requested hold(s) on the following item(s), but unfortunately +we have not been able to fulfill your request after a considerable +length of time. If you would still like to receive these items, +no action is required. + +[% FOR hold IN target %] + [%- copy_details = helpers.get_copy_bib_basics(hold.current_copy.id) -%] + Title: [% copy_details.title %] + Author: [% copy_details.author %] +[% END %] +$$ +); + +INSERT INTO action_trigger.environment (event_def, path) + VALUES + (9, 'pickup_lib'), + (9, 'usr'), + (9, 'current_copy.call_number'); + +INSERT INTO action_trigger.event_params (event_def, param, value) + VALUES (9, 'check_email_notify', 1); + +-- trigger data related to acq user requests + +INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES ( + 'aur.ordered', + 'aur', + oils_i18n_gettext( + 'aur.ordered', + 'A patron acquisition request has been marked On-Order.', + 'ath', + 'description' + ), + TRUE + ), ( + 'aur.received', + 'aur', + oils_i18n_gettext( + 'aur.received', + 'A patron acquisition request has been marked Received.', + 'ath', + 'description' + ), + TRUE + ), ( + 'aur.cancelled', + 'aur', + oils_i18n_gettext( + 'aur.cancelled', + 'A patron acquisition request has been marked Cancelled.', + 'ath', + 'description' + ), + TRUE + ), ( + 'aur.created', + 'aur', + oils_i18n_gettext( + 'aur.created', + 'A patron has made an acquisitions request.', + 'ath', + 'description' + ), + TRUE + ), ( + 'aur.rejected', + 'aur', + oils_i18n_gettext( + 'aur.rejected', + 'A patron acquisition request has been rejected.', + 'ath', + 'description' + ), + TRUE + ) +; + +INSERT INTO action_trigger.validator (module,description) VALUES ( + 'Acq::UserRequestOrdered', + oils_i18n_gettext( + 'Acq::UserRequestOrdered', + 'Tests to see if the corresponding Line Item has a state of "on-order".', + 'atval', + 'description' + ) + ), ( + 'Acq::UserRequestReceived', + oils_i18n_gettext( + 'Acq::UserRequestReceived', + 'Tests to see if the corresponding Line Item has a state of "received".', + 'atval', + 'description' + ) + ), ( + 'Acq::UserRequestCancelled', + oils_i18n_gettext( + 'Acq::UserRequestCancelled', + 'Tests to see if the corresponding Line Item has a state of "cancelled".', + 'atval', + 'description' + ) + ) +; + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + template + ) VALUES ( + 15, + FALSE, + 1, + 'Email Notice: Patron Acquisition Request marked On-Order.', + 'aur.ordered', + 'Acq::UserRequestOrdered', + 'SendEmail', +$$ +[%- USE date -%] +[%- SET li = target.lineitem; -%] +[%- SET user = target.usr -%] +[%- SET title = helpers.get_li_attr("title", "", li.attributes) -%] +[%- SET author = helpers.get_li_attr("author", "", li.attributes) -%] +[%- SET edition = helpers.get_li_attr("edition", "", li.attributes) -%] +[%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) -%] +[%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%] +[%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%] + +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Acquisition Request Notification +Auto-Submitted: auto-generated + +Dear [% user.family_name %], [% user.first_given_name %] +Our records indicate the following acquisition request has been placed on order. + +Title: [% title %] +[% IF author %]Author: [% author %][% END %] +[% IF edition %]Edition: [% edition %][% END %] +[% IF isbn %]ISBN: [% isbn %][% END %] +[% IF publisher %]Publisher: [% publisher %][% END %] +[% IF pubdate %]Publication Date: [% pubdate %][% END %] +Lineitem ID: [% li.id %] +$$ + ), ( + 16, + FALSE, + 1, + 'Email Notice: Patron Acquisition Request marked Received.', + 'aur.received', + 'Acq::UserRequestReceived', + 'SendEmail', +$$ +[%- USE date -%] +[%- SET li = target.lineitem; -%] +[%- SET user = target.usr -%] +[%- SET title = helpers.get_li_attr("title", "", li.attributes) %] +[%- SET author = helpers.get_li_attr("author", "", li.attributes) %] +[%- SET edition = helpers.get_li_attr("edition", "", li.attributes) %] +[%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) %] +[%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%] +[%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%] + +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Acquisition Request Notification +Auto-Submitted: auto-generated + +Dear [% user.family_name %], [% user.first_given_name %] +Our records indicate the materials for the following acquisition request have been received. + +Title: [% title %] +[% IF author %]Author: [% author %][% END %] +[% IF edition %]Edition: [% edition %][% END %] +[% IF isbn %]ISBN: [% isbn %][% END %] +[% IF publisher %]Publisher: [% publisher %][% END %] +[% IF pubdate %]Publication Date: [% pubdate %][% END %] +Lineitem ID: [% li.id %] +$$ + ), ( + 17, + FALSE, + 1, + 'Email Notice: Patron Acquisition Request marked Cancelled.', + 'aur.cancelled', + 'Acq::UserRequestCancelled', + 'SendEmail', +$$ +[%- USE date -%] +[%- SET li = target.lineitem; -%] +[%- SET user = target.usr -%] +[%- SET title = helpers.get_li_attr("title", "", li.attributes) %] +[%- SET author = helpers.get_li_attr("author", "", li.attributes) %] +[%- SET edition = helpers.get_li_attr("edition", "", li.attributes) %] +[%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) %] +[%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%] +[%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%] + +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Acquisition Request Notification +Auto-Submitted: auto-generated + +Dear [% user.family_name %], [% user.first_given_name %] +Our records indicate the following acquisition request has been cancelled. + +Title: [% title %] +[% IF author %]Author: [% author %][% END %] +[% IF edition %]Edition: [% edition %][% END %] +[% IF isbn %]ISBN: [% isbn %][% END %] +[% IF publisher %]Publisher: [% publisher %][% END %] +[% IF pubdate %]Publication Date: [% pubdate %][% END %] +Lineitem ID: [% li.id %] +$$ + ), ( + 18, + FALSE, + 1, + 'Email Notice: Acquisition Request created.', + 'aur.created', + 'NOOP_True', + 'SendEmail', +$$ +[%- USE date -%] +[%- SET user = target.usr -%] +[%- SET title = target.title -%] +[%- SET author = target.author -%] +[%- SET isxn = target.isxn -%] +[%- SET publisher = target.publisher -%] +[%- SET pubdate = target.pubdate -%] + +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Acquisition Request Notification +Auto-Submitted: auto-generated + +Dear [% user.family_name %], [% user.first_given_name %] +Our records indicate that you have made the following acquisition request: + +Title: [% title %] +[% IF author %]Author: [% author %][% END %] +[% IF edition %]Edition: [% edition %][% END %] +[% IF isbn %]ISXN: [% isxn %][% END %] +[% IF publisher %]Publisher: [% publisher %][% END %] +[% IF pubdate %]Publication Date: [% pubdate %][% END %] +$$ + ), ( + 19, + FALSE, + 1, + 'Email Notice: Acquisition Request Rejected.', + 'aur.rejected', + 'NOOP_True', + 'SendEmail', +$$ +[%- USE date -%] +[%- SET user = target.usr -%] +[%- SET title = target.title -%] +[%- SET author = target.author -%] +[%- SET isxn = target.isxn -%] +[%- SET publisher = target.publisher -%] +[%- SET pubdate = target.pubdate -%] +[%- SET cancel_reason = target.cancel_reason.description -%] + +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Acquisition Request Notification +Auto-Submitted: auto-generated + +Dear [% user.family_name %], [% user.first_given_name %] +Our records indicate the following acquisition request has been rejected for this reason: [% cancel_reason %] + +Title: [% title %] +[% IF author %]Author: [% author %][% END %] +[% IF edition %]Edition: [% edition %][% END %] +[% IF isbn %]ISBN: [% isbn %][% END %] +[% IF publisher %]Publisher: [% publisher %][% END %] +[% IF pubdate %]Publication Date: [% pubdate %][% END %] +$$ + ) +; + +INSERT INTO action_trigger.environment ( + event_def, + path + ) VALUES + ( 15, 'lineitem' ), + ( 15, 'lineitem.attributes' ), + ( 15, 'usr' ), + + ( 16, 'lineitem' ), + ( 16, 'lineitem.attributes' ), + ( 16, 'usr' ), + + ( 17, 'lineitem' ), + ( 17, 'lineitem.attributes' ), + ( 17, 'usr' ), + + ( 18, 'usr' ), + ( 19, 'usr' ), + ( 19, 'cancel_reason' ) + ; + +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('password.reset_request','aupr','Patron has requested a self-serve password reset'); +INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, template) + VALUES (20, 'f', 1, 'Password reset request notification', 'password.reset_request', 'NOOP_True', 'SendEmail', '00:00:01', +$$ +[%- USE date -%] +[%- user = target.usr -%] +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || user.home_ou.email || default_sender %] +Subject: [% user.home_ou.name %]: library account password reset request +Auto-Submitted: auto-generated + +You have received this message because you, or somebody else, requested a reset +of your library system password. If you did not request a reset of your library +system password, just ignore this message and your current password will +continue to work. + +If you did request a reset of your library system password, please perform +the following steps to continue the process of resetting your password: + +1. Open the following link in a web browser: https://[% params.hostname %]/eg/opac/password_reset/[% target.uuid %] +The browser displays a password reset form. + +2. Enter your new password in the password reset form in the browser. You must +enter the password twice to ensure that you do not make a mistake. If the +passwords match, you will then be able to log in to your library system account +with the new password. + +$$); +INSERT INTO action_trigger.environment ( event_def, path) VALUES + ( 20, 'usr' ); +INSERT INTO action_trigger.environment ( event_def, path) VALUES + ( 20, 'usr.home_ou' ); + + +INSERT INTO action_trigger.hook (key, core_type, description, passive) + VALUES ( + 'format.acqcle.html', + 'acqcle', + 'Formats claim events into a voucher', + TRUE + ); + +INSERT INTO action_trigger.event_definition ( + id, active, owner, name, hook, group_field, + validator, reactor, granularity, template + ) VALUES ( + 21, + TRUE, + 1, + 'Claim Voucher', + 'format.acqcle.html', + 'claim', + 'NOOP_True', + 'ProcessTemplate', + 'print-on-demand', +$$ +[%- USE date -%] +[%- SET claim = target.0.claim -%] + +
+

Claim: [% claim.id %] ([% claim.type.code %])

+

Against: [%- helpers.get_li_attr("title", "", claim.lineitem_detail.lineitem.attributes) -%]

+
    + [% FOR event IN target %] +
  • + Event type: [% event.type.code %] + [% IF event.type.library_initiated %](Library initiated)[% END %] +
    + Event date: [% event.event_date %]
    + Order date: [% event.claim.lineitem_detail.lineitem.purchase_order.order_date %]
    + Expected receive date: [% event.claim.lineitem_detail.lineitem.expected_recv_time %]
    + Initiated by: [% event.creator.family_name %], [% event.creator.first_given_name %] [% event.creator.second_given_name %]
    + Barcode: [% event.claim.lineitem_detail.barcode %]; Fund: + [% event.claim.lineitem_detail.fund.code %] + ([% event.claim.lineitem_detail.fund.year %]) +
  • + [% END %] +
+
+$$ +); + +INSERT INTO action_trigger.environment (event_def, path) VALUES + (21, 'claim'), + (21, 'claim.type'), + (21, 'claim.lineitem_detail'), + (21, 'claim.lineitem_detail.fund'), + (21, 'claim.lineitem_detail.lineitem.attributes'), + (21, 'claim.lineitem_detail.lineitem.purchase_order'), + (21, 'creator'), + (21, 'type') +; + + +INSERT INTO action_trigger.hook (key, core_type, description, passive) + VALUES ( + 'format.acqinv.html', + 'acqinv', + 'Formats invoices into a voucher', + TRUE + ); + +INSERT INTO action_trigger.event_definition ( + id, active, owner, name, hook, + validator, reactor, granularity, template + ) VALUES ( + 22, + TRUE, + 1, + 'Invoice', + 'format.acqinv.html', + 'NOOP_True', + 'ProcessTemplate', + 'print-on-demand', +$$ +[% FILTER collapse %] +[%- SET invoice = target -%] + +
+

Invoice

+
+ No. [% invoice.inv_ident %] + [% IF invoice.inv_type %] + / Type:[% invoice.inv_type %] + [% END %] +
+
+
+ [% BLOCK ent_with_address %] +
[% ent_label %]: [% ent.name %] ([% ent.code %])
+
+ [% IF ent.addresses.0 %] + [% SET addr = ent.addresses.0 %] + [% addr.street1 %]
+ [% IF addr.street2 %][% addr.street2 %]
[% END %] + [% addr.city %], + [% IF addr.county %] [% addr.county %], [% END %] + [% IF addr.state %] [% addr.state %] [% END %] + [% IF addr.post_code %][% addr.post_code %][% END %]
+ [% IF addr.country %] [% addr.country %] [% END %] + [% END %] +

+ [% IF ent.phone %] Phone: [% ent.phone %]
[% END %] + [% IF ent.fax_phone %] Fax: [% ent.fax_phone %]
[% END %] + [% IF ent.url %] URL: [% ent.url %]
[% END %] + [% IF ent.email %] E-mail: [% ent.email %] [% END %] +

+
+ [% END %] + [% INCLUDE ent_with_address + ent = invoice.provider + ent_label = "Provider" %] + [% INCLUDE ent_with_address + ent = invoice.shipper + ent_label = "Shipper" %] +
Receiver
+
+ [% invoice.receiver.name %] ([% invoice.receiver.shortname %]) +
+
Received
+
+ [% helpers.format_date(invoice.recv_date) %] by + [% invoice.recv_method %] +
+ [% IF invoice.note %] +
Note
+
+ [% invoice.note %] +
+ [% END %] +
+
+
    + [% FOR entry IN invoice.entries %] +
  • + [% IF entry.lineitem %] + Title: [% helpers.get_li_attr( + "title", "", entry.lineitem.attributes + ) %]
    + Author: [% helpers.get_li_attr( + "author", "", entry.lineitem.attributes + ) %] + [% END %] + [% IF entry.purchase_order %] + (PO: [% entry.purchase_order.name %]) + [% END %]
    + Invoice item count: [% entry.inv_item_count %] + [% IF entry.phys_item_count %] + / Physical item count: [% entry.phys_item_count %] + [% END %] +
    + [% IF entry.cost_billed %] + Cost billed: [% entry.cost_billed %] + [% IF entry.billed_per_item %](per item)[% END %] +
    + [% END %] + [% IF entry.actual_cost %] + Actual cost: [% entry.actual_cost %]
    + [% END %] + [% IF entry.amount_paid %] + Amount paid: [% entry.amount_paid %]
    + [% END %] + [% IF entry.note %]Note: [% entry.note %][% END %] +
  • + [% END %] + [% FOR item IN invoice.items %] +
  • + [% IF item.inv_item_type %] + Item Type: [% item.inv_item_type %]
    + [% END %] + [% IF item.title %]Title/Description: + [% item.title %]
    + [% END %] + [% IF item.author %]Author: [% item.author %]
    [% END %] + [% IF item.purchase_order %]PO: [% item.purchase_order %]
    [% END %] + [% IF item.note %]Note: [% item.note %]
    [% END %] + [% IF item.cost_billed %] + Cost billed: [% item.cost_billed %]
    + [% END %] + [% IF item.actual_cost %] + Actual cost: [% item.actual_cost %]
    + [% END %] + [% IF item.amount_paid %] + Amount paid: [% item.amount_paid %]
    + [% END %] +
  • + [% END %] +
+
+ Amounts spent per fund: + + [% FOR blob IN user_data %] + + + + + [% END %] +
[% blob.fund.code %] ([% blob.fund.year %]):$[% blob.total %]
+
+
+[% END %]$$ +); + + +INSERT INTO action_trigger.environment (event_def, path) VALUES + (22, 'provider'), + (22, 'provider.addresses'), + (22, 'shipper'), + (22, 'shipper.addresses'), + (22, 'receiver'), + (22, 'entries'), + (22, 'entries.purchase_order'), + (22, 'entries.lineitem'), + (22, 'entries.lineitem.attributes'), + (22, 'items') +; + +SELECT SETVAL('action_trigger.event_definition_id_seq'::TEXT, 100); + +-- Hold cancel action/trigger hooks + +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ( + 'hold_request.cancel.expire_no_target', + 'ahr', + 'A hold is cancelled because no copies were found' +); + +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ( + 'hold_request.cancel.expire_holds_shelf', + 'ahr', + 'A hold is cancelled because it was on the holds shelf too long' +); + +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ( + 'hold_request.cancel.staff', + 'ahr', + 'A hold is cancelled because it was cancelled by staff' +); + +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ( + 'hold_request.cancel.patron', + 'ahr', + 'A hold is cancelled by the patron' +); + + +-- in-db indexing normalizers +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'NACO Normalize', + 'Apply NACO normalization rules to the extracted text. See http://www.loc.gov/catdir/pcc/naco/normrule-2.html for details.', + 'naco_normalize', + 0 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Normalize date range', + 'Split date ranges in the form of "XXXX-YYYY" into "XXXX YYYY" for proper index.', + 'split_date_range', + 0 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'NACO Normalize -- retain first comma', + 'Apply NACO normalization rules to the extracted text, retaining the first comma. See http://www.loc.gov/catdir/pcc/naco/normrule-2.html for details.', + 'naco_normalize_keep_comma', + 0 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Strip Diacritics', + 'Convert text to NFD form and remove non-spacing combining marks.', + 'remove_diacritics', + 0 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Remove Parenthesized Substring', + 'Remove any parenthesized substrings from the extracted text, such as the agency code preceding authority record control numbers in subfield 0.', + 'remove_paren_substring', + 0 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Up-case', + 'Convert text upper case.', + 'uppercase', + 0 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Down-case', + 'Convert text lower case.', + 'lowercase', + 0 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Extract Dewey-like number', + 'Extract a string of numeric characters that resembles a DDC number.', + 'call_number_dewey', + 0 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Left truncation', + 'Discard the specified number of characters from the left side of the string.', + 'left_trunc', + 1 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Right truncation', + 'Include only the specified number of characters from the left side of the string.', + 'right_trunc', + 1 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'First word', + 'Include only the first space-separated word of a string.', + 'first_word', + 0 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'ISBN 10/13 conversion', + 'Translate ISBN10 to ISBN13 and vice versa.', + 'translate_isbn1013', + 0 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Replace', + 'Replace all occurences of first parameter in the string with the second parameter.', + 'replace', + 2 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Trim Surrounding Space', + 'Trim leading and trailing spaces from extracted text.', + 'btrim', + 0 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Generic Mapping Normalizer', + 'Map values or sets of values to new values', + 'generic_map_normalizer', + 1 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Coded Value Map Normalizer', + 'Applies coded_value_map mapping of values', + 'coded_value_map_normalizer', + 1 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Search Normalize', + 'Apply search normalization rules to the extracted text. A less extreme version of NACO normalization.', + 'search_normalize', + 0 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Number or NULL Normalize', + 'Normalize the value to NULL if it is not a number', + 'integer_or_null', + 0 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Approximate Low Date Normalize', + 'Normalize the value to the nearest date-ish value, rounding down', + 'approximate_low_date', + 0 +); + +INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES ( + 'Approximate High Date Normalize', + 'Normalize the value to the nearest date-ish value, rounding up', + 'approximate_high_date', + 0 +); + +-- make use of the index normalizers + +INSERT INTO config.metabib_field_index_norm_map (field,norm) + SELECT m.id, + i.id + FROM config.metabib_field m, + config.index_normalizer i + WHERE i.func IN ('search_normalize','split_date_range') + AND m.id NOT IN (18, 19, 25); + +INSERT INTO config.metabib_field_index_norm_map (field,norm,pos) + SELECT m.id, + i.id, + 2 + FROM config.metabib_field m, + config.index_normalizer i + WHERE i.func IN ('translate_isbn1013') + AND m.id IN (18); + +INSERT INTO config.metabib_field_index_norm_map (field,norm,params) + SELECT m.id, + i.id, + $$["-",""]$$ + FROM config.metabib_field m, + config.index_normalizer i + WHERE i.func IN ('replace') + AND m.id IN (19); + +INSERT INTO config.metabib_field_index_norm_map (field,norm,params, pos) + SELECT m.id, + i.id, + $$["]",""]$$, + '-1' + FROM config.metabib_field m, + config.index_normalizer i + WHERE i.func IN ('replace') + AND m.id IN (1); + +INSERT INTO config.metabib_field_index_norm_map (field,norm,params, pos) + SELECT m.id, + i.id, + $$["[",""]$$, + '-1' + FROM config.metabib_field m, + config.index_normalizer i + WHERE i.func IN ('replace') + AND m.id IN (1); + +INSERT INTO config.metabib_field_index_norm_map (field,norm,pos) + SELECT m.id, + i.id, + -1 + FROM config.metabib_field m, + config.index_normalizer i + WHERE i.func = 'remove_paren_substring' + AND m.id IN (28); + +INSERT INTO config.record_attr_index_norm_map (attr,norm,pos) + SELECT m.name, i.id, 0 + FROM config.record_attr_definition m, + config.index_normalizer i + WHERE i.func IN ('content_or_null') + AND m.name IN ('titlesort', 'authorsort'); + +INSERT INTO config.record_attr_index_norm_map (attr,norm,pos) + SELECT m.name, i.id, 0 + FROM config.record_attr_definition m, + config.index_normalizer i + WHERE i.func IN ('integer_or_null') + AND m.name IN ('pubdate'); + +INSERT INTO config.record_attr_index_norm_map (attr,norm,pos) + SELECT m.name, i.id, 0 + FROM config.record_attr_definition m, + config.index_normalizer i + WHERE i.func IN ('approximate_low_date') + AND m.name IN ('date1'); + +INSERT INTO config.record_attr_index_norm_map (attr,norm,pos) + SELECT m.name, i.id, 0 + FROM config.record_attr_definition m, + config.index_normalizer i + WHERE i.func IN ('approximate_high_date') + AND m.name IN ('date2'); + +-- Sample Pre-due Notice -- + +INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, delay_field, group_field, max_delay, template) + VALUES (6, 'f', 1, '3 Day Courtesy Notice', 'checkout.due', 'CircIsOpen', 'SendEmail', '-3 days', 'due_date', 'usr', '-2 days', +$$ +[%- USE date -%] +[%- user = target.0.usr -%] +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Courtesy Notice +Auto-Submitted: auto-generated + +Dear [% user.family_name %], [% user.first_given_name %] +As a reminder, the following items are due in 3 days. + +[% FOR circ IN target %] + [%- copy_details = helpers.get_copy_bib_basics(circ.target_copy.id) -%] + Title: [% copy_details.title %] + Author: [% copy_details.author %] + Barcode: [% circ.target_copy.barcode %] + Due: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %] + Item Cost: [% helpers.get_copy_price(circ.target_copy) %] + Library: [% circ.circ_lib.name %] + Library Phone: [% circ.circ_lib.phone %] + +[% END %] + +$$); + +INSERT INTO action_trigger.environment (event_def, path) VALUES + (6, 'target_copy.call_number'), + (6, 'usr'), + (6, 'circ_lib.billing_address'); + +-- Additional A/T Reactors + +INSERT INTO action_trigger.reactor (module,description) VALUES +( 'ApplyPatronPenalty', + oils_i18n_gettext( + 'ApplyPatronPenalty', + 'Applies the configured penalty to a patron. Required named environment variables are "user", which refers to the user object, and "context_org", which refers to the org_unit object that acts as the focus for the penalty.', + 'atreact', + 'description' + ) +); + +INSERT INTO action_trigger.reactor (module,description) VALUES +( 'SendFile', + oils_i18n_gettext( + 'SendFile', + 'Build and transfer a file to a remote server. Required parameter "remote_host" specifying target server. Optional parameters: remote_user, remote_password, remote_account, port, type (FTP, SFTP or SCP), and debug.', + 'atreact', + 'description' + ) +); + +-- self-check checkout receipt + +INSERT INTO action_trigger.hook (key, core_type, description, passive) + VALUES ( + 'format.selfcheck.checkout', + 'circ', + 'Formats circ objects for self-checkout receipt', + TRUE + ); + +INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template ) + VALUES ( + 10, + TRUE, + 1, + 'Self-Checkout Receipt', + 'format.selfcheck.checkout', + 'NOOP_True', + 'ProcessTemplate', + 'usr', + 'print-on-demand', +$$ +[%- USE date -%] +[%- SET user = target.0.usr -%] +[%- SET lib = target.0.circ_lib -%] +[%- SET lib_addr = target.0.circ_lib.billing_address -%] +[%- SET hours = lib.hours_of_operation -%] +
+ +
[% date.format %]
+
[% lib.name %]
+
[% lib_addr.street1 %] [% lib_addr.street2 %]
+
[% lib_addr.city %], [% lib_addr.state %] [% lib_addr.post_code %]
+
[% lib.phone %]
+
+ + [% user.family_name %], [% user.first_given_name %] +
    + [% FOR circ IN target %] + [%- + SET idx = loop.count - 1; + SET udata = user_data.$idx + -%] +
  1. +
    [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
    +
    Barcode: [% circ.target_copy.barcode %]
    + [% IF user_data.renewal_failure %] +
    Renewal Failed
    + [% ELSE %] +
    Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
    + [% END %] +
  2. + [% END %] +
+ +
+ Library Hours + [%- BLOCK format_time; date.format(time _ ' 1/1/1000', format='%I:%M %p'); END -%] +
+ Monday + [% PROCESS format_time time = hours.dow_0_open %] + [% PROCESS format_time time = hours.dow_0_close %] +
+
+ Tuesday + [% PROCESS format_time time = hours.dow_1_open %] + [% PROCESS format_time time = hours.dow_1_close %] +
+
+ Wednesday + [% PROCESS format_time time = hours.dow_2_open %] + [% PROCESS format_time time = hours.dow_2_close %] +
+
+ Thursday + [% PROCESS format_time time = hours.dow_3_open %] + [% PROCESS format_time time = hours.dow_3_close %] +
+
+ Friday + [% PROCESS format_time time = hours.dow_4_open %] + [% PROCESS format_time time = hours.dow_4_close %] +
+
+ Saturday + [% PROCESS format_time time = hours.dow_5_open %] + [% PROCESS format_time time = hours.dow_5_close %] +
+
+ Sunday + [% PROCESS format_time time = hours.dow_6_open %] + [% PROCESS format_time time = hours.dow_6_close %] +
+
+
+$$ +); + + +INSERT INTO action_trigger.environment ( event_def, path) VALUES + ( 10, 'target_copy'), + ( 10, 'circ_lib.billing_address'), + ( 10, 'circ_lib.hours_of_operation'), + ( 10, 'usr'); + + +-- items out selfcheck receipt + +INSERT INTO action_trigger.hook (key, core_type, description, passive) + VALUES ( + 'format.selfcheck.items_out', + 'circ', + 'Formats items out for self-checkout receipt', + TRUE + ); + +INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template ) + VALUES ( + 11, + TRUE, + 1, + 'Self-Checkout Items Out Receipt', + 'format.selfcheck.items_out', + 'NOOP_True', + 'ProcessTemplate', + 'usr', + 'print-on-demand', +$$ +[%- USE date -%] +[%- SET user = target.0.usr -%] +
+ +
[% date.format %]
+
+ + [% user.family_name %], [% user.first_given_name %] +
    + [% FOR circ IN target %] +
  1. +
    [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
    +
    Barcode: [% circ.target_copy.barcode %]
    +
    Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
    +
  2. + [% END %] +
+
+$$ +); + + +INSERT INTO action_trigger.environment ( event_def, path) VALUES + ( 11, 'target_copy'), + ( 11, 'circ_lib.billing_address'), + ( 11, 'circ_lib.hours_of_operation'), + ( 11, 'usr'); + +INSERT INTO action_trigger.hook (key, core_type, description, passive) + VALUES ( + 'format.selfcheck.holds', + 'ahr', + 'Formats holds for self-checkout receipt', + TRUE + ); + +INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template ) + VALUES ( + 12, + TRUE, + 1, + 'Self-Checkout Holds Receipt', + 'format.selfcheck.holds', + 'NOOP_True', + 'ProcessTemplate', + 'usr', + 'print-on-demand', +$$ +[%- USE date -%] +[%- SET user = target.0.usr -%] +
+ +
[% date.format %]
+
+ Holds for:
+ [% user.family_name %], [% user.first_given_name %] + +
    + [% FOR hold IN target %] + [%- + SET idx = loop.count - 1; + SET udata = user_data.$idx + -%] +
  1. +
    Title: [% udata.item_title %]
    +
    Author: [% udata.item_author %]
    +
    Pickup Location: [% udata.pickup_lib %]
    +
    Status: + [%- IF udata.ready -%] + Ready for pickup + [% ELSE %] + #[% udata.queue_position %] of [% udata.potential_copies %] copies. + [% END %] +
    +
  2. + [% END %] +
+
+$$ +); + + +INSERT INTO action_trigger.environment ( event_def, path) VALUES + ( 12, 'bib_rec.bib_record.simple_record'), + ( 12, 'pickup_lib'), + ( 12, 'usr'); + +-- fines receipt + +INSERT INTO action_trigger.hook (key, core_type, description, passive) + VALUES ( + 'format.selfcheck.fines', + 'au', + 'Formats fines for self-checkout receipt', + TRUE + ); + +INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, granularity, template ) + VALUES ( + 13, + TRUE, + 1, + 'Self-Checkout Fines Receipt', + 'format.selfcheck.fines', + 'NOOP_True', + 'ProcessTemplate', + 'print-on-demand', +$$ +[%- USE date -%] +[%- SET user = target -%] +
+ +
[% date.format %]
+
+ + Fines for:
+ [% user.family_name %], [% user.first_given_name %] +
    + [% FOR xact IN user.open_billable_transactions_summary %] + [% IF xact.balance_owed > 0 %] +
  1. +
    Details: + [% IF xact.xact_type == 'circulation' %] + [%- helpers.get_copy_bib_basics(xact.circulation.target_copy).title -%] + [% ELSE %] + [%- xact.last_billing_type -%] + [% END %] +
    +
    Total Billed: [% xact.total_owed %]
    +
    Total Paid: [% xact.total_paid %]
    +
    Balance Owed : [% xact.balance_owed %]
    +
  2. + [% END %] + [% END %] +
+
+$$ +); + +INSERT INTO action_trigger.hook (key, core_type, description, passive) + VALUES ( + 'format.acqli.html', + 'jub', + 'Formats lineitem worksheet for titles received', + TRUE + ); + +INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, granularity, template) + VALUES ( + 14, + TRUE, + 1, + 'Lineitem Worksheet', + 'format.acqli.html', + 'NOOP_True', + 'ProcessTemplate', + 'print-on-demand', +$$ +[%- USE date -%] +[%- SET li = target; -%] +
+
+ +
Title: [% helpers.get_li_attr("title", "", li.attributes) %]
+
Author: [% helpers.get_li_attr("author", "", li.attributes) %]
+
Item Count: [% li.lineitem_details.size %]
+
Lineitem ID: [% li.id %]
+
Open Holds: [% helpers.bre_open_hold_count(li.eg_bib_id) %]
+ [% IF li.cancel_reason.label %] +
[% li.cancel_reason.label %]
+ [% END %] + + [% IF li.distribution_formulas.size > 0 %] + [% SET forms = [] %] + [% FOREACH form IN li.distribution_formulas; forms.push(form.formula.name); END %] +
Distribution Formulas: [% forms.join(',') %]
+ [% END %] + + [% IF li.lineitem_notes.size > 0 %] + Lineitem Notes: +
    + [%- FOR note IN li.lineitem_notes -%] +
  • + [% IF note.alert_text %] + [% note.alert_text.code -%] + [% IF note.value -%] + : [% note.value %] + [% END %] + [% ELSE %] + [% note.value -%] + [% END %] +
  • + [% END %] +
+ [% END %] +
+
+ + + + + + + + + + + + + + + + [% FOREACH detail IN li.lineitem_details %] + [% detail.owning_lib = detail.owning_lib.shortname %] + [% END %] + + [% FOREACH detail IN li.lineitem_details.sort('owning_lib') %] + [% + IF detail.eg_copy_id; + SET copy = detail.eg_copy_id; + SET cn_label = copy.call_number.label; + ELSE; + SET copy = detail; + SET cn_label = detail.cn_label; + END + %] + + + + + + + + + + + + [% END %] + +
BranchBarcodeCall NumberFundShelving LocationRecd.NotesDelayed / Canceled
[% detail.owning_lib %][% IF copy.barcode %][% detail.barcode %][% END %][% IF cn_label %][% cn_label %][% END %][% IF detail.fund %][% detail.fund.code %] ([% detail.fund.year %])[% END %][% copy.location.name %][% IF detail.recv_time %][% detail.recv_time %][% END %][% detail.note %][% detail.cancel_reason.label %]
+
+$$ +); + + +INSERT INTO action_trigger.environment (event_def, path) VALUES + ( 14, 'attributes' ), + ( 14, 'cancel_reason' ), + ( 14, 'lineitem_notes' ), + ( 14, 'lineitem_notes.alert_text' ), + ( 14, 'distribution_formulas.formula' ), + ( 14, 'lineitem_details' ), + ( 14, 'lineitem_details.cancel_reason' ), + ( 14, 'lineitem_details.owning_lib' ), + ( 14, 'lineitem_details.fund' ), + ( 14, 'lineitem_details.location' ), + ( 14, 'lineitem_details.eg_copy_id' ), + ( 14, 'lineitem_details.eg_copy_id.call_number' ), + ( 14, 'lineitem_details.eg_copy_id.location' ) +; + +INSERT INTO action_trigger.environment ( event_def, path) VALUES + ( 13, 'open_billable_transactions_summary.circulation' ); + + +INSERT INTO action_trigger.validator (module, description) + VALUES ( + 'Acq::PurchaseOrderEDIRequired', + oils_i18n_gettext( + 'Acq::PurchaseOrderEDIRequired', + 'Purchase order is delivered via EDI', + 'atval', + 'description' + ) + ); + +INSERT INTO action_trigger.reactor (module, description) + VALUES ( + 'GeneratePurchaseOrderJEDI', + oils_i18n_gettext( + 'GeneratePurchaseOrderJEDI', + 'Creates purchase order JEDI (JSON EDI) for subsequent EDI processing', + 'atreact', + 'description' + ) + ); + + +INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, cleanup_success, cleanup_failure, delay, delay_field, group_field, template) + VALUES (23, true, 1, 'PO JEDI', 'acqpo.activated', 'Acq::PurchaseOrderEDIRequired', 'GeneratePurchaseOrderJEDI', NULL, NULL, '00:00:00', NULL, NULL, +$$ +[%- USE date -%] +[% + # extract some commonly used variables + + VENDOR_SAN = target.provider.san; + VENDCODE = target.provider.edi_default.vendcode; + VENDACCT = target.provider.edi_default.vendacct; + ORG_UNIT_SAN = target.ordering_agency.mailing_address.san; + + # set the vendor / provider + + VENDOR_BT = 0; # Baker & Taylor + VENDOR_INGRAM = 0; + VENDOR_BRODART = 0; + VENDOR_MW_TAPE = 0; # Midwest Tape + VENDOR_RB = 0; # Recorded Books + VENDOR_ULS = 0; # ULS + + IF VENDOR_SAN == '1556150'; VENDOR_BT = 1; + ELSIF VENDOR_SAN == '1697684'; VENDOR_BRODART = 1; + ELSIF VENDOR_SAN == '1697978'; VENDOR_INGRAM = 1; + ELSIF VENDOR_SAN == '2549913'; VENDOR_MW_TAPE = 1; + ELSIF VENDOR_SAN == '1113984'; VENDOR_RB = 1; + ELSIF VENDOR_SAN == '1699342'; VENDOR_ULS = 1; + END; + + # if true, pass the PO name as a secondary identifier + # RFF+LI:/li_id + INC_PO_NAME = 0; + IF VENDOR_INGRAM; + INC_PO_NAME = 1; + END; + + # GIR configuration -------------------------------------- + + INC_COPIES = 1; # copies on/off switch + INC_FUND = 0; + INC_CALLNUMBER = 0; + INC_ITEM_TYPE = 1; + INC_LOCATION = 0; + INC_COLLECTION_CODE = 1; + INC_OWNING_LIB = 1; + INC_QUANTITY = 1; + INC_COPY_ID = 0; + + IF VENDOR_BT; + INC_CALLNUMBER = 1; + END; + + IF VENDOR_BRODART; + INC_FUND = 1; + END; + + IF VENDOR_MW_TAPE; + INC_FUND = 1; + INC_COLLECTION_CODE = 0; + INC_ITEM_TYPE = 0; + END; + + # END GIR configuration --------------------------------- + +-%] +[%- BLOCK big_block -%] +{ + "recipient":"[% VENDOR_SAN %]", + "sender":"[% ORG_UNIT_SAN %]", + "body": [{ + "ORDERS":[ "order", { + + "po_number":[% target.id %], + + [% IF INC_PO_NAME %] + "po_name":"[% target.name | replace('\/', ' ') | replace('"', '\"') %]", + [% END %] + + "date":"[% date.format(date.now, '%Y%m%d') %]", + + "buyer":[ + [% IF VENDOR_BT %] + {"id-qualifier": 91, "id":"[% ORG_UNIT_SAN %] [% VENDCODE %]"} + [% ELSE %] + {"id":"[% ORG_UNIT_SAN %]"}, + {"id-qualifier": 91, "id":"[% VENDACCT %]"} + [% END %] + ], + + "vendor":[ + "[% VENDOR_SAN %]", + {"id-qualifier": 92, "id":"[% target.provider.id %]"} + ], + + "currency":"[% target.provider.currency_type %]", + + "items":[ + [%- FOR li IN target.lineitems %] + { + "line_index":"[% li.id %]", + "identifiers":[ + [%- + idval = ''; + idqual = 'EN'; # default ISBN/UPC/EAN-13 + ident_attr = helpers.get_li_order_ident(li.attributes); + IF ident_attr; + idname = ident_attr.attr_name; + idval = ident_attr.attr_value; + IF idname == 'isbn' AND idval.length != 13; + idqual = 'IB'; + ELSIF idname == 'issn'; + idqual = 'IS'; + END; + ELSE; + idqual = 'IN'; + idval = li.id; + END -%] + {"id-qualifier":"[% idqual %]","id":"[% idval %]"} + ], + "price":[% li.estimated_unit_price || '0.00' %], + "desc":[ + {"BTI":"[% helpers.get_li_attr_jedi('title', '', li.attributes) %]"}, + {"BPU":"[% helpers.get_li_attr_jedi('publisher', '', li.attributes) %]"}, + {"BPD":"[% helpers.get_li_attr_jedi('pubdate', '', li.attributes) %]"}, + [% IF VENDOR_ULS -%] + {"BEN":"[% helpers.get_li_attr_jedi('edition', '', li.attributes) %]"}, + {"BAU":"[% helpers.get_li_attr_jedi('author', '', li.attributes) %]"} + [%- ELSE -%] + {"BPH":"[% helpers.get_li_attr_jedi('pagination','', li.attributes) %]"} + [%- END %] + ], + [%- ftx_vals = []; + FOR note IN li.lineitem_notes; + NEXT UNLESS note.vendor_public == 't'; + ftx_vals.push(note.value); + END; + IF VENDOR_BRODART; # look for copy-level spec code + FOR lid IN li.lineitem_details; + IF lid.note; + spec_note = lid.note.match('spec code ([a-zA-Z0-9_])'); + IF spec_note.0; ftx_vals.push(spec_note.0); END; + END; + END; + END; + IF xtra_ftx; ftx_vals.unshift(xtra_ftx); END; + + # BT & ULS want FTX+LIN for every LI, even if empty + IF ((VENDOR_BT OR VENDOR_ULS) AND ftx_vals.size == 0); + ftx_vals.unshift(''); + END; + -%] + + "free-text":[ + [% FOR note IN ftx_vals -%] "[% note %]"[% UNLESS loop.last %], [% END %][% END %] + ], + + "quantity":[% li.lineitem_details.size %] + + [%- IF INC_COPIES -%] + ,"copies" : [ + [%- compressed_copies = []; + FOR lid IN li.lineitem_details; + fund = lid.fund.code; + item_type = lid.circ_modifier; + callnumber = lid.cn_label; + owning_lib = lid.owning_lib.shortname; + location = lid.location; + collection_code = lid.collection_code; + + # when we have real copy data, treat it as authoritative for some fields + acp = lid.eg_copy_id; + IF acp; + item_type = acp.circ_modifier; + callnumber = acp.call_number.label; + location = acp.location.name; + END ; + + + # collapse like copies into groups w/ quantity + + found_match = 0; + IF !INC_COPY_ID; # INC_COPY_ID implies 1 copy per GIR + FOR copy IN compressed_copies; + IF (fund == copy.fund OR (!fund AND !copy.fund)) AND + (item_type == copy.item_type OR (!item_type AND !copy.item_type)) AND + (callnumber == copy.callnumber OR (!callnumber AND !copy.callnumber)) AND + (owning_lib == copy.owning_lib OR (!owning_lib AND !copy.owning_lib)) AND + (location == copy.location OR (!location AND !copy.location)) AND + (collection_code == copy.collection_code OR (!collection_code AND !copy.collection_code)); + + copy.quantity = copy.quantity + 1; + found_match = 1; + END; + END; + END; + + IF !found_match; + compressed_copies.push({ + fund => fund, + item_type => item_type, + callnumber => callnumber, + owning_lib => owning_lib, + location => location, + collection_code => collection_code, + copy_id => lid.id, # for INC_COPY_ID + quantity => 1 + }); + END; + END; + FOR copy IN compressed_copies; + + # If we assume owning_lib is required and set, + # it is safe to prepend each following copy field w/ a "," + + # B&T EDI requires expected GIR fields to be + # present regardless of whether a value exists. + # some fields are required to have a value in ACQ, + # though, so they are not forced into place below. + + %]{[%- IF INC_OWNING_LIB AND copy.owning_lib %] "owning_lib":"[% copy.owning_lib %]"[% END -%] + [%- IF INC_FUND AND copy.fund %],"fund":"[% copy.fund %]"[% END -%] + [%- IF INC_CALLNUMBER AND (VENDOR_BT OR copy.callnumber) %],"call_number":"[% copy.callnumber %]"[% END -%] + [%- IF INC_ITEM_TYPE AND (VENDOR_BT OR copy.item_type) %],"item_type":"[% copy.item_type %]"[% END -%] + [%- IF INC_LOCATION AND copy.location %],"copy_location":"[% copy.location %]"[% END -%] + [%- IF INC_COLLECTION_CODE AND (VENDOR_BT OR copy.collection_code) %],"collection_code":"[% copy.collection_code %]"[% END -%] + [%- IF INC_QUANTITY %],"quantity":"[% copy.quantity %]"[% END -%] + [%- IF INC_COPY_ID %],"copy_id":"[% copy.copy_id %]" [% END %]}[% ',' UNLESS loop.last -%] + [%- END -%] [%# FOR compressed_copies -%] + ] + [%- END -%] [%# IF INC_COPIES %] + + }[% UNLESS loop.last %],[% END -%] + + [% END %] [%# END lineitems %] + ], + "line_items":[% target.lineitems.size %] + }] [%# close ORDERS array %] + }] [%# close body array %] +} +[% END %] +[% tempo = PROCESS big_block; helpers.escape_json(tempo) %] +$$ +); + +INSERT INTO action_trigger.environment (event_def, path) VALUES + (23, 'lineitems.attributes'), + (23, 'lineitems.lineitem_details.owning_lib'), + (23, 'lineitems.lineitem_details.location'), + (23, 'lineitems.lineitem_details.fund'), + (23, 'lineitems.lineitem_details.eg_copy_id.location'), + (23, 'lineitems.lineitem_details.eg_copy_id.call_number'), + (23, 'lineitems.lineitem_notes'), + (23, 'ordering_agency.mailing_address'), + (23, 'provider'), + (23, 'provider.edi_default'); + +INSERT INTO action_trigger.reactor (module, description) VALUES ( + 'AstCall', 'Possibly place a phone call with Asterisk' +); + +INSERT INTO + action_trigger.event_definition ( + id, active, owner, name, hook, validator, reactor, + cleanup_success, cleanup_failure, delay, delay_field, group_field, + max_delay, granularity, usr_field, opt_in_setting, template + ) VALUES ( + 24, + FALSE, + 1, + 'Telephone Overdue Notice', + 'checkout.due', 'NOOP_True', 'AstCall', + DEFAULT, DEFAULT, '5 seconds', 'due_date', 'usr', + DEFAULT, DEFAULT, DEFAULT, DEFAULT, + $$ +[% phone = target.0.usr.day_phone | replace('[\s\-\(\)]', '') -%] +[% IF phone.match('^[2-9]') %][% country = 1 %][% ELSE %][% country = '' %][% END -%] +Channel: [% channel_prefix %]/[% country %][% phone %] +Context: overdue-test +MaxRetries: 1 +RetryTime: 60 +WaitTime: 30 +Extension: 10 +Archive: 1 +Set: eg_user_id=[% target.0.usr.id %] +Set: items=[% target.size %] +Set: titlestring=[% titles = [] %][% FOR circ IN target %][% titles.push(circ.target_copy.call_number.record.simple_record.title) %][% END %][% titles.join(". ") %] +$$ + ); + +INSERT INTO + action_trigger.environment (id, event_def, path) + VALUES + (DEFAULT, 24, 'target_copy.call_number.record.simple_record'), + (DEFAULT, 24, 'usr') + ; + +-- 0285.data.history_format.sql + +INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES ( + 'circ.format.history.email', + 'auch', + oils_i18n_gettext( + 'circ.format.history.email', + 'An email has been requested for a circ history.', + 'ath', + 'description' + ), + FALSE + ) + ,( + 'circ.format.history.print', + 'auch', + oils_i18n_gettext( + 'circ.format.history.print', + 'A circ history needs to be formatted for printing.', + 'ath', + 'description' + ), + FALSE + ) + ,( + 'ahr.format.history.email', + 'ahr', + oils_i18n_gettext( + 'ahr.format.history.email', + 'An email has been requested for a hold request history.', + 'ath', + 'description' + ), + FALSE + ) + ,( + 'ahr.format.history.print', + 'ahr', + oils_i18n_gettext( + 'ahr.format.history.print', + 'A hold request history needs to be formatted for printing.', + 'ath', + 'description' + ), + FALSE + ) + +; + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + group_field, + granularity, + template + ) VALUES ( + 25, + TRUE, + 1, + 'circ.history.email', + 'circ.format.history.email', + 'NOOP_True', + 'SendEmail', + 'usr', + NULL, +$$ +[%- USE date -%] +[%- SET user = target.0.usr -%] +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Circulation History +Auto-Submitted: auto-generated + + [% FOR circ IN target %] + [% helpers.get_copy_bib_basics(circ.target_copy.id).title %] + Barcode: [% circ.target_copy.barcode %] + Checked Out: [% date.format(helpers.format_date(circ.xact_start), '%Y-%m-%d') %] + Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %] + Returned: [% + date.format( + helpers.format_date(circ.checkin_time), '%Y-%m-%d') + IF circ.checkin_time; + %] + [% END %] +$$ + ) + ,( + 26, + TRUE, + 1, + 'circ.history.print', + 'circ.format.history.print', + 'NOOP_True', + 'ProcessTemplate', + 'usr', + 'print-on-demand', +$$ +[%- USE date -%] +
+ +
[% date.format %]
+
+ + [% user.family_name %], [% user.first_given_name %] +
    + [% FOR circ IN target %] +
  1. +
    [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
    +
    Barcode: [% circ.target_copy.barcode %]
    +
    Checked Out: [% date.format(helpers.format_date(circ.xact_start), '%Y-%m-%d') %]
    +
    Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
    +
    Returned: [% + date.format( + helpers.format_date(circ.checkin_time), '%Y-%m-%d') + IF circ.checkin_time; -%] +
    +
  2. + [% END %] +
+
+$$ + ) + ,( + 27, + TRUE, + 1, + 'ahr.history.email', + 'ahr.format.history.email', + 'NOOP_True', + 'SendEmail', + 'usr', + NULL, +$$ +[%- USE date -%] +[%- SET user = target.0.usr -%] +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Hold Request History +Auto-Submitted: auto-generated + + [% FOR hold IN target %] + [% helpers.get_copy_bib_basics(hold.current_copy.id).title %] + Requested: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %] + [% IF hold.fulfillment_time %]Fulfilled: [% date.format(helpers.format_date(hold.fulfillment_time), '%Y-%m-%d') %][% END %] + [% END %] +$$ + ) + ,( + 28, + TRUE, + 1, + 'ahr.history.print', + 'ahr.format.history.print', + 'NOOP_True', + 'ProcessTemplate', + 'usr', + 'print-on-demand', +$$ +[%- USE date -%] +
+ +
[% date.format %]
+
+ + [% user.family_name %], [% user.first_given_name %] +
    + [% FOR hold IN target %] +
  1. +
    [% helpers.get_copy_bib_basics(hold.current_copy.id).title %]
    +
    Requested: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %]
    + [% IF hold.fulfillment_time %]
    Fulfilled: [% date.format(helpers.format_date(hold.fulfillment_time), '%Y-%m-%d') %]
    [% END %] +
  2. + [% END %] +
+
+$$ + ) + +; + +INSERT INTO action_trigger.environment ( + event_def, + path + ) VALUES + ( 25, 'target_copy') + ,( 25, 'usr' ) + ,( 26, 'target_copy' ) + ,( 26, 'usr' ) + ,( 27, 'current_copy' ) + ,( 27, 'usr' ) + ,( 28, 'current_copy' ) + ,( 28, 'usr' ) +; + +-- 0289.data.payment_receipt_format.sql +-- 0326.data.payment_receipt_format.sql + +INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES ( + 'money.format.payment_receipt.email', + 'mp', + oils_i18n_gettext( + 'money.format.payment_receipt.email', + 'An email has been requested for a payment receipt.', + 'ath', + 'description' + ), + FALSE + ) + ,( + 'money.format.payment_receipt.print', + 'mp', + oils_i18n_gettext( + 'money.format.payment_receipt.print', + 'A payment receipt needs to be formatted for printing.', + 'ath', + 'description' + ), + FALSE + ) +; + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + group_field, + granularity, + template + ) VALUES ( + 29, + TRUE, + 1, + 'money.payment_receipt.email', + 'money.format.payment_receipt.email', + 'NOOP_True', + 'SendEmail', + 'xact.usr', + NULL, +$$ +[%- USE date -%] +[%- SET user = target.0.xact.usr -%] +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Payment Receipt +Auto-Submitted: auto-generated + +[% date.format -%] +[%- SET xact_mp_hash = {} -%] +[%- FOR mp IN target %][%# Template is hooked around payments, but let us make the receipt focused on transactions -%] + [%- SET xact_id = mp.xact.id -%] + [%- IF ! xact_mp_hash.defined( xact_id ) -%][%- xact_mp_hash.$xact_id = { 'xact' => mp.xact, 'payments' => [] } -%][%- END -%] + [%- xact_mp_hash.$xact_id.payments.push(mp) -%] +[%- END -%] +[%- FOR xact_id IN xact_mp_hash.keys.sort -%] + [%- SET xact = xact_mp_hash.$xact_id.xact %] +Transaction ID: [% xact_id %] + [% IF xact.circulation %][% helpers.get_copy_bib_basics(xact.circulation.target_copy).title %] + [% ELSE %]Miscellaneous + [% END %] + Line item billings: + [%- SET mb_type_hash = {} -%] + [%- FOR mb IN xact.billings %][%# Group billings by their btype -%] + [%- IF mb.voided == 'f' -%] + [%- SET mb_type = mb.btype.id -%] + [%- IF ! mb_type_hash.defined( mb_type ) -%][%- mb_type_hash.$mb_type = { 'sum' => 0.00, 'billings' => [] } -%][%- END -%] + [%- IF ! mb_type_hash.$mb_type.defined( 'first_ts' ) -%][%- mb_type_hash.$mb_type.first_ts = mb.billing_ts -%][%- END -%] + [%- mb_type_hash.$mb_type.last_ts = mb.billing_ts -%] + [%- mb_type_hash.$mb_type.sum = mb_type_hash.$mb_type.sum + mb.amount -%] + [%- mb_type_hash.$mb_type.billings.push( mb ) -%] + [%- END -%] + [%- END -%] + [%- FOR mb_type IN mb_type_hash.keys.sort -%] + [%- IF mb_type == 1 %][%-# Consolidated view of overdue billings -%] + $[% mb_type_hash.$mb_type.sum %] for [% mb_type_hash.$mb_type.billings.0.btype.name %] + on [% mb_type_hash.$mb_type.first_ts %] through [% mb_type_hash.$mb_type.last_ts %] + [%- ELSE -%][%# all other billings show individually %] + [% FOR mb IN mb_type_hash.$mb_type.billings %] + $[% mb.amount %] for [% mb.btype.name %] on [% mb.billing_ts %] [% mb.note %] + [% END %] + [% END %] + [% END %] + Line item payments: + [% FOR mp IN xact_mp_hash.$xact_id.payments %] + Payment ID: [% mp.id %] + Paid [% mp.amount %] via [% SWITCH mp.payment_type -%] + [% CASE "cash_payment" %]cash + [% CASE "check_payment" %]check + [% CASE "credit_card_payment" %]credit card + [%- IF mp.credit_card_payment.cc_number %] ([% mp.credit_card_payment.cc_number %])[% END %] + [% CASE "credit_payment" %]credit + [% CASE "forgive_payment" %]forgiveness + [% CASE "goods_payment" %]goods + [% CASE "work_payment" %]work + [%- END %] on [% mp.payment_ts %] [% mp.note %] + [% END %] +[% END %] +$$ + ) + ,( + 30, + TRUE, + 1, + 'money.payment_receipt.print', + 'money.format.payment_receipt.print', + 'NOOP_True', + 'ProcessTemplate', + 'xact.usr', + 'print-on-demand', +$$ +[%- USE date -%][%- SET user = target.0.xact.usr -%] +
+
[% date.format %]

+
    + [% SET xact_mp_hash = {} %] + [% FOR mp IN target %][%# Template is hooked around payments, but let us make the receipt focused on transactions %] + [% SET xact_id = mp.xact.id %] + [% IF ! xact_mp_hash.defined( xact_id ) %][% xact_mp_hash.$xact_id = { 'xact' => mp.xact, 'payments' => [] } %][% END %] + [% xact_mp_hash.$xact_id.payments.push(mp) %] + [% END %] + [% FOR xact_id IN xact_mp_hash.keys.sort %] + [% SET xact = xact_mp_hash.$xact_id.xact %] +
  1. Transaction ID: [% xact_id %] + [% IF xact.circulation %][% helpers.get_copy_bib_basics(xact.circulation.target_copy).title %] + [% ELSE %]Miscellaneous + [% END %] + Line item billings:
      + [% SET mb_type_hash = {} %] + [% FOR mb IN xact.billings %][%# Group billings by their btype %] + [% IF mb.voided == 'f' %] + [% SET mb_type = mb.btype.id %] + [% IF ! mb_type_hash.defined( mb_type ) %][% mb_type_hash.$mb_type = { 'sum' => 0.00, 'billings' => [] } %][% END %] + [% IF ! mb_type_hash.$mb_type.defined( 'first_ts' ) %][% mb_type_hash.$mb_type.first_ts = mb.billing_ts %][% END %] + [% mb_type_hash.$mb_type.last_ts = mb.billing_ts %] + [% mb_type_hash.$mb_type.sum = mb_type_hash.$mb_type.sum + mb.amount %] + [% mb_type_hash.$mb_type.billings.push( mb ) %] + [% END %] + [% END %] + [% FOR mb_type IN mb_type_hash.keys.sort %] +
    1. [% IF mb_type == 1 %][%# Consolidated view of overdue billings %] + $[% mb_type_hash.$mb_type.sum %] for [% mb_type_hash.$mb_type.billings.0.btype.name %] + on [% mb_type_hash.$mb_type.first_ts %] through [% mb_type_hash.$mb_type.last_ts %] + [% ELSE %][%# all other billings show individually %] + [% FOR mb IN mb_type_hash.$mb_type.billings %] + $[% mb.amount %] for [% mb.btype.name %] on [% mb.billing_ts %] [% mb.note %] + [% END %] + [% END %]
    2. + [% END %] +
    + Line item payments:
      + [% FOR mp IN xact_mp_hash.$xact_id.payments %] +
    1. Payment ID: [% mp.id %] + Paid [% mp.amount %] via [% SWITCH mp.payment_type -%] + [% CASE "cash_payment" %]cash + [% CASE "check_payment" %]check + [% CASE "credit_card_payment" %]credit card + [%- IF mp.credit_card_payment.cc_number %] ([% mp.credit_card_payment.cc_number %])[% END %] + [% CASE "credit_payment" %]credit + [% CASE "forgive_payment" %]forgiveness + [% CASE "goods_payment" %]goods + [% CASE "work_payment" %]work + [%- END %] on [% mp.payment_ts %] [% mp.note %] +
    2. + [% END %] +
    +
  2. + [% END %] +
+
+$$ + ) +; + +INSERT INTO action_trigger.environment ( + event_def, + path + ) VALUES -- for fleshing mp objects + ( 29, 'xact') + ,( 29, 'xact.usr') + ,( 29, 'xact.grocery' ) + ,( 29, 'xact.circulation' ) + ,( 29, 'xact.summary' ) + ,( 29, 'credit_card_payment') + ,( 29, 'xact.billings') + ,( 29, 'xact.billings.btype') + ,( 30, 'xact') + ,( 30, 'xact.usr') + ,( 30, 'xact.grocery' ) + ,( 30, 'xact.circulation' ) + ,( 30, 'xact.summary' ) + ,( 30, 'credit_card_payment') + ,( 30, 'xact.billings') + ,( 30, 'xact.billings.btype') +; + +-- 0294.data.bre_format.sql + +INSERT INTO container.biblio_record_entry_bucket_type( code, label ) VALUES ( + 'temp', + oils_i18n_gettext( + 'temp', + 'Temporary bucket which gets deleted after use.', + 'cbrebt', + 'label' + ) +); + +INSERT INTO action_trigger.cleanup ( module, description ) VALUES ( + 'DeleteTempBiblioBucket', + oils_i18n_gettext( + 'DeleteTempBiblioBucket', + 'Deletes a cbreb object used as a target if it has a btype of "temp"', + 'atclean', + 'description' + ) +); + +INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES ( + 'biblio.format.record_entry.email', + 'cbreb', + oils_i18n_gettext( + 'biblio.format.record_entry.email', + 'An email has been requested for one or more biblio record entries.', + 'ath', + 'description' + ), + FALSE + ) + ,( + 'biblio.format.record_entry.print', + 'cbreb', + oils_i18n_gettext( + 'biblio.format.record_entry.print', + 'One or more biblio record entries need to be formatted for printing.', + 'ath', + 'description' + ), + FALSE + ) +; + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + cleanup_success, + cleanup_failure, + group_field, + granularity, + delay, + template + ) VALUES ( + 31, + TRUE, + 1, + 'biblio.record_entry.email', + 'biblio.format.record_entry.email', + 'NOOP_True', + 'SendEmail', + 'DeleteTempBiblioBucket', + 'DeleteTempBiblioBucket', + 'owner', + NULL, + '00:00:00', +$$ +[%- SET user = target.0.owner -%] +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Bibliographic Records +Auto-Submitted: auto-generated + +[% FOR cbreb IN target %][% title = '' %] +[% FOR item IN cbreb.items; + bre_id = item.target_biblio_record_entry; + + bibxml = helpers.unapi_bre(bre_id, {flesh => '{mra}'}); + FOR part IN bibxml.findnodes('//*[@tag="245"]/*[@code="a" or @code="b"]'); + title = title _ part.textContent; + END; + + author = bibxml.findnodes('//*[@tag="100"]/*[@code="a"]').textContent; + item_type = bibxml.findnodes('//*[local-name()="attributes"]/*[local-name()="field"][@name="item_type"]').getAttribute('coded-value'); + publisher = bibxml.findnodes('//*[@tag="260"]/*[@code="b"]').textContent; + pubdate = bibxml.findnodes('//*[@tag="260"]/*[@code="c"]').textContent; + isbn = bibxml.findnodes('//*[@tag="020"]/*[@code="a"]').textContent; + issn = bibxml.findnodes('//*[@tag="022"]/*[@code="a"]').textContent; + upc = bibxml.findnodes('//*[@tag="024"]/*[@code="a"]').textContent; +%] + +[% loop.count %]/[% loop.size %]. Bib ID# [% bre_id %] +[% IF isbn %]ISBN: [% isbn _ "\n" %][% END -%] +[% IF issn %]ISSN: [% issn _ "\n" %][% END -%] +[% IF upc %]UPC: [% upc _ "\n" %] [% END -%] +Title: [% title %] +Author: [% author %] +Publication Info: [% publisher %] [% pubdate %] +Item Type: [% item_type %] + +[% END %] +[% END %] +$$ + ) + ,( + 32, + TRUE, + 1, + 'biblio.record_entry.print', + 'biblio.format.record_entry.print', + 'NOOP_True', + 'ProcessTemplate', + 'DeleteTempBiblioBucket', + 'DeleteTempBiblioBucket', + 'owner', + 'print-on-demand', + '00:00:00', +$$ +
+ +
    + [% FOR cbreb IN target %][% title = '' %] + [% FOR item IN cbreb.items; + bre_id = item.target_biblio_record_entry; + + bibxml = helpers.unapi_bre(bre_id, {flesh => '{mra}'}); + FOR part IN bibxml.findnodes('//*[@tag="245"]/*[@code="a" or @code="b"]'); + title = title _ part.textContent; + END; + + author = bibxml.findnodes('//*[@tag="100"]/*[@code="a"]').textContent; + item_type = bibxml.findnodes('//*[local-name()="attributes"]/*[local-name()="field"][@name="item_type"]').getAttribute('coded-value'); + publisher = bibxml.findnodes('//*[@tag="260"]/*[@code="b"]').textContent; + pubdate = bibxml.findnodes('//*[@tag="260"]/*[@code="c"]').textContent; + isbn = bibxml.findnodes('//*[@tag="020"]/*[@code="a"]').textContent; + %] + +
  1. + Bib ID# [% bre_id %] ISBN: [% isbn %]
    + Title: [% title %]
    + Author: [% author %]
    + Publication Info: [% publisher %] [% pubdate %]
    + Item Type: [% item_type %] +
  2. + [% END %] + [% END %] +
+
+$$ + ) +; + +INSERT INTO action_trigger.environment ( + event_def, + path + ) VALUES -- for fleshing cbreb objects + ( 31, 'owner' ) + ,( 31, 'items' ) + ,( 32, 'items' ) +; + +-- Use the ISO 4217 abbreviations for currency codes +INSERT INTO acq.currency_type (code, label) VALUES ('USD', oils_i18n_gettext('USD', 'US Dollars', 'acqct', 'label')); +INSERT INTO acq.currency_type (code, label) VALUES ('CAN', oils_i18n_gettext('CAN', 'Canadian Dollars', 'acqct', 'label')); +INSERT INTO acq.currency_type (code, label) VALUES ('EUR', oils_i18n_gettext('EUR', 'Euros', 'acqct', 'label')); + +INSERT INTO acq.exchange_rate (from_currency,to_currency,ratio) VALUES ('USD','CAN',1.2); +INSERT INTO acq.exchange_rate (from_currency,to_currency,ratio) VALUES ('USD','EUR',0.5); + +INSERT INTO acq.invoice_item_type (code,name) VALUES ('TAX',oils_i18n_gettext('TAX', 'Tax', 'aiit', 'name')); +INSERT INTO acq.invoice_item_type (code,name) VALUES ('PRO',oils_i18n_gettext('PRO', 'Processing Fee', 'aiit', 'name')); +INSERT INTO acq.invoice_item_type (code,name) VALUES ('SHP',oils_i18n_gettext('SHP', 'Shipping Charge', 'aiit', 'name')); +INSERT INTO acq.invoice_item_type (code,name) VALUES ('HND',oils_i18n_gettext('HND', 'Handling Charge', 'aiit', 'name')); +INSERT INTO acq.invoice_item_type (code,name) VALUES ('ITM',oils_i18n_gettext('ITM', 'Non-library Item', 'aiit', 'name')); +INSERT INTO acq.invoice_item_type (code,name) VALUES ('SUB',oils_i18n_gettext('SUB', 'Serial Subscription', 'aiit', 'name')); +INSERT INTO acq.invoice_item_type (code, blanket, name) VALUES ( + 'BLA', TRUE, oils_i18n_gettext('BLA', 'Blanket Order', 'aiit', 'name')); + + +INSERT INTO acq.invoice_method (code,name) VALUES ('EDI',oils_i18n_gettext('EDI', 'EDI', 'acqim', 'name')); +INSERT INTO acq.invoice_method (code,name) VALUES ('PPR',oils_i18n_gettext('PPR', 'Paper', 'acqit', 'name')); + +INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES ( + 1, 1, oils_i18n_gettext(1,'Canceled: Invalid ISBN', 'acqcr', 'label'), oils_i18n_gettext( 1, 'ISBN is unrecognizable', 'acqcr', 'description' )); +INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES ( + 2, 1, oils_i18n_gettext(2,'Canceled: Postpone', 'acqcr', 'label'), oils_i18n_gettext( 2, 'Title has been postponed', 'acqcr', 'description' )); +INSERT INTO acq.cancel_reason ( id, org_unit, label, description, keep_debits ) VALUES ( + 3, 1, oils_i18n_gettext(3, 'Delayed: Delivered but Lost', 'acqcr', 'label'), + oils_i18n_gettext( 3, 'Delivered but not received; presumed lost', 'acqcr', 'description' ), TRUE ); + +INSERT INTO acq.cancel_reason (keep_debits, id, org_unit, label, description) VALUES +('f',( 2+1000), 1, oils_i18n_gettext(1002, 'Canceled: Deleted', 'acqcr', 'label'), + oils_i18n_gettext(1002, 'The information is to be or has been deleted.', 'acqcr', 'description')), +('t',( 3+1000), 1, oils_i18n_gettext(1003, 'Delayed: Changed', 'acqcr', 'label'), + oils_i18n_gettext(1003, 'The information is to be or has been changed.', 'acqcr', 'description')), +('t',( 4+1000), 1, oils_i18n_gettext(1004, 'Delayed: No Action', 'acqcr', 'label'), + oils_i18n_gettext(1004, 'This line item is not affected by the actual message.', 'acqcr', 'description')), +('t',( 5+1000), 1, oils_i18n_gettext(1005, 'Delayed: Accepted without amendment', 'acqcr', 'label'), + oils_i18n_gettext(1005, 'This line item is entirely accepted by the seller.', 'acqcr', 'description')), +('f',( 7+1000), 1, oils_i18n_gettext(1007, 'Canceled: Not Accepted', 'acqcr', 'label'), + oils_i18n_gettext(1007, 'This line item is not accepted by the seller.', 'acqcr', 'description')), +('f',( 10+1000), 1, oils_i18n_gettext(1010, 'Canceled: Not Found', 'acqcr', 'label'), + oils_i18n_gettext(1010, 'This line item is not found in the referenced message.', 'acqcr', 'description')), +('t',( 24+1000), 1, oils_i18n_gettext(1024, 'Delayed: Accepted with amendment', 'acqcr', 'label'), + oils_i18n_gettext(1024, 'Accepted with changes which require no confirmation.', 'acqcr', 'description')); + +INSERT INTO acq.cancel_reason (org_unit, keep_debits, id, label, description) VALUES +(1, 't', 1211, oils_i18n_gettext(1211, 'Delayed: Split Quantity', 'acqcr', 'label'), + oils_i18n_gettext(1211, 'Part of the whole quantity.', 'acqcr', 'description')), +(1, 't', 1221, oils_i18n_gettext(1221, 'Delayed: Ordered Quantity', 'acqcr', 'label'), + oils_i18n_gettext(1221, '[6024] The quantity which has been ordered.', 'acqcr', 'description')), +(1, 't', 1246, oils_i18n_gettext(1246, 'Delayed: Pieces Delivered', 'acqcr', 'label'), + oils_i18n_gettext(1246, 'Number of pieces actually received at the final destination.', 'acqcr', 'description')), +(1, 't', 1283, oils_i18n_gettext(1283, 'Delayed: Backorder', 'acqcr', 'label'), + oils_i18n_gettext(1283, 'The quantity of goods that is on back-order.', 'acqcr', 'description')), +(1, 'f',( 85+1200), oils_i18n_gettext(1285, 'Canceled: By Vendor', 'acqcr', 'label'), + oils_i18n_gettext(1285, 'Line item canceled by vendor', 'acqcr', 'description')); + +INSERT INTO config.global_flag (name, label, enabled) + VALUES ( + 'circ.holds.usr_not_requestor', + oils_i18n_gettext( + 'circ.holds.usr_not_requestor', + 'Holds: When testing hold matrix matchpoints, use the profile group of the receiving user instead of that of the requestor (affects staff-placed holds)', + 'cgf', + 'label' + ), + TRUE + ); + +INSERT INTO config.global_flag (name, label, enabled) + VALUES ( + 'circ.holds.empty_issuance_ok', + oils_i18n_gettext( + 'circ.holds.empty_issuance_ok', + 'Holds: Allow holds on empty issuances', + 'cgf', + 'label' + ), + TRUE + ); + +INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE + VALUES ( + 'ingest.disable_authority_linking', + oils_i18n_gettext( + 'ingest.disable_authority_linking', + 'Authority Automation: Disable bib-authority link tracking', + 'cgf', + 'label' + ) + ); + +INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE + VALUES ( + 'ingest.disable_authority_auto_update', + oils_i18n_gettext( + 'ingest.disable_authority_auto_update', + 'Authority Automation: Disable automatic authority updating (requires link tracking)', + 'cgf', + 'label' + ) + ); + +INSERT INTO config.global_flag (name, label, enabled) + VALUES ( + 'cat.bib.use_id_for_tcn', + oils_i18n_gettext( + 'cat.bib.use_id_for_tcn', + 'Cat: Use Internal ID for TCN Value', + 'cgf', + 'label' + ), + TRUE + ); + +INSERT INTO config.global_flag (name,label,enabled) + VALUES ( + 'history.circ.retention_age', + oils_i18n_gettext('history.circ.retention_age', 'Historical Circulation Retention Age', 'cgf', 'label'), + TRUE + ),( + 'history.circ.retention_count', + oils_i18n_gettext('history.circ.retention_count', 'Historical Circulations per Copy', 'cgf', 'label'), + TRUE + ); + +INSERT INTO config.global_flag (name, label, enabled) + VALUES ( + 'history.hold.retention_age', + oils_i18n_gettext('history.hold.retention_age', 'Historical Hold Retention Age', 'cgf', 'label'), + TRUE + ),( + 'history.hold.retention_age_fulfilled', + oils_i18n_gettext('history.hold.retention_age_fulfilled', 'Historical Hold Retention Age - Fulfilled', 'cgf', 'label'), + FALSE + ),( + 'history.hold.retention_age_canceled', + oils_i18n_gettext('history.hold.retention_age_canceled', 'Historical Hold Retention Age - Canceled (Default)', 'cgf', 'label'), + FALSE + ),( + 'history.hold.retention_age_canceled_1', + oils_i18n_gettext('history.hold.retention_age_canceled_1', 'Historical Hold Retention Age - Canceled (Untarged expiration)', 'cgf', 'label'), + FALSE + ),( + 'history.hold.retention_age_canceled_2', + oils_i18n_gettext('history.hold.retention_age_canceled_2', 'Historical Hold Retention Age - Canceled (Hold Shelf expiration)', 'cgf', 'label'), + FALSE + ),( + 'history.hold.retention_age_canceled_3', + oils_i18n_gettext('history.hold.retention_age_canceled_3', 'Historical Hold Retention Age - Canceled (Patron via phone)', 'cgf', 'label'), + TRUE + ),( + 'history.hold.retention_age_canceled_4', + oils_i18n_gettext('history.hold.retention_age_canceled_4', 'Historical Hold Retention Age - Canceled (Patron in person)', 'cgf', 'label'), + TRUE + ),( + 'history.hold.retention_age_canceled_5', + oils_i18n_gettext('history.hold.retention_age_canceled_5', 'Historical Hold Retention Age - Canceled (Staff forced)', 'cgf', 'label'), + TRUE + ),( + 'history.hold.retention_age_canceled_6', + oils_i18n_gettext('history.hold.retention_age_canceled_6', 'Historical Hold Retention Age - Canceled (Patron via OPAC)', 'cgf', 'label'), + FALSE + ); + +INSERT INTO config.global_flag (name, label, enabled) + VALUES ( + 'cat.maintain_control_numbers', + oils_i18n_gettext( + 'cat.maintain_control_numbers', + 'Cat: Maintain 001/003/035 according to the MARC21 specification', + 'cgf', + 'label' + ), + TRUE + ); + +INSERT INTO config.global_flag (name, label, enabled) + VALUES ( + 'circ.opac_renewal.use_original_circ_lib', + oils_i18n_gettext( + 'circ.opac_renewal.use_original_circ_lib', + 'Circ: Use original circulation library on opac renewal instead of user home library', + 'cgf', + 'label' + ), + FALSE + ); + +INSERT INTO config.global_flag (name, label, enabled) + VALUES ( + 'circ.desk_renewal.use_original_circ_lib', + oils_i18n_gettext( + 'circ.desk_renewal.use_original_circ_lib', + 'Circ: Use original circulation library on desk renewal instead of the workstation library', + 'cgf', + 'label' + ), + FALSE + ); + +INSERT INTO config.global_flag (name, label, value, enabled) + VALUES ( + 'opac.use_autosuggest', + oils_i18n_gettext( + 'opac.use_autosuggest', + 'OPAC: Show auto-completing suggestions dialog under basic search box (put ''opac_visible'' into the value field to limit suggestions to OPAC-visible items, or blank the field for a possible performance improvement)', + 'cgf', + 'label' + ), + 'opac_visible', + FALSE + ); + +INSERT INTO config.global_flag (name, label) + VALUES ( + 'history.circ.retention_uses_last_finished', + oils_i18n_gettext( + 'history.circ.retention_uses_last_finished', + 'Historical Circulations use most recent xact_finish date instead of last circ''s.', + 'cgf', + 'label' + ) + ),( + 'history.circ.retention_age_is_min', + oils_i18n_gettext( + 'history.circ.retention_age_is_min', + 'Historical Circulations are kept for global retention age at a minimum, regardless of user preferences.', + 'cgf', + 'label' + ) + ); + +INSERT INTO config.global_flag (name, value, enabled, label) +VALUES ( + 'opac.browse.warnable_regexp_per_class', + '{"title": "^(a|the|an)\\s"}', + FALSE, + oils_i18n_gettext( + 'opac.browse.warnable_regexp_per_class', + 'Map of search classes to regular expressions to warn user about leading articles.', + 'cgf', + 'label' + ) +), +( + 'opac.browse.holdings_visibility_test_limit', + '100', + TRUE, + oils_i18n_gettext( + 'opac.browse.holdings_visibility_test_limit', + 'Don''t look for more than this number of records with holdings when displaying browse headings with visible record counts.', + 'cgf', + 'label' + ) +); + +INSERT INTO config.global_flag (name, enabled, label) +VALUES ( + 'opac.located_uri.act_as_copy', + FALSE, + oils_i18n_gettext( + 'opac.located_uri.act_as_copy', + 'When enabled, Located URIs will provide visiblity behavior identical to copies.', + 'cgf', + 'label' + ) +); + +INSERT INTO config.global_flag (name, label, value, enabled) VALUES ( + 'opac.icon_attr', + oils_i18n_gettext( + 'opac.icon_attr', + 'OPAC Format Icons Attribute', + 'cgf', + 'label' + ), + 'icon_format', + TRUE +); + +INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype) + VALUES ( + 'history.circ.retention_age', + TRUE, + oils_i18n_gettext('history.circ.retention_age','Historical Circulation Retention Age','cust','label'), + oils_i18n_gettext('history.circ.retention_age','Historical Circulation Retention Age','cust','description'), + 'interval' + ),( + 'history.circ.retention_start', + FALSE, + oils_i18n_gettext('history.circ.retention_start','Historical Circulation Retention Start Date','cust','label'), + oils_i18n_gettext('history.circ.retention_start','Historical Circulation Retention Start Date','cust','description'), + 'date' + ); + +INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype) + VALUES ( + 'history.hold.retention_age', + TRUE, + oils_i18n_gettext('history.hold.retention_age','Historical Hold Retention Age','cust','label'), + oils_i18n_gettext('history.hold.retention_age','Historical Hold Retention Age','cust','description'), + 'interval' + ),( + 'history.hold.retention_start', + TRUE, + oils_i18n_gettext('history.hold.retention_start','Historical Hold Retention Start Date','cust','label'), + oils_i18n_gettext('history.hold.retention_start','Historical Hold Retention Start Date','cust','description'), + 'interval' + ),( + 'history.hold.retention_count', + TRUE, + oils_i18n_gettext('history.hold.retention_count','Historical Hold Retention Count','cust','label'), + oils_i18n_gettext('history.hold.retention_count','Historical Hold Retention Count','cust','description'), + 'integer' + ); + +-- 0311.data.query-seed-datatypes.sql +-- Define the most common datatypes in query.datatype. Note that none of +-- these stock datatypes specifies a width or precision. + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (1, 'SMALLINT', true); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (2, 'INTEGER', true); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (3, 'BIGINT', true); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (4, 'DECIMAL', true); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (5, 'NUMERIC', true); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (6, 'REAL', true); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (7, 'DOUBLE PRECISION', true); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (8, 'SERIAL', true); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (9, 'BIGSERIAL', true); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (10, 'MONEY', false); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (11, 'VARCHAR', false); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (12, 'CHAR', false); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (13, 'TEXT', false); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (14, '"char"', false); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (15, 'NAME', false); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (16, 'BYTEA', false); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (17, 'TIMESTAMP WITHOUT TIME ZONE', false); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (18, 'TIMESTAMP WITH TIME ZONE', false); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (19, 'DATE', false); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (20, 'TIME WITHOUT TIME ZONE', false); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (21, 'TIME WITH TIME ZONE', false); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (22, 'INTERVAL', false); + +INSERT INTO query.datatype (id, datatype_name, is_numeric ) + VALUES (23, 'BOOLEAN', false); + +INSERT INTO config.usr_setting_type (name, opac_visible, label, description, datatype) + VALUES ( + 'opac.default_sort', + TRUE, + oils_i18n_gettext( + 'opac.default_sort', + 'OPAC Default Search Sort', + 'cust', + 'label' + ), + oils_i18n_gettext( + 'opac.default_sort', + 'OPAC Default Search Sort', + 'cust', + 'description' + ), + 'string' + ); + +-- 0355.data.missing_pieces_format.sql + +INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES + ( 'circ.format.missing_pieces.slip.print', + 'circ', + oils_i18n_gettext( + 'circ.format.missing_pieces.slip.print', + 'A missing pieces slip needs to be formatted for printing.', + 'ath', + 'description' + ), + FALSE + ) + ,( 'circ.format.missing_pieces.letter.print', + 'circ', + oils_i18n_gettext( + 'circ.format.missing_pieces.letter.print', + 'A missing pieces patron letter needs to be formatted for printing.', + 'ath', + 'description' + ), + FALSE + ) +; + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + group_field, + granularity, + template + ) VALUES ( + 33, + TRUE, + 1, + 'circ.missing_pieces.slip.print', + 'circ.format.missing_pieces.slip.print', + 'NOOP_True', + 'ProcessTemplate', + 'usr', + 'print-on-demand', +$$ +[%- USE date -%] +[%- SET user = target.0.usr -%] +
+
[% date.format %]

+ Missing pieces for: +
    + [% FOR circ IN target %] +
  1. Barcode: [% circ.target_copy.barcode %] Transaction ID: [% circ.id %] Due: [% circ.due_date.format %]
    + [% helpers.get_copy_bib_basics(circ.target_copy.id).title %] +
  2. + [% END %] +
+
+$$ + ) + ,( + 34, + TRUE, + 1, + 'circ.missing_pieces.letter.print', + 'circ.format.missing_pieces.letter.print', + 'NOOP_True', + 'ProcessTemplate', + 'usr', + 'print-on-demand', +$$ +[%- USE date -%] +[%- SET user = target.0.usr -%] +[% date.format %] +Dear [% user.prefix %] [% user.first_given_name %] [% user.family_name %], + +We are missing pieces for the following returned items: +[% FOR circ IN target %] +Barcode: [% circ.target_copy.barcode %] Transaction ID: [% circ.id %] Due: [% circ.due_date.format %] +[% helpers.get_copy_bib_basics(circ.target_copy.id).title %] +[% END %] + +Please return these pieces as soon as possible. + +Thanks! + +Library Staff +$$ + ) +; + +INSERT INTO action_trigger.environment ( + event_def, + path + ) VALUES -- for fleshing circ objects + ( 33, 'usr') + ,( 33, 'target_copy') + ,( 33, 'target_copy.circ_lib') + ,( 33, 'target_copy.circ_lib.mailing_address') + ,( 33, 'target_copy.circ_lib.billing_address') + ,( 33, 'target_copy.call_number') + ,( 33, 'target_copy.call_number.owning_lib') + ,( 33, 'target_copy.call_number.owning_lib.mailing_address') + ,( 33, 'target_copy.call_number.owning_lib.billing_address') + ,( 33, 'circ_lib') + ,( 33, 'circ_lib.mailing_address') + ,( 33, 'circ_lib.billing_address') + ,( 34, 'usr') + ,( 34, 'target_copy') + ,( 34, 'target_copy.circ_lib') + ,( 34, 'target_copy.circ_lib.mailing_address') + ,( 34, 'target_copy.circ_lib.billing_address') + ,( 34, 'target_copy.call_number') + ,( 34, 'target_copy.call_number.owning_lib') + ,( 34, 'target_copy.call_number.owning_lib.mailing_address') + ,( 34, 'target_copy.call_number.owning_lib.billing_address') + ,( 34, 'circ_lib') + ,( 34, 'circ_lib.mailing_address') + ,( 34, 'circ_lib.billing_address') +; + +-- 0384.data.hold_pull_list_template.sql + +INSERT INTO action_trigger.hook (key,core_type,description,passive) + VALUES ( + 'ahr.format.pull_list', + 'ahr', + oils_i18n_gettext( + 'ahr.format.pull_list', + 'Format holds pull list for printing', + 'ath', + 'description' + ), + FALSE + ); + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + group_field, + granularity, + template + ) VALUES ( + 35, + TRUE, + 1, + 'Holds Pull List', + 'ahr.format.pull_list', + 'NOOP_True', + 'ProcessTemplate', + 'pickup_lib', + 'print-on-demand', +$$ +[%- USE date -%] + +[% + # Sort the holds into copy-location buckets + # In the main print loop, sort each bucket by callnumber before printing + SET holds_list = []; + SET loc_data = []; + SET current_location = target.0.current_copy.location.id; + FOR hold IN target; + IF current_location != hold.current_copy.location.id; + SET current_location = hold.current_copy.location.id; + holds_list.push(loc_data); + SET loc_data = []; + END; + SET hold_data = { + 'hold' => hold, + 'callnumber' => hold.current_copy.call_number.label + }; + loc_data.push(hold_data); + END; + holds_list.push(loc_data) +%] + + + + + + + + + + + + + [% FOR loc_data IN holds_list %] + [% FOR hold_data IN loc_data.sort('callnumber') %] + [% + SET hold = hold_data.hold; + SET copy_data = helpers.get_copy_bib_basics(hold.current_copy.id); + %] + + + + + + + + + [% END %] + [% END %] + +
TitleAuthorShelving LocationCall NumberBarcode/PartPatron
[% copy_data.title | truncate %][% copy_data.author | truncate %][% hold.current_copy.location.name %][% hold.current_copy.call_number.label %][% hold.current_copy.barcode %] + [% FOR part IN hold.current_copy.parts %] + [% part.part.label %] + [% END %] + [% hold.usr.card.barcode %]
+$$ +); + +INSERT INTO action_trigger.environment ( + event_def, + path + ) VALUES + (35, 'current_copy.location'), + (35, 'current_copy.call_number'), + (35, 'usr.card'), + (35, 'pickup_lib'), + (35, 'current_copy.parts'), + (35, 'current_copy.parts.part') +; + +-- 0412.data.trigger.validator.HoldIsCancelled.sql + +INSERT INTO action_trigger.validator (module, description) VALUES ( + 'HoldIsCancelled', + oils_i18n_gettext( + 'HoldIsCancelled', + 'Check whether a hold request is cancelled.', + 'atval', + 'description' + ) +); + +-- 0448.data.trigger.circ.staff_age_to_lost.sql + +INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES + ( 'circ.staff_age_to_lost', + 'circ', + oils_i18n_gettext( + 'circ.staff_age_to_lost', + 'An overdue circulation should be aged to a Lost status.', + 'ath', + 'description' + ), + TRUE + ) +; + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + delay_field + ) VALUES ( + 36, + FALSE, + 1, + 'circ.staff_age_to_lost', + 'circ.staff_age_to_lost', + 'CircIsOverdue', + 'MarkItemLost', + 'due_date' + ) +; + +INSERT INTO action_trigger.hook (key,core_type,description) + VALUES ('circ.recall.target', 'circ', 'A checked-out copy has been recalled for a hold.'); + +INSERT INTO action_trigger.event_definition (id, owner, name, hook, validator, reactor, group_field, template) + VALUES (37, 1, 'Item Recall Email Notice', 'circ.recall.target', 'NOOP_True', 'SendEmail', 'usr', +$$ +[%- USE date -%] +[%- user = target.0.usr -%] +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Item Recall Notification +Auto-Submitted: auto-generated + +Dear [% user.family_name %], [% user.first_given_name %] + +The following item which you have checked out has been recalled so that +another patron can have access to the item: + +[% FOR circ IN target %] + Title: [% circ.target_copy.call_number.record.simple_record.title %] + Barcode: [% circ.target_copy.barcode %] + Now Due: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %] + Library: [% circ.circ_lib.name %] + + If this item is not returned by the new due date, fines will be assessed at + the rate of [% circ.recurring_fine %] every [% circ.fine_interval %]. +[% END %] +$$ +); + +INSERT INTO action_trigger.environment (event_def, path) VALUES + (37, 'target_copy.call_number.record.simple_record'), + (37, 'usr'), + (37, 'circ_lib.billing_address') +; + +INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'general.unknown', oils_i18n_gettext('general.unknown', 'Import or Overlay failed', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.item.duplicate.barcode', oils_i18n_gettext('import.item.duplicate.barcode', 'Import failed due to barcode collision', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.item.invalid.circ_modifier', oils_i18n_gettext('import.item.invalid.circ_modifier', 'Import failed due to invalid circulation modifier', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.item.invalid.location', oils_i18n_gettext('import.item.invalid.location', 'Import failed due to invalid copy location', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.duplicate.sysid', oils_i18n_gettext('import.duplicate.sysid', 'Import failed due to system id collision', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.duplicate.tcn', oils_i18n_gettext('import.duplicate.sysid', 'Import failed due to system id collision', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'overlay.missing.sysid', oils_i18n_gettext('overlay.missing.sysid', 'Overlay failed due to missing system id', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.auth.duplicate.acn', oils_i18n_gettext('import.auth.duplicate.acn', 'Import failed due to Accession Number collision', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.xml.malformed', oils_i18n_gettext('import.xml.malformed', 'Malformed record cause Import failure', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'overlay.xml.malformed', oils_i18n_gettext('overlay.xml.malformed', 'Malformed record cause Overlay failure', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'overlay.record.quality', oils_i18n_gettext('overlay.record.quality', 'New record had insufficient quality', 'vie', 'description') ); + +INSERT INTO vandelay.import_error ( code, description ) VALUES ( + 'import.item.invalid.status', oils_i18n_gettext('import.item.invalid.status', 'Invalid value for "status"', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( + 'import.item.invalid.price', oils_i18n_gettext('import.item.invalid.price', 'Invalid value for "price"', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( + 'import.item.invalid.deposit_amount', oils_i18n_gettext('import.item.invalid.deposit_amount', 'Invalid value for "deposit_amount"', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( + 'import.item.invalid.owning_lib', oils_i18n_gettext('import.item.invalid.owning_lib', 'Invalid value for "owning_lib"', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( + 'import.item.invalid.circ_lib', oils_i18n_gettext('import.item.invalid.circ_lib', 'Invalid value for "circ_lib"', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( + 'import.item.invalid.copy_number', oils_i18n_gettext('import.item.invalid.copy_number', 'Invalid value for "copy_number"', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( + 'import.item.invalid.circ_as_type', oils_i18n_gettext('import.item.invalid.circ_as_type', 'Invalid value for "circ_as_type"', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( + 'import.record.perm_failure', oils_i18n_gettext('import.record.perm_failure', 'Perm failure creating a record', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( + 'import.item.invalid.stat_cat_format', oils_i18n_gettext('import.item.invalid.stat_cat_format', 'Bad format for stat cat data, should be like: CAT 1|VALUE 1', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( + 'import.item.invalid.stat_cat_data', oils_i18n_gettext('import.item.invalid.stat_cat_data', 'Invalid stat cat data', 'vie', 'description') ); + +-- Event def for email notice for hold cancelled due to lack of target ----- + +INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, delay_field, group_field, template) + VALUES (38, FALSE, 1, + 'Hold Cancelled (No Target) Email Notification', + 'hold_request.cancel.expire_no_target', + 'HoldIsCancelled', 'SendEmail', '30 minutes', 'cancel_time', 'usr', +$$ +[%- USE date -%] +[%- user = target.0.usr -%] +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Hold Request Cancelled +Auto-Submitted: auto-generated + +Dear [% user.family_name %], [% user.first_given_name %] +The following holds were cancelled because no items were found to fulfill the hold. + +[% FOR hold IN target %] + Title: [% hold.bib_rec.bib_record.simple_record.title %] + Author: [% hold.bib_rec.bib_record.simple_record.author %] + Library: [% hold.pickup_lib.name %] + Request Date: [% date.format(helpers.format_date(hold.rrequest_time), '%Y-%m-%d') %] +[% END %] + +$$); + +INSERT INTO action_trigger.environment (event_def, path) VALUES + (38, 'usr'), + (38, 'pickup_lib'), + (38, 'bib_rec.bib_record.simple_record'); + +INSERT INTO action_trigger.event_params (event_def, param, value) + VALUES (38, 'check_email_notify', 1); + +---------------------------------------------------------------- +-- Seed data for queued record/item exports +---------------------------------------------------------------- + +INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES ( + 'vandelay.queued_bib_record.print', + 'vqbr', + oils_i18n_gettext( + 'vandelay.queued_bib_record.print', + 'Print output has been requested for records in an Importer Bib Queue.', + 'ath', + 'description' + ), + FALSE + ) + ,( + 'vandelay.queued_bib_record.csv', + 'vqbr', + oils_i18n_gettext( + 'vandelay.queued_bib_record.csv', + 'CSV output has been requested for records in an Importer Bib Queue.', + 'ath', + 'description' + ), + FALSE + ) + ,( + 'vandelay.queued_bib_record.email', + 'vqbr', + oils_i18n_gettext( + 'vandelay.queued_bib_record.email', + 'An email has been requested for records in an Importer Bib Queue.', + 'ath', + 'description' + ), + FALSE + ) + ,( + 'vandelay.queued_auth_record.print', + 'vqar', + oils_i18n_gettext( + 'vandelay.queued_auth_record.print', + 'Print output has been requested for records in an Importer Authority Queue.', + 'ath', + 'description' + ), + FALSE + ) + ,( + 'vandelay.queued_auth_record.csv', + 'vqar', + oils_i18n_gettext( + 'vandelay.queued_auth_record.csv', + 'CSV output has been requested for records in an Importer Authority Queue.', + 'ath', + 'description' + ), + FALSE + ) + ,( + 'vandelay.queued_auth_record.email', + 'vqar', + oils_i18n_gettext( + 'vandelay.queued_auth_record.email', + 'An email has been requested for records in an Importer Authority Queue.', + 'ath', + 'description' + ), + FALSE + ) + ,( + 'vandelay.import_items.print', + 'vii', + oils_i18n_gettext( + 'vandelay.import_items.print', + 'Print output has been requested for Import Items from records in an Importer Bib Queue.', + 'ath', + 'description' + ), + FALSE + ) + ,( + 'vandelay.import_items.csv', + 'vii', + oils_i18n_gettext( + 'vandelay.import_items.csv', + 'CSV output has been requested for Import Items from records in an Importer Bib Queue.', + 'ath', + 'description' + ), + FALSE + ) + ,( + 'vandelay.import_items.email', + 'vii', + oils_i18n_gettext( + 'vandelay.import_items.email', + 'An email has been requested for Import Items from records in an Importer Bib Queue.', + 'ath', + 'description' + ), + FALSE + ) +; + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + group_field, + granularity, + template + ) VALUES ( + 39, + TRUE, + 1, + 'Print Output for Queued Bib Records', + 'vandelay.queued_bib_record.print', + 'NOOP_True', + 'ProcessTemplate', + 'queue.owner', + 'print-on-demand', +$$ +[%- USE date -%] +
+Queue ID: [% target.0.queue.id %]
+Queue Name: [% target.0.queue.name %]
+Queue Type: [% target.0.queue.queue_type %]
+Complete? [% target.0.queue.complete %]
+
+    [% FOR vqbr IN target %]
+=-=-=
+ Title of work    | [% helpers.get_queued_bib_attr('title',vqbr.attributes) %]
+ Author of work   | [% helpers.get_queued_bib_attr('author',vqbr.attributes) %]
+ Language of work | [% helpers.get_queued_bib_attr('language',vqbr.attributes) %]
+ Pagination       | [% helpers.get_queued_bib_attr('pagination',vqbr.attributes) %]
+ ISBN             | [% helpers.get_queued_bib_attr('isbn',vqbr.attributes) %]
+ ISSN             | [% helpers.get_queued_bib_attr('issn',vqbr.attributes) %]
+ Price            | [% helpers.get_queued_bib_attr('price',vqbr.attributes) %]
+ Accession Number | [% helpers.get_queued_bib_attr('rec_identifier',vqbr.attributes) %]
+ TCN Value        | [% helpers.get_queued_bib_attr('eg_tcn',vqbr.attributes) %]
+ TCN Source       | [% helpers.get_queued_bib_attr('eg_tcn_source',vqbr.attributes) %]
+ Internal ID      | [% helpers.get_queued_bib_attr('eg_identifier',vqbr.attributes) %]
+ Publisher        | [% helpers.get_queued_bib_attr('publisher',vqbr.attributes) %]
+ Publication Date | [% helpers.get_queued_bib_attr('pubdate',vqbr.attributes) %]
+ Edition          | [% helpers.get_queued_bib_attr('edition',vqbr.attributes) %]
+ Item Barcode     | [% helpers.get_queued_bib_attr('item_barcode',vqbr.attributes) %]
+ Import Error     | [% vqbr.import_error %]
+ Error Detail     | [% vqbr.error_detail %]
+ Match Count      | [% vqbr.matches.size %]
+
+    [% END %]
+
+$$ + ) +; + +INSERT INTO action_trigger.environment ( event_def, path) VALUES ( + 39, 'attributes') + ,( 39, 'queue') + ,( 39, 'matches') +; + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + group_field, + granularity, + template + ) VALUES ( + 40, + TRUE, + 1, + 'CSV Output for Queued Bib Records', + 'vandelay.queued_bib_record.csv', + 'NOOP_True', + 'ProcessTemplate', + 'queue.owner', + 'print-on-demand', +$$ +[%- USE date -%] +"Title of work","Author of work","Language of work","Pagination","ISBN","ISSN","Price","Accession Number","TCN Value","TCN Source","Internal ID","Publisher","Publication Date","Edition","Item Barcode","Import Error","Error Detail","Match Count" +[% FOR vqbr IN target %]"[% helpers.get_queued_bib_attr('title',vqbr.attributes) | replace('"', '""') %]","[% helpers.get_queued_bib_attr('author',vqbr.attributes) | replace('"', '""') %]","[% helpers.get_queued_bib_attr('language',vqbr.attributes) | replace('"', '""') %]","[% helpers.get_queued_bib_attr('pagination',vqbr.attributes) | replace('"', '""') %]","[% helpers.get_queued_bib_attr('isbn',vqbr.attributes) | replace('"', '""') %]","[% helpers.get_queued_bib_attr('issn',vqbr.attributes) | replace('"', '""') %]","[% helpers.get_queued_bib_attr('price',vqbr.attributes) | replace('"', '""') %]","[% helpers.get_queued_bib_attr('rec_identifier',vqbr.attributes) | replace('"', '""') %]","[% helpers.get_queued_bib_attr('eg_tcn',vqbr.attributes) | replace('"', '""') %]","[% helpers.get_queued_bib_attr('eg_tcn_source',vqbr.attributes) | replace('"', '""') %]","[% helpers.get_queued_bib_attr('eg_identifier',vqbr.attributes) | replace('"', '""') %]","[% helpers.get_queued_bib_attr('publisher',vqbr.attributes) | replace('"', '""') %]","[% helpers.get_queued_bib_attr('pubdate',vqbr.attributes) | replace('"', '""') %]","[% helpers.get_queued_bib_attr('edition',vqbr.attributes) | replace('"', '""') %]","[% helpers.get_queued_bib_attr('item_barcode',vqbr.attributes) | replace('"', '""') %]","[% vqbr.import_error | replace('"', '""') %]","[% vqbr.error_detail | replace('"', '""') %]","[% vqbr.matches.size %]" +[% END %] +$$ + ) +; + +INSERT INTO action_trigger.environment ( event_def, path) VALUES ( + 40, 'attributes') + ,( 40, 'queue') + ,( 40, 'matches') +; + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + group_field, + granularity, + template + ) VALUES ( + 41, + TRUE, + 1, + 'Email Output for Queued Bib Records', + 'vandelay.queued_bib_record.email', + 'NOOP_True', + 'SendEmail', + 'queue.owner', + NULL, +$$ +[%- USE date -%] +[%- SET user = target.0.queue.owner -%] +To: [%- params.recipient_email || user.email || 'root@localhost' %] +From: [%- params.sender_email || default_sender %] +Subject: Bibs from Import Queue +Auto-Submitted: auto-generated + +Queue ID: [% target.0.queue.id %] +Queue Name: [% target.0.queue.name %] +Queue Type: [% target.0.queue.queue_type %] +Complete? [% target.0.queue.complete %] + + [% FOR vqbr IN target %] +=-=-= + Title of work | [% helpers.get_queued_bib_attr('title',vqbr.attributes) %] + Author of work | [% helpers.get_queued_bib_attr('author',vqbr.attributes) %] + Language of work | [% helpers.get_queued_bib_attr('language',vqbr.attributes) %] + Pagination | [% helpers.get_queued_bib_attr('pagination',vqbr.attributes) %] + ISBN | [% helpers.get_queued_bib_attr('isbn',vqbr.attributes) %] + ISSN | [% helpers.get_queued_bib_attr('issn',vqbr.attributes) %] + Price | [% helpers.get_queued_bib_attr('price',vqbr.attributes) %] + Accession Number | [% helpers.get_queued_bib_attr('rec_identifier',vqbr.attributes) %] + TCN Value | [% helpers.get_queued_bib_attr('eg_tcn',vqbr.attributes) %] + TCN Source | [% helpers.get_queued_bib_attr('eg_tcn_source',vqbr.attributes) %] + Internal ID | [% helpers.get_queued_bib_attr('eg_identifier',vqbr.attributes) %] + Publisher | [% helpers.get_queued_bib_attr('publisher',vqbr.attributes) %] + Publication Date | [% helpers.get_queued_bib_attr('pubdate',vqbr.attributes) %] + Edition | [% helpers.get_queued_bib_attr('edition',vqbr.attributes) %] + Item Barcode | [% helpers.get_queued_bib_attr('item_barcode',vqbr.attributes) %] + + [% END %] + +$$ + ) +; + +INSERT INTO action_trigger.environment ( event_def, path) VALUES ( + 41, 'attributes') + ,( 41, 'queue') + ,( 41, 'queue.owner') +; + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + group_field, + granularity, + template + ) VALUES ( + 42, + TRUE, + 1, + 'Print Output for Queued Authority Records', + 'vandelay.queued_auth_record.print', + 'NOOP_True', + 'ProcessTemplate', + 'queue.owner', + 'print-on-demand', +$$ +[%- USE date -%] +
+Queue ID: [% target.0.queue.id %]
+Queue Name: [% target.0.queue.name %]
+Queue Type: [% target.0.queue.queue_type %]
+Complete? [% target.0.queue.complete %]
+
+    [% FOR vqar IN target %]
+=-=-=
+ Record Identifier | [% helpers.get_queued_auth_attr('rec_identifier',vqar.attributes) %]
+
+    [% END %]
+
+$$ + ) +; + +INSERT INTO action_trigger.environment ( event_def, path) VALUES ( + 42, 'attributes') + ,( 42, 'queue') +; + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + group_field, + granularity, + template + ) VALUES ( + 43, + TRUE, + 1, + 'CSV Output for Queued Authority Records', + 'vandelay.queued_auth_record.csv', + 'NOOP_True', + 'ProcessTemplate', + 'queue.owner', + 'print-on-demand', +$$ +[%- USE date -%] +"Record Identifier" +[% FOR vqar IN target %]"[% helpers.get_queued_auth_attr('rec_identifier',vqar.attributes) | replace('"', '""') %]" +[% END %] +$$ + ) +; + +INSERT INTO action_trigger.environment ( event_def, path) VALUES ( + 43, 'attributes') + ,( 43, 'queue') +; + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + group_field, + granularity, + template + ) VALUES ( + 44, + TRUE, + 1, + 'Email Output for Queued Authority Records', + 'vandelay.queued_auth_record.email', + 'NOOP_True', + 'SendEmail', + 'queue.owner', + NULL, +$$ +[%- USE date -%] +[%- SET user = target.0.queue.owner -%] +To: [%- params.recipient_email || user.email || 'root@localhost' %] +From: [%- params.sender_email || default_sender %] +Subject: Authorities from Import Queue +Auto-Submitted: auto-generated + +Queue ID: [% target.0.queue.id %] +Queue Name: [% target.0.queue.name %] +Queue Type: [% target.0.queue.queue_type %] +Complete? [% target.0.queue.complete %] + + [% FOR vqar IN target %] +=-=-= + Record Identifier | [% helpers.get_queued_auth_attr('rec_identifier',vqar.attributes) %] + + [% END %] + +$$ + ) +; + +INSERT INTO action_trigger.environment ( event_def, path) VALUES ( + 44, 'attributes') + ,( 44, 'queue') + ,( 44, 'queue.owner') +; + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + group_field, + granularity, + template + ) VALUES ( + 45, + TRUE, + 1, + 'Print Output for Import Items from Queued Bib Records', + 'vandelay.import_items.print', + 'NOOP_True', + 'ProcessTemplate', + 'record.queue.owner', + 'print-on-demand', +$$ +[%- USE date -%] +
+Queue ID: [% target.0.record.queue.id %]
+Queue Name: [% target.0.record.queue.name %]
+Queue Type: [% target.0.record.queue.queue_type %]
+Complete? [% target.0.record.queue.complete %]
+
+    [% FOR vii IN target %]
+=-=-=
+ Import Item ID         | [% vii.id %]
+ Title of work          | [% helpers.get_queued_bib_attr('title',vii.record.attributes) %]
+ ISBN                   | [% helpers.get_queued_bib_attr('isbn',vii.record.attributes) %]
+ Attribute Definition   | [% vii.definition %]
+ Import Error           | [% vii.import_error %]
+ Import Error Detail    | [% vii.error_detail %]
+ Owning Library         | [% vii.owning_lib %]
+ Circulating Library    | [% vii.circ_lib %]
+ Call Number            | [% vii.call_number %]
+ Copy Number            | [% vii.copy_number %]
+ Status                 | [% vii.status.name %]
+ Shelving Location      | [% vii.location.name %]
+ Circulate              | [% vii.circulate %]
+ Deposit                | [% vii.deposit %]
+ Deposit Amount         | [% vii.deposit_amount %]
+ Reference              | [% vii.ref %]
+ Holdable               | [% vii.holdable %]
+ Price                  | [% vii.price %]
+ Barcode                | [% vii.barcode %]
+ Circulation Modifier   | [% vii.circ_modifier %]
+ Circulate As MARC Type | [% vii.circ_as_type %]
+ Alert Message          | [% vii.alert_message %]
+ Public Note            | [% vii.pub_note %]
+ Private Note           | [% vii.priv_note %]
+ OPAC Visible           | [% vii.opac_visible %]
+
+    [% END %]
+
+$$ + ) +; + +INSERT INTO action_trigger.environment ( event_def, path) VALUES ( + 45, 'record') + ,( 45, 'record.attributes') + ,( 45, 'record.queue') + ,( 45, 'record.queue.owner') +; + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + group_field, + granularity, + template + ) VALUES ( + 46, + TRUE, + 1, + 'CSV Output for Import Items from Queued Bib Records', + 'vandelay.import_items.csv', + 'NOOP_True', + 'ProcessTemplate', + 'record.queue.owner', + 'print-on-demand', +$$ +[%- USE date -%] +"Import Item ID","Title of work","ISBN","Attribute Definition","Import Error","Import Error Detail","Owning Library","Circulating Library","Call Number","Copy Number","Status","Shelving Location","Circulate","Deposit","Deposit Amount","Reference","Holdable","Price","Barcode","Circulation Modifier","Circulate As MARC Type","Alert Message","Public Note","Private Note","OPAC Visible" +[% FOR vii IN target %]"[% vii.id | replace('"', '""') %]","[% helpers.get_queued_bib_attr('title',vii.record.attributes) | replace('"', '""') %]","[% helpers.get_queued_bib_attr('isbn',vii.record.attributes) | replace('"', '""') %]","[% vii.definition | replace('"', '""') %]","[% vii.import_error | replace('"', '""') %]","[% vii.error_detail | replace('"', '""') %]","[% vii.owning_lib | replace('"', '""') %]","[% vii.circ_lib | replace('"', '""') %]","[% vii.call_number | replace('"', '""') %]","[% vii.copy_number | replace('"', '""') %]","[% vii.status.name | replace('"', '""') %]","[% vii.location.name | replace('"', '""') %]","[% vii.circulate | replace('"', '""') %]","[% vii.deposit | replace('"', '""') %]","[% vii.deposit_amount | replace('"', '""') %]","[% vii.ref | replace('"', '""') %]","[% vii.holdable | replace('"', '""') %]","[% vii.price | replace('"', '""') %]","[% vii.barcode | replace('"', '""') %]","[% vii.circ_modifier | replace('"', '""') %]","[% vii.circ_as_type | replace('"', '""') %]","[% vii.alert_message | replace('"', '""') %]","[% vii.pub_note | replace('"', '""') %]","[% vii.priv_note | replace('"', '""') %]","[% vii.opac_visible | replace('"', '""') %]" +[% END %] +$$ + ) +; + +INSERT INTO action_trigger.environment ( event_def, path) VALUES ( + 46, 'record') + ,( 46, 'record.attributes') + ,( 46, 'record.queue') + ,( 46, 'record.queue.owner') +; + +INSERT INTO action_trigger.event_definition ( + id, + active, + owner, + name, + hook, + validator, + reactor, + group_field, + granularity, + template + ) VALUES ( + 47, + TRUE, + 1, + 'Email Output for Import Items from Queued Bib Records', + 'vandelay.import_items.email', + 'NOOP_True', + 'SendEmail', + 'record.queue.owner', + NULL, +$$ +[%- USE date -%] +[%- SET user = target.0.record.queue.owner -%] +To: [%- params.recipient_email || user.email || 'root@localhost' %] +From: [%- params.sender_email || default_sender %] +Subject: Import Items from Import Queue +Auto-Submitted: auto-generated + +Queue ID: [% target.0.record.queue.id %] +Queue Name: [% target.0.record.queue.name %] +Queue Type: [% target.0.record.queue.queue_type %] +Complete? [% target.0.record.queue.complete %] + + [% FOR vii IN target %] +=-=-= + Import Item ID | [% vii.id %] + Title of work | [% helpers.get_queued_bib_attr('title',vii.record.attributes) %] + ISBN | [% helpers.get_queued_bib_attr('isbn',vii.record.attributes) %] + Attribute Definition | [% vii.definition %] + Import Error | [% vii.import_error %] + Import Error Detail | [% vii.error_detail %] + Owning Library | [% vii.owning_lib %] + Circulating Library | [% vii.circ_lib %] + Call Number | [% vii.call_number %] + Copy Number | [% vii.copy_number %] + Status | [% vii.status.name %] + Shelving Location | [% vii.location.name %] + Circulate | [% vii.circulate %] + Deposit | [% vii.deposit %] + Deposit Amount | [% vii.deposit_amount %] + Reference | [% vii.ref %] + Holdable | [% vii.holdable %] + Price | [% vii.price %] + Barcode | [% vii.barcode %] + Circulation Modifier | [% vii.circ_modifier %] + Circulate As MARC Type | [% vii.circ_as_type %] + Alert Message | [% vii.alert_message %] + Public Note | [% vii.pub_note %] + Private Note | [% vii.priv_note %] + OPAC Visible | [% vii.opac_visible %] + + [% END %] +$$ + ) +; + +INSERT INTO action_trigger.environment ( event_def, path) VALUES ( + 47, 'record') + ,( 47, 'record.attributes') + ,( 47, 'record.queue') + ,( 47, 'record.queue.owner') +; + +INSERT INTO action_trigger.hook (key, core_type, description, passive) +VALUES ( + 'container.biblio_record_entry_bucket.csv', + 'cbreb', + oils_i18n_gettext( + 'container.biblio_record_entry_bucket.csv', + 'Produce a CSV file representing a book list', + 'ath', + 'description' + ), + FALSE +); + +INSERT INTO action_trigger.reactor (module, description) +VALUES ( + 'ContainerCSV', + oils_i18n_gettext( + 'ContainerCSV', + 'Facilitates producing a CSV file representing a book list by introducing an "items" variable into the TT environment, sorted as dictated according to user params', + 'atr', + 'description' + ) +); + +INSERT INTO action_trigger.event_definition ( + id, active, owner, + name, hook, reactor, + validator, template +) VALUES ( + 48, TRUE, 1, + 'Book List CSV', 'container.biblio_record_entry_bucket.csv', 'ContainerCSV', + 'NOOP_True', +$$ +[%- +# target is the book list itself. The 'items' variable does not need to be in +# the environment because a special reactor will take care of filling it in. + +FOR item IN items; + bibxml = helpers.unapi_bre(item.target_biblio_record_entry, {flesh => '{mra}'}); + title = ""; + FOR part IN bibxml.findnodes('//*[@tag="245"]/*[@code="a" or @code="b"]'); + title = title _ part.textContent; + END; + author = bibxml.findnodes('//*[@tag="100"]/*[@code="a"]').textContent; + item_type = bibxml.findnodes('//*[local-name()="attributes"]/*[local-name()="field"][@name="item_type"]').getAttribute('coded-value'); + pub_date = ""; + FOR pdatum IN bibxml.findnodes('//*[@tag="260"]/*[@code="c"]'); + IF pub_date ; + pub_date = pub_date _ ", " _ pdatum.textContent; + ELSE ; + pub_date = pdatum.textContent; + END; + END; + helpers.csv_datum(title) %],[% helpers.csv_datum(author) %],[% helpers.csv_datum(pub_date) %],[% helpers.csv_datum(item_type) %],[% FOR note IN item.notes; helpers.csv_datum(note.note); ","; END; "\n"; +END -%] +$$ +); + +SELECT SETVAL('authority.control_set_id_seq'::TEXT, 100); +SELECT SETVAL('authority.control_set_authority_field_id_seq'::TEXT, 1000); +SELECT SETVAL('authority.control_set_bib_field_id_seq'::TEXT, 1000); + +INSERT INTO authority.control_set (id, name, description) VALUES ( + 1, + oils_i18n_gettext('1','LoC','acs','name'), + oils_i18n_gettext('1','Library of Congress standard authority record control semantics','acs','description') +); + +-- Entries that need to respect an NFI +INSERT INTO authority.control_set_authority_field (id, control_set, main_entry, tag, sf_list, display_sf_list, name, nfi) VALUES + (4, 1, NULL, '130', 'adfgklmnoprstvxyz', 'adfgklmnoprstvxyz', oils_i18n_gettext('4','Heading -- Uniform Title','acsaf','name'), '2'), + (24, 1, 4, '530', 'adfgiklmnoprstvwxyz4', 'adfgiklmnoprstvxyz', oils_i18n_gettext('24','See Also From Tracing -- Uniform Title','acsaf','name'), '2'), + (44, 1, 4, '730', 'adfghklmnoprstvwxyz25', 'adfghklmnoprstvxyz', oils_i18n_gettext('44','Established Heading Linking Entry -- Uniform Title','acsaf','name'), '2'), + (64, 1, 4, '430', 'adfgiklmnoprstvwxyz4', 'adfgiklmnoprstvxyz', oils_i18n_gettext('64','See From Tracing -- Uniform Title','acsaf','name'), '2'); + +INSERT INTO authority.control_set_authority_field (id, control_set, main_entry, tag, sf_list, display_sf_list, name) VALUES + +-- Main entries + (1, 1, NULL, '100', 'abcdfklmnopqrstvxyz', 'abcdefklmnopqrstvxyz', + oils_i18n_gettext('1','Heading -- Personal Name','acsaf','name')), + (2, 1, NULL, '110', 'abcdfgklmnoprstvxyz', 'abcdefgklmnoprstvxyz', + oils_i18n_gettext('2','Heading -- Corporate Name','acsaf','name')), + (3, 1, NULL, '111', 'acdefgklnpqstvxyz', 'acdefgklnpqstvxyz', + oils_i18n_gettext('3','Heading -- Meeting Name','acsaf','name')), + (5, 1, NULL, '150', 'abvxyz', 'abvxyz', + oils_i18n_gettext('5','Heading -- Topical Term','acsaf','name')), + (6, 1, NULL, '151', 'avxyz', 'avxyz', + oils_i18n_gettext('6','Heading -- Geographic Name','acsaf','name')), + (7, 1, NULL, '155', 'avxyz', 'avxyz', + oils_i18n_gettext('7','Heading -- Genre/Form Term','acsaf','name')), + (8, 1, NULL, '180', 'vxyz', 'vxyz', + oils_i18n_gettext('8','Heading -- General Subdivision','acsaf','name')), + (9, 1, NULL, '181', 'vxyz', 'vxyz', + oils_i18n_gettext('9','Heading -- Geographic Subdivision','acsaf','name')), + (10, 1, NULL, '182', 'vxyz', 'vxyz', + oils_i18n_gettext('10','Heading -- Chronological Subdivision','acsaf','name')), + (11, 1, NULL, '185', 'vxyz', 'vxyz', + oils_i18n_gettext('11','Heading -- Form Subdivision','acsaf','name')), + (12, 1, NULL, '148', 'avxyz', 'avxyz', + oils_i18n_gettext('12','Heading -- Chronological Term','acsaf','name')), + +-- See Also From tracings + (21, 1, 1, '500', 'abcdefiklmnopqrstvwxyz4', 'abcdefiklmnopqrstvxyz', oils_i18n_gettext('21','See Also From Tracing -- Personal Name','acsaf','name')), + (22, 1, 2, '510', 'abcdefgiklmnoprstvwxyz4', 'abcdefgiklmnoprstvxyz', oils_i18n_gettext('22','See Also From Tracing -- Corporate Name','acsaf','name')), + (23, 1, 3, '511', 'acdefgiklnpqstvwxyz4', 'acdefgiklnpqstvxyz', oils_i18n_gettext('23','See Also From Tracing -- Meeting Name','acsaf','name')), + (25, 1, 5, '550', 'abivwxyz4', 'abivxyz', oils_i18n_gettext('25','See Also From Tracing -- Topical Term','acsaf','name')), + (26, 1, 6, '551', 'aivwxyz4', 'aivxyz', oils_i18n_gettext('26','See Also From Tracing -- Geographic Name','acsaf','name')), + (27, 1, 7, '555', 'aivwxyz4', 'aivxyz', oils_i18n_gettext('27','See Also From Tracing -- Genre/Form Term','acsaf','name')), + (28, 1, 8, '580', 'ivwxyz4', 'ivxyz', oils_i18n_gettext('28','See Also From Tracing -- General Subdivision','acsaf','name')), + (29, 1, 9, '581', 'ivwxyz4', 'ivxyz', oils_i18n_gettext('29','See Also From Tracing -- Geographic Subdivision','acsaf','name')), + (30, 1, 10, '582', 'ivwxyz4', 'ivxyz', oils_i18n_gettext('30','See Also From Tracing -- Chronological Subdivision','acsaf','name')), + (31, 1, 11, '585', 'ivwxyz4', 'ivxyz', oils_i18n_gettext('31','See Also From Tracing -- Form Subdivision','acsaf','name')), + (32, 1, 12, '548', 'aivwxyz4', 'aivxyz', oils_i18n_gettext('32','See Also From Tracing -- Chronological Term','acsaf','name')), + +-- Linking entries + (41, 1, 1, '700', 'abcdefghjklmnopqrstvwxyz25', 'abcdefghjklmnopqrstvxyz', oils_i18n_gettext('41','Established Heading Linking Entry -- Personal Name','acsaf','name')), + (42, 1, 2, '710', 'abcdefghklmnoprstvwxyz25', 'abcdefghklmnoprstvxyz', oils_i18n_gettext('42','Established Heading Linking Entry -- Corporate Name','acsaf','name')), + (43, 1, 3, '711', 'acdefghklnpqstvwxyz25', 'acdefghklnpqstvxyz', oils_i18n_gettext('43','Established Heading Linking Entry -- Meeting Name','acsaf','name')), + (45, 1, 5, '750', 'abvwxyz25', 'abvxyz', oils_i18n_gettext('45','Established Heading Linking Entry -- Topical Term','acsaf','name')), + (46, 1, 6, '751', 'avwxyz25', 'avxyz', oils_i18n_gettext('46','Established Heading Linking Entry -- Geographic Name','acsaf','name')), + (47, 1, 7, '755', 'avwxyz25', 'avxyz', oils_i18n_gettext('47','Established Heading Linking Entry -- Genre/Form Term','acsaf','name')), + (48, 1, 8, '780', 'vwxyz25', 'vxyz', oils_i18n_gettext('48','Subdivision Linking Entry -- General Subdivision','acsaf','name')), + (49, 1, 9, '781', 'vwxyz25', 'vxyz', oils_i18n_gettext('49','Subdivision Linking Entry -- Geographic Subdivision','acsaf','name')), + (50, 1, 10, '782', 'vwxyz25', 'vxyz', oils_i18n_gettext('50','Subdivision Linking Entry -- Chronological Subdivision','acsaf','name')), + (51, 1, 11, '785', 'vwxyz25', 'vxyz', oils_i18n_gettext('51','Subdivision Linking Entry -- Form Subdivision','acsaf','name')), + (52, 1, 12, '748', 'avwxyz25', 'avxyz', oils_i18n_gettext('52','Established Heading Linking Entry -- Chronological Term','acsaf','name')), + +-- See From tracings + (61, 1, 1, '400', 'abcdefiklmnopqrstvwxyz4', 'abcdefiklmnopqrstvxyz', oils_i18n_gettext('61','See From Tracing -- Personal Name','acsaf','name')), + (62, 1, 2, '410', 'abcdefgiklmnoprstvwxyz4', 'abcdefgiklmnoprstvxyz', oils_i18n_gettext('62','See From Tracing -- Corporate Name','acsaf','name')), + (63, 1, 3, '411', 'acdefgiklnpqstvwxyz4', 'acdefgiklnpqstvxyz', oils_i18n_gettext('63','See From Tracing -- Meeting Name','acsaf','name')), + (65, 1, 5, '450', 'abivwxyz4', 'abivxyz', oils_i18n_gettext('65','See From Tracing -- Topical Term','acsaf','name')), + (66, 1, 6, '451', 'aivwxyz4', 'aivxyz', oils_i18n_gettext('66','See From Tracing -- Geographic Name','acsaf','name')), + (67, 1, 7, '455', 'aivwxyz4', 'aivxyz', oils_i18n_gettext('67','See From Tracing -- Genre/Form Term','acsaf','name')), + (68, 1, 8, '480', 'ivwxyz4', 'ivxyz', oils_i18n_gettext('68','See From Tracing -- General Subdivision','acsaf','name')), + (69, 1, 9, '481', 'ivwxyz4', 'ivxyz', oils_i18n_gettext('69','See From Tracing -- Geographic Subdivision','acsaf','name')), + (70, 1, 10, '482', 'ivwxyz4', 'ivxyz', oils_i18n_gettext('70','See From Tracing -- Chronological Subdivision','acsaf','name')), + (71, 1, 11, '485', 'ivwxyz4', 'ivxyz', oils_i18n_gettext('71','See From Tracing -- Form Subdivision','acsaf','name')), + (72, 1, 12, '448', 'aivwxyz4', 'aivxyz', oils_i18n_gettext('72','See From Tracing -- Chronological Term','acsaf','name')); + +-- No linking on 4xx fields for LOC +UPDATE authority.control_set_authority_field + SET linking_subfield = '0' WHERE tag LIKE ANY (ARRAY['5%','7%']); + +-- Set the default joiner for subject-ish authority fields +UPDATE authority.control_set_authority_field + SET joiner = ' -- ' WHERE tag LIKE ANY (ARRAY['_4_','_5_','_8_']); + + +INSERT INTO authority.browse_axis (code,name,description,sorter) VALUES + ('title','Title','Title axis','titlesort'), + ('author','Author','Author axis','titlesort'), + ('subject','Subject','Subject axis','titlesort'), + ('topic','Topic','Topic Subject axis','titlesort'); + +INSERT INTO authority.browse_axis_authority_field_map (axis,field) VALUES + ('author', 1 ), + ('author', 2 ), + ('author', 3 ), + ('title', 4 ), + ('topic', 5 ), + ('subject', 5 ), + ('subject', 6 ), + ('subject', 7 ), + ('subject', 12); + +INSERT INTO authority.control_set_bib_field (tag, authority_field) + SELECT '100', id FROM authority.control_set_authority_field WHERE tag IN ('100') + UNION + SELECT '600', id FROM authority.control_set_authority_field WHERE tag IN ('100','180','181','182','185') + UNION + SELECT '700', id FROM authority.control_set_authority_field WHERE tag IN ('100') + UNION + SELECT '800', id FROM authority.control_set_authority_field WHERE tag IN ('100') + UNION + + SELECT '110', id FROM authority.control_set_authority_field WHERE tag IN ('110') + UNION + SELECT '610', id FROM authority.control_set_authority_field WHERE tag IN ('110') + UNION + SELECT '710', id FROM authority.control_set_authority_field WHERE tag IN ('110') + UNION + SELECT '810', id FROM authority.control_set_authority_field WHERE tag IN ('110') + UNION + + SELECT '111', id FROM authority.control_set_authority_field WHERE tag IN ('111') + UNION + SELECT '611', id FROM authority.control_set_authority_field WHERE tag IN ('111') + UNION + SELECT '711', id FROM authority.control_set_authority_field WHERE tag IN ('111') + UNION + SELECT '811', id FROM authority.control_set_authority_field WHERE tag IN ('111') + UNION + + SELECT '130', id FROM authority.control_set_authority_field WHERE tag IN ('130') + UNION + SELECT '240', id FROM authority.control_set_authority_field WHERE tag IN ('130') + UNION + SELECT '630', id FROM authority.control_set_authority_field WHERE tag IN ('130') + UNION + SELECT '730', id FROM authority.control_set_authority_field WHERE tag IN ('130') + UNION + SELECT '830', id FROM authority.control_set_authority_field WHERE tag IN ('130') + UNION + + SELECT '648', id FROM authority.control_set_authority_field WHERE tag IN ('148') + UNION + + SELECT '650', id FROM authority.control_set_authority_field WHERE tag IN ('150','180','181','182','185') + UNION + SELECT '651', id FROM authority.control_set_authority_field WHERE tag IN ('151','180','181','182','185') + UNION + SELECT '655', id FROM authority.control_set_authority_field WHERE tag IN ('155','180','181','182','185') +; + +-- Map between authority controlled bib fields and stock indexing metabib fields +INSERT INTO authority.control_set_bib_field_metabib_field_map (bib_field, metabib_field) + SELECT DISTINCT b.id AS bib_field, m.id AS metabib_field + FROM authority.control_set_bib_field b JOIN authority.control_set_authority_field a ON (b.authority_field = a.id), config.metabib_field m + WHERE a.tag = '100' AND m.name = 'personal' + + UNION + + SELECT DISTINCT b.id AS bib_field, m.id AS metabib_field + FROM authority.control_set_bib_field b JOIN authority.control_set_authority_field a ON (b.authority_field = a.id), config.metabib_field m + WHERE a.tag = '110' AND m.name = 'corporate' + + UNION + + SELECT DISTINCT b.id AS bib_field, m.id AS metabib_field + FROM authority.control_set_bib_field b JOIN authority.control_set_authority_field a ON (b.authority_field = a.id), config.metabib_field m + WHERE a.tag = '111' AND m.name = 'conference' + + UNION + + SELECT DISTINCT b.id AS bib_field, m.id AS metabib_field + FROM authority.control_set_bib_field b JOIN authority.control_set_authority_field a ON (b.authority_field = a.id), config.metabib_field m + WHERE a.tag = '130' AND m.name = 'uniform' + + UNION + + SELECT DISTINCT b.id AS bib_field, m.id AS metabib_field + FROM authority.control_set_bib_field b JOIN authority.control_set_authority_field a ON (b.authority_field = a.id), config.metabib_field m + WHERE a.tag = '148' AND m.name = 'temporal' + + UNION + + SELECT DISTINCT b.id AS bib_field, m.id AS metabib_field + FROM authority.control_set_bib_field b JOIN authority.control_set_authority_field a ON (b.authority_field = a.id), config.metabib_field m + WHERE a.tag = '150' AND m.name = 'topic' + + UNION + + SELECT DISTINCT b.id AS bib_field, m.id AS metabib_field + FROM authority.control_set_bib_field b JOIN authority.control_set_authority_field a ON (b.authority_field = a.id), config.metabib_field m + WHERE a.tag = '151' AND m.name = 'geographic' + + UNION + + SELECT DISTINCT b.id AS bib_field, m.id AS metabib_field + FROM authority.control_set_bib_field b JOIN authority.control_set_authority_field a ON (b.authority_field = a.id), config.metabib_field m + WHERE a.tag = '155' AND m.name = 'genre' -- Just in case... +; + +INSERT INTO authority.thesaurus (code, name, control_set) VALUES + ('a', oils_i18n_gettext('a','Library of Congress Subject Headings','at','name'), 1), + ('b', oils_i18n_gettext('b','LC subject headings for children''s literature','at','name'), 1), + ('c', oils_i18n_gettext('c','Medical Subject Headings','at','name'), 1), + ('d', oils_i18n_gettext('d','National Agricultural Library subject authority file','at','name'), 1), + ('k', oils_i18n_gettext('k','Canadian Subject Headings','at','name'), 1), + ('n', oils_i18n_gettext('n','Not applicable','at','name'), 1), + ('r', oils_i18n_gettext('r','Art and Architecture Thesaurus','at','name'), 1), + ('s', oils_i18n_gettext('s','Sears List of Subject Headings','at','name'), 1), + ('v', oils_i18n_gettext('v','Repertoire de vedettes-matiere','at','name'), 1), + ('z', oils_i18n_gettext('z','Other','at','name'), 1), + ('|', oils_i18n_gettext('|','No attempt to code','at','name'), NULL), + (' ', oils_i18n_gettext(' ','Alternate no attempt to code','at','name'), NULL); + +INSERT INTO action_trigger.hook ( key, core_type, description, passive ) VALUES ( + 'reservation.available', + 'bresv', + 'A reservation is available for pickup', + false +); + +INSERT INTO action_trigger.validator ( module, description ) VALUES ( + 'ReservationIsAvailable', + 'Checked that a reserved resource is available for checkout' +); + +INSERT INTO container.biblio_record_entry_bucket_type (code, label) VALUES ( + 'vandelay_queue', + oils_i18n_gettext('vandelay_queue', 'Vandelay Queue', 'cbrebt', 'label') +); + +INSERT INTO config.usr_setting_type (name,grp,opac_visible,label,description,datatype,fm_class) VALUES ( + 'opac.default_sms_carrier', + 'sms', + TRUE, + oils_i18n_gettext( + 'opac.default_sms_carrier', + 'Default SMS/Text Carrier', + 'cust', + 'label' + ), + oils_i18n_gettext( + 'opac.default_sms_carrier', + 'Default SMS/Text Carrier', + 'cust', + 'description' + ), + 'link', + 'csc' +); + +INSERT INTO config.usr_setting_type (name,grp,opac_visible,label,description,datatype) VALUES ( + 'opac.default_sms_notify', + 'sms', + TRUE, + oils_i18n_gettext( + 'opac.default_sms_notify', + 'Default SMS/Text Number', + 'cust', + 'label' + ), + oils_i18n_gettext( + 'opac.default_sms_notify', + 'Default SMS/Text Number', + 'cust', + 'description' + ), + 'string' +); + +INSERT INTO config.usr_setting_type (name,grp,opac_visible,label,description,datatype) VALUES ( + 'opac.default_phone', + 'opac', + TRUE, + oils_i18n_gettext( + 'opac.default_phone', + 'Default Phone Number', + 'cust', + 'label' + ), + oils_i18n_gettext( + 'opac.default_phone', + 'Default Phone Number', + 'cust', + 'description' + ), + 'string' +); + +INSERT INTO config.usr_setting_type (name,grp,opac_visible,label,description,datatype) VALUES ( + 'ui.grid_columns.circ.hold_pull_list', + 'gui', + FALSE, + oils_i18n_gettext( + 'ui.grid_columns.circ.hold_pull_list', + 'Hold Pull List', + 'cust', + 'label' + ), + oils_i18n_gettext( + 'ui.grid_columns.circ.hold_pull_list', + 'Hold Pull List Saved Column Settings', + 'cust', + 'description' + ), + 'string' +), ( + 'ui.grid_columns.actor.user.event_log', + 'gui', + FALSE, + oils_i18n_gettext( + 'ui.grid_columns.actor.user.event_log', + 'User Event Log', + 'cust', + 'label' + ), + oils_i18n_gettext( + 'ui.grid_columns.actor.user.event_log', + 'User Event Log Saved Column Settings', + 'cust', + 'description' + ), + 'string' +), ( + 'ui.grid_columns.conify.config.circ_matrix_matchpoint', + 'gui', + FALSE, + oils_i18n_gettext( + 'ui.grid_columns.conify.config.circ_matrix_matchpoint', + 'Circulation Policy Configuration', + 'cust', + 'label' + ), + oils_i18n_gettext( + 'ui.grid_columns.conify.config.circ_matrix_matchpoint', + 'Circulation Policy Configuration Column Settings', + 'cust', + 'description' + ), + 'string' +) ; + +SELECT setval( 'config.sms_carrier_id_seq', 1000 ); +INSERT INTO config.sms_carrier VALUES + + -- Testing + ( + 1, + oils_i18n_gettext( + 1, + 'Local', + 'csc', + 'region' + ), + oils_i18n_gettext( + 1, + 'Test Carrier', + 'csc', + 'name' + ), + 'opensrf+$number@localhost', + FALSE + ), + + -- Canada & USA + ( + 2, + oils_i18n_gettext( + 2, + 'Canada & USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 2, + 'Rogers Wireless', + 'csc', + 'name' + ), + '$number@pcs.rogers.com', + TRUE + ), + ( + 3, + oils_i18n_gettext( + 3, + 'Canada & USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 3, + 'Rogers Wireless (Alternate)', + 'csc', + 'name' + ), + '1$number@mms.rogers.com', + TRUE + ), + ( + 4, + oils_i18n_gettext( + 4, + 'Canada & USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 4, + 'Telus Mobility', + 'csc', + 'name' + ), + '$number@msg.telus.com', + TRUE + ), + + -- Canada + ( + 5, + oils_i18n_gettext( + 5, + 'Canada', + 'csc', + 'region' + ), + oils_i18n_gettext( + 5, + 'Koodo Mobile', + 'csc', + 'name' + ), + '$number@msg.telus.com', + TRUE + ), + ( + 6, + oils_i18n_gettext( + 6, + 'Canada', + 'csc', + 'region' + ), + oils_i18n_gettext( + 6, + 'Fido', + 'csc', + 'name' + ), + '$number@fido.ca', + TRUE + ), + ( + 7, + oils_i18n_gettext( + 7, + 'Canada', + 'csc', + 'region' + ), + oils_i18n_gettext( + 7, + 'Bell Mobility & Solo Mobile', + 'csc', + 'name' + ), + '$number@txt.bell.ca', + TRUE + ), + ( + 8, + oils_i18n_gettext( + 8, + 'Canada', + 'csc', + 'region' + ), + oils_i18n_gettext( + 8, + 'Bell Mobility & Solo Mobile (Alternate)', + 'csc', + 'name' + ), + '$number@txt.bellmobility.ca', + TRUE + ), + ( + 9, + oils_i18n_gettext( + 9, + 'Canada', + 'csc', + 'region' + ), + oils_i18n_gettext( + 9, + 'Aliant', + 'csc', + 'name' + ), + '$number@sms.wirefree.informe.ca', + TRUE + ), + ( + 10, + oils_i18n_gettext( + 10, + 'Canada', + 'csc', + 'region' + ), + oils_i18n_gettext( + 10, + 'PC Telecom', + 'csc', + 'name' + ), + '$number@mobiletxt.ca', + TRUE + ), + ( + 11, + oils_i18n_gettext( + 11, + 'Canada', + 'csc', + 'region' + ), + oils_i18n_gettext( + 11, + 'SaskTel', + 'csc', + 'name' + ), + '$number@sms.sasktel.com', + TRUE + ), + ( + 12, + oils_i18n_gettext( + 12, + 'Canada', + 'csc', + 'region' + ), + oils_i18n_gettext( + 12, + 'MTS Mobility', + 'csc', + 'name' + ), + '$number@text.mtsmobility.com', + TRUE + ), + ( + 13, + oils_i18n_gettext( + 13, + 'Canada', + 'csc', + 'region' + ), + oils_i18n_gettext( + 13, + 'Virgin Mobile', + 'csc', + 'name' + ), + '$number@vmobile.ca', + TRUE + ), + + -- International + ( + 14, + oils_i18n_gettext( + 14, + 'International', + 'csc', + 'region' + ), + oils_i18n_gettext( + 14, + 'Iridium', + 'csc', + 'name' + ), + '$number@msg.iridium.com', + TRUE + ), + ( + 15, + oils_i18n_gettext( + 15, + 'International', + 'csc', + 'region' + ), + oils_i18n_gettext( + 15, + 'Globalstar', + 'csc', + 'name' + ), + '$number@msg.globalstarusa.com', + TRUE + ), + ( + 16, + oils_i18n_gettext( + 16, + 'International', + 'csc', + 'region' + ), + oils_i18n_gettext( + 16, + 'Bulletin.net', + 'csc', + 'name' + ), + '$number@bulletinmessenger.net', -- International Formatted number + TRUE + ), + ( + 17, + oils_i18n_gettext( + 17, + 'International', + 'csc', + 'region' + ), + oils_i18n_gettext( + 17, + 'Panacea Mobile', + 'csc', + 'name' + ), + '$number@api.panaceamobile.com', + TRUE + ), + + -- USA + ( + 18, + oils_i18n_gettext( + 18, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 18, + 'C Beyond', + 'csc', + 'name' + ), + '$number@cbeyond.sprintpcs.com', + TRUE + ), + ( + 19, + oils_i18n_gettext( + 19, + 'Alaska, USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 19, + 'General Communications, Inc.', + 'csc', + 'name' + ), + '$number@mobile.gci.net', + TRUE + ), + ( + 20, + oils_i18n_gettext( + 20, + 'California, USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 20, + 'Golden State Cellular', + 'csc', + 'name' + ), + '$number@gscsms.com', + TRUE + ), + ( + 21, + oils_i18n_gettext( + 21, + 'Cincinnati, Ohio, USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 21, + 'Cincinnati Bell', + 'csc', + 'name' + ), + '$number@gocbw.com', + TRUE + ), + ( + 22, + oils_i18n_gettext( + 22, + 'Hawaii, USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 22, + 'Hawaiian Telcom Wireless', + 'csc', + 'name' + ), + '$number@hawaii.sprintpcs.com', + TRUE + ), + ( + 23, + oils_i18n_gettext( + 23, + 'Midwest, USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 23, + 'i wireless (T-Mobile)', + 'csc', + 'name' + ), + '$number.iws@iwspcs.net', + TRUE + ), + ( + 24, + oils_i18n_gettext( + 24, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 24, + 'i-wireless (Sprint PCS)', + 'csc', + 'name' + ), + '$number@iwirelesshometext.com', + TRUE + ), + ( + 25, + oils_i18n_gettext( + 25, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 25, + 'MetroPCS', + 'csc', + 'name' + ), + '$number@mymetropcs.com', + TRUE + ), + ( + 26, + oils_i18n_gettext( + 26, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 26, + 'Kajeet', + 'csc', + 'name' + ), + '$number@mobile.kajeet.net', + TRUE + ), + ( + 27, + oils_i18n_gettext( + 27, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 27, + 'Element Mobile', + 'csc', + 'name' + ), + '$number@SMS.elementmobile.net', + TRUE + ), + ( + 28, + oils_i18n_gettext( + 28, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 28, + 'Esendex', + 'csc', + 'name' + ), + '$number@echoemail.net', + TRUE + ), + ( + 29, + oils_i18n_gettext( + 29, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 29, + 'Boost Mobile', + 'csc', + 'name' + ), + '$number@myboostmobile.com', + TRUE + ), + ( + 30, + oils_i18n_gettext( + 30, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 30, + 'BellSouth', + 'csc', + 'name' + ), + '$number@bellsouth.com', + TRUE + ), + ( + 31, + oils_i18n_gettext( + 31, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 31, + 'Bluegrass Cellular', + 'csc', + 'name' + ), + '$number@sms.bluecell.com', + TRUE + ), + ( + 32, + oils_i18n_gettext( + 32, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 32, + 'AT&T Enterprise Paging', + 'csc', + 'name' + ), + '$number@page.att.net', + TRUE + ), + ( + 33, + oils_i18n_gettext( + 33, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 33, + 'AT&T Mobility/Wireless', + 'csc', + 'name' + ), + '$number@txt.att.net', + TRUE + ), + ( + 34, + oils_i18n_gettext( + 34, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 34, + 'AT&T Global Smart Messaging Suite', + 'csc', + 'name' + ), + '$number@sms.smartmessagingsuite.com', + TRUE + ), + ( + 35, + oils_i18n_gettext( + 35, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 35, + 'Alltel (Allied Wireless)', + 'csc', + 'name' + ), + '$number@sms.alltelwireless.com', + TRUE + ), + ( + 36, + oils_i18n_gettext( + 36, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 36, + 'Alaska Communications', + 'csc', + 'name' + ), + '$number@msg.acsalaska.com', + TRUE + ), + ( + 37, + oils_i18n_gettext( + 37, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 37, + 'Ameritech', + 'csc', + 'name' + ), + '$number@paging.acswireless.com', + TRUE + ), + ( + 38, + oils_i18n_gettext( + 38, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 38, + 'Cingular (GoPhone prepaid)', + 'csc', + 'name' + ), + '$number@cingulartext.com', + TRUE + ), + ( + 39, + oils_i18n_gettext( + 39, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 39, + 'Cingular (Postpaid)', + 'csc', + 'name' + ), + '$number@cingular.com', + TRUE + ), + ( + 40, + oils_i18n_gettext( + 40, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 40, + 'Cellular One (Dobson) / O2 / Orange', + 'csc', + 'name' + ), + '$number@mobile.celloneusa.com', + TRUE + ), + ( + 41, + oils_i18n_gettext( + 41, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 41, + 'Cellular South', + 'csc', + 'name' + ), + '$number@csouth1.com', + TRUE + ), + ( + 42, + oils_i18n_gettext( + 42, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 42, + 'Cellcom', + 'csc', + 'name' + ), + '$number@cellcom.quiktxt.com', + TRUE + ), + ( + 43, + oils_i18n_gettext( + 43, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 43, + 'Chariton Valley Wireless', + 'csc', + 'name' + ), + '$number@sms.cvalley.net', + TRUE + ), + ( + 44, + oils_i18n_gettext( + 44, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 44, + 'Cricket', + 'csc', + 'name' + ), + '$number@sms.mycricket.com', + TRUE + ), + ( + 45, + oils_i18n_gettext( + 45, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 45, + 'Cleartalk Wireless', + 'csc', + 'name' + ), + '$number@sms.cleartalk.us', + TRUE + ), + ( + 46, + oils_i18n_gettext( + 46, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 46, + 'Edge Wireless', + 'csc', + 'name' + ), + '$number@sms.edgewireless.com', + TRUE + ), + ( + 47, + oils_i18n_gettext( + 47, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 47, + 'Syringa Wireless', + 'csc', + 'name' + ), + '$number@rinasms.com', + TRUE + ), + ( + 48, + oils_i18n_gettext( + 48, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 48, + 'T-Mobile', + 'csc', + 'name' + ), + '$number@tmomail.net', + TRUE + ), + ( + 49, + oils_i18n_gettext( + 49, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 49, + 'Straight Talk / PagePlus Cellular', + 'csc', + 'name' + ), + '$number@vtext.com', + TRUE + ), + ( + 50, + oils_i18n_gettext( + 50, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 50, + 'South Central Communications', + 'csc', + 'name' + ), + '$number@rinasms.com', + TRUE + ), + ( + 51, + oils_i18n_gettext( + 51, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 51, + 'Simple Mobile', + 'csc', + 'name' + ), + '$number@smtext.com', + TRUE + ), + ( + 52, + oils_i18n_gettext( + 52, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 52, + 'Sprint (PCS)', + 'csc', + 'name' + ), + '$number@messaging.sprintpcs.com', + TRUE + ), + ( + 53, + oils_i18n_gettext( + 53, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 53, + 'Nextel', + 'csc', + 'name' + ), + '$number@messaging.nextel.com', + TRUE + ), + ( + 54, + oils_i18n_gettext( + 54, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 54, + 'Pioneer Cellular', + 'csc', + 'name' + ), + '$number@zsend.com', -- nine digit number + TRUE + ), + ( + 55, + oils_i18n_gettext( + 55, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 55, + 'Qwest Wireless', + 'csc', + 'name' + ), + '$number@qwestmp.com', + TRUE + ), + ( + 56, + oils_i18n_gettext( + 56, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 56, + 'US Cellular', + 'csc', + 'name' + ), + '$number@email.uscc.net', + TRUE + ), + ( + 57, + oils_i18n_gettext( + 57, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 57, + 'Unicel', + 'csc', + 'name' + ), + '$number@utext.com', + TRUE + ), + ( + 58, + oils_i18n_gettext( + 58, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 58, + 'Teleflip', + 'csc', + 'name' + ), + '$number@teleflip.com', + TRUE + ), + ( + 59, + oils_i18n_gettext( + 59, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 59, + 'Virgin Mobile', + 'csc', + 'name' + ), + '$number@vmobl.com', + TRUE + ), + ( + 60, + oils_i18n_gettext( + 60, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 60, + 'Verizon Wireless', + 'csc', + 'name' + ), + '$number@vtext.com', + TRUE + ), + ( + 61, + oils_i18n_gettext( + 61, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 61, + 'USA Mobility', + 'csc', + 'name' + ), + '$number@usamobility.net', + TRUE + ), + ( + 62, + oils_i18n_gettext( + 62, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 62, + 'Viaero', + 'csc', + 'name' + ), + '$number@viaerosms.com', + TRUE + ), + ( + 63, + oils_i18n_gettext( + 63, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 63, + 'TracFone', + 'csc', + 'name' + ), + '$number@mmst5.tracfone.com', + TRUE + ), + ( + 64, + oils_i18n_gettext( + 64, + 'USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 64, + 'Centennial Wireless', + 'csc', + 'name' + ), + '$number@cwemail.com', + TRUE + ), + + -- South Korea and USA + ( + 65, + oils_i18n_gettext( + 65, + 'South Korea and USA', + 'csc', + 'region' + ), + oils_i18n_gettext( + 65, + 'Helio', + 'csc', + 'name' + ), + '$number@myhelio.com', + TRUE + ) +; + +INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) + SELECT + pgt.id, perm.id, aout.depth, TRUE + FROM + permission.grp_tree pgt, + permission.perm_list perm, + actor.org_unit_type aout + WHERE + pgt.name = 'Global Administrator' AND + aout.name = 'Consortium' AND + perm.code = 'ADMIN_SMS_CARRIER'; + +INSERT INTO action_trigger.reactor ( + module, + description +) VALUES ( + 'SendSMS', + 'Send an SMS text message based on a user-defined template' +); + +INSERT INTO action_trigger.event_definition ( + active, + owner, + name, + hook, + validator, + reactor, + cleanup_success, + delay, + delay_field, + group_field, + template +) VALUES ( + true, + 1, -- admin + 'Hold Ready for Pickup SMS Notification', + 'hold.available', + 'HoldIsAvailable', + 'SendSMS', + 'CreateHoldNotification', + '00:30:00', + 'shelf_time', + 'sms_notify', + '[%- USE date -%] +[%- user = target.0.usr -%] +From: [%- params.sender_email || default_sender %] +To: [%- params.recipient_email || helpers.get_sms_gateway_email(target.0.sms_carrier,target.0.sms_notify) %] +Subject: [% target.size %] hold(s) ready +Auto-Submitted: auto-generated + +[% FOR hold IN target %][%- + bibxml = helpers.xml_doc( hold.current_copy.call_number.record.marc ); + title = ""; + FOR part IN bibxml.findnodes(''//*[@tag="245"]/*[@code="a"]''); + title = title _ part.textContent; + END; + author = bibxml.findnodes(''//*[@tag="100"]/*[@code="a"]'').textContent; +%][% hold.usr.first_given_name %]:[% title %] @ [% hold.pickup_lib.name %] +[% END %] +' +); + +INSERT INTO action_trigger.environment ( + event_def, + path +) VALUES ( + currval('action_trigger.event_definition_id_seq'), + 'current_copy.call_number.record.simple_record' +), ( + currval('action_trigger.event_definition_id_seq'), + 'usr' +), ( + currval('action_trigger.event_definition_id_seq'), + 'pickup_lib.billing_address' +); + +INSERT INTO action_trigger.event_params (event_def, param, value) + VALUES (currval('action_trigger.event_definition_id_seq'), 'check_sms_notify', 1); + +INSERT INTO action_trigger.hook( + key, + core_type, + description, + passive +) VALUES ( + 'acn.format.sms_text', + 'acn', + oils_i18n_gettext( + 'acn.format.sms_text', + 'A text message has been requested for a call number.', + 'ath', + 'description' + ), + FALSE +); + +INSERT INTO action_trigger.event_definition ( + active, + owner, + name, + hook, + validator, + reactor, + template +) VALUES ( + true, + 1, -- admin + 'SMS Call Number', + 'acn.format.sms_text', + 'NOOP_True', + 'SendSMS', + '[%- USE date -%] +From: [%- params.sender_email || default_sender %] +To: [%- params.recipient_email || helpers.get_sms_gateway_email(user_data.sms_carrier,user_data.sms_notify) %] +Subject: Call Number +Auto-Submitted: auto-generated + +[%- + bibxml = helpers.xml_doc( target.record.marc ); + title = ""; + FOR part IN bibxml.findnodes(''//*[@tag="245"]/*[@code="a" or @code="b"]''); + title = title _ part.textContent; + END; + author = bibxml.findnodes(''//*[@tag="100"]/*[@code="a"]'').textContent; +%] +Call Number: [% target.label %] +Location: [% helpers.get_most_populous_location( target.id ).name %] +Library: [% target.owning_lib.name %] +[%- IF title %] +Title: [% title %] +[%- END %] +[%- IF author %] +Author: [% author %] +[%- END %] +' +); + +INSERT INTO action_trigger.environment ( + event_def, + path +) VALUES ( + currval('action_trigger.event_definition_id_seq'), + 'record.simple_record' +), ( + currval('action_trigger.event_definition_id_seq'), + 'owning_lib.billing_address' +); + +INSERT INTO vandelay.merge_profile (id, owner, name, replace_spec) + VALUES (1, 1, oils_i18n_gettext(1, 'Match-Only Merge', 'vmp', 'name'), '901c'); + +INSERT INTO vandelay.merge_profile (id, owner, name, preserve_spec, update_bib_source) + VALUES (2, 1, oils_i18n_gettext(2, 'Full Overlay', 'vmp', 'name'), '901c', TRUE); + +SELECT SETVAL('vandelay.merge_profile_id_seq'::TEXT, 100); + +-- user activity seed data -- + +INSERT INTO config.usr_activity_type (id, ewho, ewhat, ehow, egroup, label) VALUES + + -- authen/authz actions + -- note: "opensrf" is the default ingress/ehow + (1, NULL, 'login', 'opensrf', 'authen', oils_i18n_gettext(1 , 'Login via opensrf', 'cuat', 'label')) + ,(2, NULL, 'login', 'srfsh', 'authen', oils_i18n_gettext(2 , 'Login via srfsh', 'cuat', 'label')) + ,(3, NULL, 'login', 'gateway-v1', 'authen', oils_i18n_gettext(3 , 'Login via gateway-v1', 'cuat', 'label')) + ,(4, NULL, 'login', 'translator-v1','authen', oils_i18n_gettext(4 , 'Login via translator-v1', 'cuat', 'label')) + ,(5, NULL, 'login', 'xmlrpc', 'authen', oils_i18n_gettext(5 , 'Login via xmlrpc', 'cuat', 'label')) + ,(6, NULL, 'login', 'remoteauth', 'authen', oils_i18n_gettext(6 , 'Login via remoteauth', 'cuat', 'label')) + ,(7, NULL, 'login', 'sip2', 'authen', oils_i18n_gettext(7 , 'SIP2 Proxy Login', 'cuat', 'label')) + ,(8, NULL, 'login', 'apache', 'authen', oils_i18n_gettext(8 , 'Login via Apache module', 'cuat', 'label')) + + ,(9, NULL, 'verify', 'opensrf', 'authz', oils_i18n_gettext(9 , 'Verification via opensrf', 'cuat', 'label')) + ,(10, NULL, 'verify', 'srfsh', 'authz', oils_i18n_gettext(10, 'Verification via srfsh', 'cuat', 'label')) + ,(11, NULL, 'verify', 'gateway-v1', 'authz', oils_i18n_gettext(11, 'Verification via gateway-v1', 'cuat', 'label')) + ,(12, NULL, 'verify', 'translator-v1','authz', oils_i18n_gettext(12, 'Verification via translator-v1', 'cuat', 'label')) + ,(13, NULL, 'verify', 'xmlrpc', 'authz', oils_i18n_gettext(13, 'Verification via xmlrpc', 'cuat', 'label')) + ,(14, NULL, 'verify', 'remoteauth', 'authz', oils_i18n_gettext(14, 'Verification via remoteauth', 'cuat', 'label')) + ,(15, NULL, 'verify', 'sip2', 'authz', oils_i18n_gettext(15, 'SIP2 User Verification', 'cuat', 'label')) + + -- authen/authz actions w/ known uses of "who" + ,(16, 'opac', 'login', 'gateway-v1', 'authen', oils_i18n_gettext(16, 'OPAC Login (jspac)', 'cuat', 'label')) + ,(17, 'opac', 'login', 'apache', 'authen', oils_i18n_gettext(17, 'OPAC Login (tpac)', 'cuat', 'label')) + ,(18, 'staffclient', 'login', 'gateway-v1', 'authen', oils_i18n_gettext(18, 'Staff Client Login', 'cuat', 'label')) + ,(19, 'selfcheck', 'login', 'translator-v1','authen', oils_i18n_gettext(19, 'Self-Check Proxy Login', 'cuat', 'label')) + ,(20, 'ums', 'login', 'xmlrpc', 'authen', oils_i18n_gettext(20, 'Unique Mgt Login', 'cuat', 'label')) + ,(21, 'authproxy', 'login', 'apache', 'authen', oils_i18n_gettext(21, 'Apache Auth Proxy Login', 'cuat', 'label')) + ,(22, 'libraryelf', 'login', 'xmlrpc', 'authz', oils_i18n_gettext(22, 'LibraryElf Login', 'cuat', 'label')) + + ,(23, 'selfcheck', 'verify', 'translator-v1','authz', oils_i18n_gettext(23, 'Self-Check User Verification', 'cuat', 'label')) + ,(24, 'ezproxy', 'verify', 'remoteauth', 'authz', oils_i18n_gettext(24, 'EZProxy Verification', 'cuat', 'label')) + -- ... + ; + +-- reserve the first 1000 slots +SELECT SETVAL('config.usr_activity_type_id_seq'::TEXT, 1000); + +INSERT INTO config.org_unit_setting_type + (name, label, description, grp, datatype) + VALUES ( + 'circ.fines.charge_when_closed', + oils_i18n_gettext( + 'circ.fines.charge_when_closed', + 'Charge fines on overdue circulations when closed', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.fines.charge_when_closed', + 'Normally, fines are not charged when a library is closed. When set to True, fines will be charged during scheduled closings and normal weekly closed days.', + 'coust', + 'description' + ), + 'circ', + 'bool' + ); + +INSERT INTO config.org_unit_setting_type + (name, label, description, grp, datatype) + VALUES ( + 'circ.patron.usr_activity_retrieve.max', + oils_i18n_gettext( + 'circ.patron.usr_activity_retrieve.max', + 'Max user activity entries to retrieve (staff client)', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.patron.usr_activity_retrieve.max', + 'Sets the maxinum number of recent user activity entries to retrieve for display in the staff client. 0 means show none, -1 means show all. Default is 1.', + 'coust', + 'description' + ), + 'gui', + 'integer' + ); +-- circ export csv export -- + +INSERT INTO action_trigger.hook (key, core_type, description, passive) +VALUES ( + 'circ.format.history.csv', + 'auch', + oils_i18n_gettext( + 'circ.format.history.csv', + 'Produce CSV of circulation history', + 'ath', + 'description' + ), + FALSE +); + +INSERT INTO action_trigger.event_definition ( + active, owner, name, hook, reactor, validator, group_field, template) +VALUES ( + TRUE, 1, 'Circ History CSV', 'circ.format.history.csv', 'ProcessTemplate', 'NOOP_True', 'usr', +$$ +Title,Author,Call Number,Barcode,Format +[%- +FOR circ IN target; + bibxml = helpers.unapi_bre(circ.target_copy.call_number.record, {flesh => '{mra}'}); + title = ""; + FOR part IN bibxml.findnodes('//*[@tag="245"]/*[@code="a" or @code="b"]'); + title = title _ part.textContent; + END; + author = bibxml.findnodes('//*[@tag="100"]/*[@code="a"]').textContent; + item_type = bibxml.findnodes('//*[local-name()="attributes"]/*[local-name()="field"][@name="item_type"]').getAttribute('coded-value') %] + + [%- helpers.csv_datum(title) -%], + [%- helpers.csv_datum(author) -%], + [%- helpers.csv_datum(circ.target_copy.call_number.label) -%], + [%- helpers.csv_datum(circ.target_copy.barcode) -%], + [%- helpers.csv_datum(item_type) %] +[%- END -%] +$$ +); + +INSERT INTO action_trigger.environment (event_def, path) + VALUES ( + currval('action_trigger.event_definition_id_seq'), + 'target_copy.call_number' + ); + +INSERT INTO actor.toolbar(id,org,label,layout) VALUES + ( 1, 1, oils_i18n_gettext(1, 'circ', 'atb', 'label'), '["circ_checkout","circ_checkin","toolbarseparator.1","search_opac","copy_status","toolbarseparator.2","patron_search","patron_register","toolbarspacer.3","hotkeys_toggle"]' ), + ( 2, 1, oils_i18n_gettext(2, 'cat', 'atb', 'label'), '["circ_checkin","toolbarseparator.1","search_opac","copy_status","toolbarseparator.2","create_marc","authority_manage","retrieve_last_record","toolbarspacer.3","hotkeys_toggle"]' ); + +INSERT INTO config.global_flag (name, enabled, label) + VALUES ( + 'opac.org_unit.non_inherited_visibility', + FALSE, + oils_i18n_gettext( + 'opac.org_unit.non_inherited_visibility', + 'Org Units Do Not Inherit Visibility', + 'cgf', + 'label' + ) + ); + +INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, grp, update_perm ) + VALUES ( + 'ui.hide_copy_editor_fields', + oils_i18n_gettext( + 'ui.hide_copy_editor_fields', + 'GUI: Hide these fields within the Item Attribute Editor', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'ui.hide_copy_editor_fields', + 'This setting may be best maintained with the dedicated configuration' + || ' interface within the Item Attribute Editor. However, here it' + || ' shows up as comma separated list of field identifiers to hide.', + 'coust', + 'description' + ), + 'array', + 'gui', + 539 + ); + +INSERT into config.org_unit_setting_type + (name, grp, label, description, datatype) + VALUES ( + 'opac.patron.auto_overide_hold_events', + 'opac', + oils_i18n_gettext( + 'opac.patron.auto_overide_hold_events', + 'Auto-Override Permitted Hold Blocks (Patrons)', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'opac.patron.auto_overide_hold_events', + 'When a patron places a hold that fails and the patron has the correct permission ' || + 'to override the hold, automatically override the hold without presenting a message ' || + 'to the patron and requiring that the patron make a decision to override', + 'coust', + 'description' + ), + 'bool' + ); + +INSERT into config.org_unit_setting_type + (name, grp, label, description, datatype) + VALUES ( + 'opac.patron.temporary_list_warn', + 'opac', + oils_i18n_gettext( + 'opac.patron.temporary_list_warn', + 'Warn patrons when adding to a temporary book list', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'opac.patron.temporary_list_warn', + 'Present a warning dialog to the patron when a patron adds a book to a temporary book list.', + 'coust', + 'description' + ), + 'bool' + ); + +INSERT INTO config.usr_setting_type + (name,grp,opac_visible,label,description,datatype) +VALUES ( + 'opac.temporary_list_no_warn', + 'opac', + TRUE, + oils_i18n_gettext( + 'opac.temporary_list_no_warn', + 'Opt out of warning when adding a book to a temporary book list', + 'cust', + 'label' + ), + oils_i18n_gettext( + 'opac.temporary_list_no_warn', + 'Opt out of warning when adding a book to a temporary book list', + 'cust', + 'description' + ), + 'bool' +); + +INSERT INTO config.usr_setting_type + (name,grp,opac_visible,label,description,datatype) +VALUES ( + 'opac.default_list', + 'opac', + FALSE, + oils_i18n_gettext( + 'opac.default_list', + 'Default list to use when adding to a list', + 'cust', + 'label' + ), + oils_i18n_gettext( + 'opac.default_list', + 'Default list to use when adding to a list', + 'cust', + 'description' + ), + 'integer' +); + +INSERT INTO config.org_unit_setting_type ( + name, grp, label, description, datatype +) VALUES ( + 'circ.staff.max_visible_event_age', + 'circ', + 'Maximum visible age of User Trigger Events in Staff Interfaces', + 'If this is unset, staff can view User Trigger Events regardless of age. When this is set to an interval, it represents the age of the oldest possible User Trigger Event that can be viewed.', + 'interval' +); + +-- kid's opac main search filter + +INSERT INTO actor.search_filter_group (owner, code, label) + VALUES (1, 'kpac_main', 'Kid''s OPAC Search Filter'); + +INSERT INTO actor.search_query (label, query_text) + VALUES ('Children''s Materials', 'audience(a,b,c)'); +INSERT INTO actor.search_query (label, query_text) + VALUES ('Young Adult Materials', 'audience(j,d)'); +INSERT INTO actor.search_query (label, query_text) + VALUES ('General/Adult Materials', 'audience(e,f,g, )'); + +INSERT INTO actor.search_filter_group_entry (grp, query, pos) + VALUES ( + (SELECT id FROM actor.search_filter_group WHERE code = 'kpac_main'), + (SELECT id FROM actor.search_query WHERE label = 'Children''s Materials'), + 0 + ); INSERT INTO actor.search_filter_group_entry (grp, query, pos) VALUES ( + (SELECT id FROM actor.search_filter_group WHERE code = 'kpac_main'), + (SELECT id FROM actor.search_query WHERE label = 'Young Adult Materials'), + 1 + ); +INSERT INTO actor.search_filter_group_entry (grp, query, pos) + VALUES ( + (SELECT id FROM actor.search_filter_group WHERE code = 'kpac_main'), + (SELECT id FROM actor.search_query WHERE label = 'General/Adult Materials'), + 2 + ); +INSERT into config.org_unit_setting_type + (name, grp, label, description, datatype) + VALUES ( + 'acq.fund.allow_rollover_without_money', + 'acq', + oils_i18n_gettext( + 'acq.fund.allow_rollover_without_money', + 'Allow funds to be rolled over without bringing the money along', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'acq.fund.allow_rollover_without_money', + 'Allow funds to be rolled over without bringing the money along. This makes money left in the old fund disappear, modeling its return to some outside entity.', + 'coust', + 'description' + ), + 'bool' + ); + +INSERT INTO config.org_unit_setting_type + (name, grp, label, description, datatype) + VALUES ( + 'circ.lost.xact_open_on_zero', + 'finance', + oils_i18n_gettext( + 'circ.lost.xact_open_on_zero', + 'Leave transaction open when lost balance equals zero', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.lost.xact_open_on_zero', + 'Leave transaction open when lost balance equals zero. This leaves the lost copy on the patron record when it is paid', + 'coust', + 'description' + ), + 'bool' + ); + +INSERT INTO config.org_unit_setting_type + (name, grp, label, description, datatype) + VALUES ( + 'circ.patron_expires_soon_warning', + 'circ', + oils_i18n_gettext( + 'circ.patron_expires_soon_warning', + 'Warn when patron account is about to expire', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.patron_expires_soon_warning', + 'Warn when patron account is about to expire. If set, the staff client displays a warning this many days before the expiry of a patron account. Value is in number of days, for example: 3 for 3 days.', + 'coust', + 'description' + ), + 'integer' + ); + +INSERT INTO config.org_unit_setting_type ( + name, label, grp, datatype +) VALUES ( + 'circ.fines.truncate_to_max_fine', + oils_i18n_gettext( + 'circ.fines.truncate_to_max_fine', + 'Truncate fines to max fine amount', + 'coust', + 'label' + ), + 'circ', + 'bool' +); + + +INSERT INTO config.settings_group (name, label) + VALUES ( + 'url_verify', + oils_i18n_gettext( + 'url_verify', + 'URL Verify', + 'csg', + 'label' + ) + ); + +INSERT INTO config.org_unit_setting_type + (name, grp, label, description, datatype, update_perm) + VALUES ( + 'url_verify.url_verification_delay', + 'url_verify', + oils_i18n_gettext( + 'url_verify.url_verification_delay', + 'Number of seconds to wait between URL test attempts.', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'url_verify.url_verification_delay', + 'Throttling mechanism for batch URL verification runs. Each running process will wait this number of seconds after a URL test before performing the next.', + 'coust', + 'description' + ), + 'integer', + 544 + ); + +INSERT INTO config.org_unit_setting_type + (name, grp, label, description, datatype, update_perm) + VALUES ( + 'url_verify.url_verification_max_redirects', + 'url_verify', + oils_i18n_gettext( + 'url_verify.url_verification_max_redirects', + 'Maximum redirect lookups', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'url_verify.url_verification_max_redirects', + 'For URLs returning 3XX redirects, this is the maximum number of redirects we will follow before giving up.', + 'coust', + 'description' + ), + 'integer', + 544 + ); + +INSERT INTO config.org_unit_setting_type + (name, grp, label, description, datatype, update_perm) + VALUES ( + 'url_verify.url_verification_max_wait', + 'url_verify', + oils_i18n_gettext( + 'url_verify.url_verification_max_wait', + 'Maximum wait time (in seconds) for a URL to lookup', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'url_verify.url_verification_max_wait', + 'If we exceed the wait time, the URL is marked as a "timeout" and the system moves on to the next URL', + 'coust', + 'description' + ), + 'integer', + 544 + ); + +INSERT INTO config.filter_dialog_interface (key, description) VALUES ( + 'url_verify', + oils_i18n_gettext( + 'url_verify', + 'All Link Checker filter dialogs', + 'cfdi', + 'description' + ) +); + +INSERT INTO config.usr_setting_type (name,grp,opac_visible,label,description,datatype) VALUES ( + 'ui.grid_columns.url_verify.select_urls', + 'gui', + FALSE, + oils_i18n_gettext( + 'ui.grid_columns.url_verify.select_urls', + 'Link Checker''s URL Selection interface''s saved columns', + 'cust', + 'label' + ), + oils_i18n_gettext( + 'ui.grid_columns.url_verify.select_urls', + 'Link Checker''s URL Selection interface''s saved columns', + 'cust', + 'description' + ), + 'string' +); + +INSERT INTO config.usr_setting_type (name,grp,opac_visible,label,description,datatype) VALUES ( + 'ui.grid_columns.url_verify.review_attempt', + 'gui', + FALSE, + oils_i18n_gettext( + 'ui.grid_columns.url_verify.review_attempt', + 'Link Checker''s Review Attempt interface''s saved columns', + 'cust', + 'label' + ), + oils_i18n_gettext( + 'ui.grid_columns.url_verify.review_attempt', + 'Link Checker''s Review Attempt interface''s saved columns', + 'cust', + 'description' + ), + 'string' +); + +INSERT INTO config.org_unit_setting_type + (name, grp, label, description, datatype, update_perm) + VALUES ( + 'url_verify.verification_batch_size', + 'url_verify', + oils_i18n_gettext( + 'url_verify.verification_batch_size', + 'Number of URLs to test in parallel', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'url_verify.verification_batch_size', + 'URLs are tested in batches. This number defines the size of each batch and it directly relates to the number of back-end processes performing URL verification.', + 'coust', + 'description' + ), + 'integer', + 544 + ); + +INSERT INTO config.org_unit_setting_type + (name, label, description, grp, datatype, fm_class) +VALUES ( + 'acq.upload.default.create_po', + oils_i18n_gettext( + 'acq.upload.default.create_po', + 'Upload Create PO', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'acq.upload.default.create_po', + 'Create a purchase order by default during ACQ file upload', + 'coust', + 'description' + ), + 'acq', + 'bool', + NULL +), ( + 'acq.upload.default.activate_po', + oils_i18n_gettext( + 'acq.upload.default.activate_po', + 'Upload Activate PO', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'acq.upload.default.activate_po', + 'Activate the purchase order by default during ACQ file upload', + 'coust', + 'description' + ), + 'acq', + 'bool', + NULL +), ( + 'acq.upload.default.provider', + oils_i18n_gettext( + 'acq.upload.default.provider', + 'Upload Default Provider', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'acq.upload.default.provider', + 'Default provider to use during ACQ file upload', + 'coust', + 'description' + ), + 'acq', + 'link', + 'acqpro' +), ( + 'acq.upload.default.vandelay.match_set', + oils_i18n_gettext( + 'acq.upload.default.vandelay.match_set', + 'Upload Default Match Set', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'acq.upload.default.vandelay.match_set', + 'Default match set to use during ACQ file upload', + 'coust', + 'description' + ), + 'acq', + 'link', + 'vms' +), ( + 'acq.upload.default.vandelay.merge_profile', + oils_i18n_gettext( + 'acq.upload.default.vandelay.merge_profile', + 'Upload Default Merge Profile', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'acq.upload.default.vandelay.merge_profile', + 'Default merge profile to use during ACQ file upload', + 'coust', + 'description' + ), + 'acq', + 'link', + 'vmp' +), ( + 'acq.upload.default.vandelay.import_non_matching', + oils_i18n_gettext( + 'acq.upload.default.vandelay.import_non_matching', + 'Upload Import Non Matching by Default', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'acq.upload.default.vandelay.import_non_matching', + 'Import non-matching records by default during ACQ file upload', + 'coust', + 'description' + ), + 'acq', + 'bool', + NULL +), ( + 'acq.upload.default.vandelay.merge_on_exact', + oils_i18n_gettext( + 'acq.upload.default.vandelay.merge_on_exact', + 'Upload Merge on Exact Match by Default', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'acq.upload.default.vandelay.merge_on_exact', + 'Merge records on exact match by default during ACQ file upload', + 'coust', + 'description' + ), + 'acq', + 'bool', + NULL +), ( + 'acq.upload.default.vandelay.merge_on_best', + oils_i18n_gettext( + 'acq.upload.default.vandelay.merge_on_best', + 'Upload Merge on Best Match by Default', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'acq.upload.default.vandelay.merge_on_best', + 'Merge records on best match by default during ACQ file upload', + 'coust', + 'description' + ), + 'acq', + 'bool', + NULL +), ( + 'acq.upload.default.vandelay.merge_on_single', + oils_i18n_gettext( + 'acq.upload.default.vandelay.merge_on_single', + 'Upload Merge on Single Match by Default', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'acq.upload.default.vandelay.merge_on_single', + 'Merge records on single match by default during ACQ file upload', + 'coust', + 'description' + ), + 'acq', + 'bool', + NULL +), ( + 'acq.upload.default.vandelay.quality_ratio', + oils_i18n_gettext( + 'acq.upload.default.vandelay.quality_ratio', + 'Upload Default Min. Quality Ratio', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'acq.upload.default.vandelay.quality_ratio', + 'Default minimum quality ratio used during ACQ file upload', + 'coust', + 'description' + ), + 'acq', + 'integer', + NULL +), ( + 'acq.upload.default.vandelay.low_quality_fall_thru_profile', + oils_i18n_gettext( + 'acq.upload.default.vandelay.low_quality_fall_thru_profile', + 'Upload Default Insufficient Quality Fall-Thru Profile', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'acq.upload.default.vandelay.low_quality_fall_thru_profile', + 'Default low-quality fall through profile used during ACQ file upload', + 'coust', + 'description' + ), + 'acq', + 'link', + 'vmp' +), ( + 'acq.upload.default.vandelay.load_item_for_imported', + oils_i18n_gettext( + 'acq.upload.default.vandelay.load_item_for_imported', + 'Upload Load Items for Imported Records by Default', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'acq.upload.default.vandelay.load_item_for_imported', + 'Load items for imported records by default during ACQ file upload', + 'coust', + 'description' + ), + 'acq', + 'bool', + NULL +); + + +INSERT INTO config.ts_config_list(id, name) VALUES + ('simple','Non-Stemmed Simple'), + ('danish_nostop','Danish Stemmed'), + ('dutch_nostop','Dutch Stemmed'), + ('english_nostop','English Stemmed'), + ('finnish_nostop','Finnish Stemmed'), + ('french_nostop','French Stemmed'), + ('german_nostop','German Stemmed'), + ('hungarian_nostop','Hungarian Stemmed'), + ('italian_nostop','Italian Stemmed'), + ('norwegian_nostop','Norwegian Stemmed'), + ('portuguese_nostop','Portuguese Stemmed'), + ('romanian_nostop','Romanian Stemmed'), + ('russian_nostop','Russian Stemmed'), + ('spanish_nostop','Spanish Stemmed'), + ('swedish_nostop','Swedish Stemmed'), + ('turkish_nostop','Turkish Stemmed'); + +INSERT INTO config.metabib_class_ts_map(field_class, ts_config, index_weight, always) VALUES + ('keyword','simple','A',true), + ('keyword','english_nostop','C',true), + ('title','simple','A',true), + ('title','english_nostop','C',true), + ('author','simple','A',true), + ('author','english_nostop','C',true), + ('series','simple','A',true), + ('series','english_nostop','C',true), + ('subject','simple','A',true), + ('subject','english_nostop','C',true), + ('identifier','simple','A',true); + +INSERT INTO config.org_unit_setting_type ( + name, label, description, datatype, fm_class, update_perm, grp +) VALUES ( + 'circ.hold_capture_order', + oils_i18n_gettext( + 'circ.hold_capture_order', + 'Best-hold selection sort order', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.hold_capture_order', + 'Defines the sort order of holds when selecting a hold to fill using a given copy at capture time', + 'coust', + 'description' + ), + 'link', + 'cbho', + 543, + 'holds' +); + +INSERT INTO config.org_unit_setting_type ( + name, label, description, datatype, update_perm, grp +) VALUES ( + 'circ.hold_go_home_interval', + oils_i18n_gettext( + 'circ.hold_go_home_interval', + 'Max foreign-circulation time', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.hold_go_home_interval', + 'Time a copy can spend circulating away from its circ lib before returning there to fill a hold (if one exists there)', + 'coust', + 'description' + ), + 'interval', + 543, + 'holds' +); + + +INSERT INTO config.best_hold_order ( + name, + approx, pprox, aprox, priority, cut, depth, rtime +) VALUES ( + 'Traditional', + 1, 2, 3, 4, 5, 6, 7 +); + +INSERT INTO config.best_hold_order ( + name, + hprox, approx, pprox, aprox, priority, cut, depth, rtime +) VALUES ( + 'Traditional with Holds-always-go-home', + 1, 2, 3, 4, 5, 6, 7, 8 +); + +INSERT INTO config.best_hold_order ( + name, + htime, approx, pprox, aprox, priority, cut, depth, rtime +) VALUES ( + 'Traditional with Holds-go-home', + 1, 2, 3, 4, 5, 6, 7, 8 +); + +INSERT INTO config.best_hold_order ( + name, + priority, cut, rtime, depth, pprox, hprox, aprox, htime +) VALUES ( + 'FIFO', + 1, 2, 3, 4, 5, 6, 7, 8 +); + +INSERT INTO config.best_hold_order ( + name, + hprox, priority, cut, rtime, depth, pprox, aprox, htime +) VALUES ( + 'FIFO with Holds-always-go-home', + 1, 2, 3, 4, 5, 6, 7, 8 +); + +INSERT INTO config.best_hold_order ( + name, + htime, priority, cut, rtime, depth, pprox, aprox, hprox +) VALUES ( + 'FIFO with Holds-go-home', + 1, 2, 3, 4, 5, 6, 7, 8 +); + +INSERT INTO actor.org_unit_setting ( + org_unit, name, value +) VALUES ( + (SELECT id FROM actor.org_unit WHERE parent_ou IS NULL), + 'circ.hold_go_home_interval', + '"6 months"' +); + +INSERT INTO action_trigger.hook ( + key, + core_type, + description, + passive + ) VALUES ( + 'au.barred', + 'au', + 'A user was barred by staff', + FALSE + ); + +INSERT INTO action_trigger.hook ( + key, + core_type, + description, + passive + ) VALUES ( + 'au.unbarred', + 'au', + 'A user was un-barred by staff', + FALSE + ); + +INSERT INTO action_trigger.validator ( + module, + description + ) VALUES ( + 'PatronBarred', + 'Tests if a patron is currently marked as barred' + ); + +INSERT INTO action_trigger.validator ( + module, + description + ) VALUES ( + 'PatronNotBarred', + 'Tests if a patron is currently not marked as barred' + ); + +INSERT INTO config.org_unit_setting_type + (name, label, description, grp, datatype) +VALUES ( + 'acq.fund.rollover_distrib_forms', + oils_i18n_gettext( + 'acq.fund.rollover_distrib_forms', + 'Rollover Distribution Formulae Funds', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'acq.fund.rollover_distrib_forms', + 'During fiscal rollover, update distribution formalae to use new funds', + 'coust', + 'description' + ), + 'acq', + 'bool' +); + +INSERT INTO config.z3950_index_field_map + (id, label, metabib_field, z3950_attr_type) VALUES +(1, oils_i18n_gettext(1, 'Title', 'czifm', 'label'), 5, 'title'), +(2, oils_i18n_gettext(2, 'Author', 'czifm', 'label'), 8, 'author'), +(3, oils_i18n_gettext(3, 'ISBN', 'czifm', 'label'), 18, 'isbn'), +(4, oils_i18n_gettext(4, 'ISSN', 'czifm', 'label'), 19, 'issn'), +(5, oils_i18n_gettext(5, 'LCCN', 'czifm', 'label'), 30, 'lccn'); + +INSERT INTO config.z3950_index_field_map + (id, label, record_attr, z3950_attr_type) VALUES +(6, oils_i18n_gettext(6, 'Pubdate', 'czifm', 'label'),'pubdate', 'pubdate'), +(7, oils_i18n_gettext(7, 'Item Type', 'czifm', 'label'),'item_type', 'item_type'); + + +-- let's leave room for more stock mappings +SELECT SETVAL('config.z3950_index_field_map_id_seq'::TEXT, 1000); + +INSERT INTO config.org_unit_setting_type + (name, grp, label, description, datatype) + VALUES ( + 'cat.z3950.batch.max_parallel', + 'cat', + oils_i18n_gettext( + 'cat.z3950.batch.max_parallel', + 'Maximum Parallel Z39.50 Batch Searches', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'cat.z3950.batch.max_parallel', + 'The maximum number of Z39.50 searches that can be in-flight at any given time when performing batch Z39.50 searches', + 'coust', + 'description' + ), + 'integer' + ); + +INSERT INTO config.org_unit_setting_type + (name, grp, label, description, datatype) + VALUES ( + 'cat.z3950.batch.max_results', + 'cat', + oils_i18n_gettext( + 'cat.z3950.batch.max_results', + 'Maximum Z39.50 Batch Search Results', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'cat.z3950.batch.max_results', + 'The maximum number of search results to retrieve and queue for each record + Z39 source during batch Z39.50 searches', + 'coust', + 'description' + ), + 'integer' + ); + +-- long overdue stuff... + +INSERT INTO config.org_unit_setting_type + (name, grp, datatype, label, description) VALUES +( + 'circ.longoverdue_immediately_available', + 'circ', 'bool', + oils_i18n_gettext( + 'circ.longoverdue_immediately_available', + 'Long-Overdue Items Usable on Checkin', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.longoverdue_immediately_available', + 'Long-overdue items are usable on checkin instead of going "home" first', + 'coust', + 'description' + ) +), ( + 'circ.longoverdue_materials_processing_fee', + 'finance', 'currency', + oils_i18n_gettext( + 'circ.longoverdue_materials_processing_fee', + 'Long-Overdue Materials Processing Fee', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.longoverdue_materials_processing_fee', + 'Long-Overdue Materials Processing Fee', + 'coust', + 'description' + ) +), ( + 'circ.max_accept_return_of_longoverdue', + 'circ', 'interval', + oils_i18n_gettext( + 'circ.max_accept_return_of_longoverdue', + 'Long-Overdue Max Return Interval', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.max_accept_return_of_longoverdue', + 'Long-overdue check-in processing (voiding fees, re-instating ' || + 'overdues, etc.) will not take place for items that have been ' || + 'overdue for (or have last activity older than) this amount of time', + 'coust', + 'description' + ) +), ( + 'circ.restore_overdue_on_longoverdue_return', + 'circ', 'bool', + oils_i18n_gettext( + 'circ.restore_overdue_on_longoverdue_return', + 'Restore Overdues on Long-Overdue Item Return', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.restore_overdue_on_longoverdue_return', + 'Restore Overdues on Long-Overdue Item Return', + 'coust', + 'description' + ) +), ( + 'circ.void_longoverdue_on_checkin', + 'circ', 'bool', + oils_i18n_gettext( + 'circ.void_longoverdue_on_checkin', + 'Void Long-Overdue Item Billing When Returned', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.void_longoverdue_on_checkin', + 'Void Long-Overdue Item Billing When Returned', + 'coust', + 'description' + ) +), ( + 'circ.void_longoverdue_proc_fee_on_checkin', + 'circ', 'bool', + oils_i18n_gettext( + 'circ.void_longoverdue_proc_fee_on_checkin', + 'Void Processing Fee on Long-Overdue Item Return', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.void_longoverdue_proc_fee_on_checkin', + 'Void Processing Fee on Long-Overdue Item Return', + 'coust', + 'description' + ) +), ( + 'circ.void_overdue_on_longoverdue', + 'finance', 'bool', + oils_i18n_gettext( + 'circ.void_overdue_on_longoverdue', + 'Void Overdue Fines When Items are Marked Long-Overdue', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.void_overdue_on_longoverdue', + 'Void Overdue Fines When Items are Marked Long-Overdue', + 'coust', + 'description' + ) +), ( + 'circ.longoverdue.xact_open_on_zero', + 'finance', 'bool', + oils_i18n_gettext( + 'circ.longoverdue.xact_open_on_zero', + 'Leave transaction open when long overdue balance equals zero', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.longoverdue.xact_open_on_zero', + 'Leave transaction open when long-overdue balance equals zero. ' || + 'This leaves the lost copy on the patron record when it is paid', + 'coust', + 'description' + ) +), ( + 'circ.longoverdue.use_last_activity_date_on_return', + 'circ', 'bool', + oils_i18n_gettext( + 'circ.longoverdue.use_last_activity_date_on_return', + 'Long-Overdue Check-In Interval Uses Last Activity Date', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.longoverdue.use_last_activity_date_on_return', + 'Use the long-overdue last-activity date instead of the due_date to ' || + 'determine whether the item has been checked out too long to ' || + 'perform long-overdue check-in processing. If set, the system ' || + 'will first check the last payment time, followed by the last ' || + 'billing time, followed by the due date. See also ' || + 'circ.max_accept_return_of_longoverdue', + 'coust', + 'description' + ) +); + +-- mark long-overdue reactor + +INSERT INTO action_trigger.reactor (module, description) VALUES +( 'MarkItemLongOverdue', + oils_i18n_gettext( + 'MarkItemLongOverdue', + 'Marks a circulating item as long-overdue and applies configured ' || + 'penalties. Also creates events for the longoverdue.auto hook', + 'atreact', + 'description' + ) +); + +INSERT INTO action_trigger.validator (module, description) VALUES ( + 'PatronNotInCollections', + 'Event is valid if the linked patron is not in collections processing ' || + 'at the context org unit' +); + +INSERT INTO action_trigger.event_definition + (id, active, owner, name, hook, validator, reactor, delay, delay_field) +VALUES ( + 49, FALSE, 1, '6 Month Overdue Mark Long-Overdue', + 'checkout.due', 'PatronNotInCollections', + 'MarkItemLongOverdue', '6 months', 'due_date' +); + +INSERT INTO action_trigger.event_params (event_def, param, value) VALUES + (49, 'editor', '''1'''); + +-- new longoverdue and longervdue.auto hook. + +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ( + 'longoverdue', + 'circ', + 'Circulating Item marked long-overdue' +); + +INSERT INTO action_trigger.hook (key,core_type,description) VALUES ( + 'longoverdue.auto', + 'circ', + 'Circulating Item automatically marked long-overdue' +); + +-- sample longoverdue.auto notification reactor + +INSERT INTO action_trigger.event_definition + (id, active, owner, name, hook, validator, reactor, group_field, template) + VALUES ( + 50, FALSE, 1, '6 Month Long Overdue Notice', + 'longoverdue.auto', 'NOOP_True', 'SendEmail', 'usr', +$$ +[%- USE date -%] +[%- user = target.0.usr -%] +To: [%- params.recipient_email || user.email %] +From: [%- params.sender_email || default_sender %] +Subject: Overdue Items Marked Long Overdue +Auto-Submitted: auto-generated + +Dear [% user.family_name %], [% user.first_given_name %] +The following items are 6 months overdue and have been marked Long Overdue. + +[% FOR circ IN target %] + [%- copy_details = helpers.get_copy_bib_basics(circ.target_copy.id) -%] + Title: [% copy_details.title %], by [% copy_details.author %] + Call Number: [% circ.target_copy.call_number.label %] + Shelving Location: [% circ.target_copy.location.name %] + Barcode: [% circ.target_copy.barcode %] + Due: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %] + Item Cost: [% helpers.get_copy_price(circ.target_copy) %] + Total Owed For Transaction: [% circ.billable_transaction.summary.balance_owed %] + Library: [% circ.circ_lib.name %] + +[% END %] +$$); + +-- ENV for above + +INSERT INTO action_trigger.environment (event_def, path) VALUES + (50, 'target_copy.call_number'), + (50, 'usr'), + (50, 'billable_transaction.summary'), + (50, 'circ_lib.billing_address'), + (50, 'target_copy.location'); + + +-- Auto-cancelled, no target +INSERT INTO action_trigger.event_definition ( + id, active, owner, name, hook, + validator, reactor, delay, delay_field, + group_field, message_usr_path, message_library_path, message_title, + message_template +) VALUES ( + 51, FALSE, 1, 'Hold Cancelled (No Target) User Message', 'hold_request.cancel.expire_no_target', + 'HoldIsCancelled', 'NOOP_True', '30 minutes', 'cancel_time', + 'usr', 'usr', 'usr.home_ou', 'Hold Request Cancelled', +$$ +[%- USE date -%] +[%- user = target.0.usr -%] +The following holds were cancelled because no items were found to fulfill them. + +[% FOR hold IN target %] + Title: [% hold.bib_rec.bib_record.simple_record.title %] + Author: [% hold.bib_rec.bib_record.simple_record.author %] + Library: [% hold.pickup_lib.name %] + Request Date: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %] +[% END %] + +$$); + +INSERT INTO action_trigger.environment (event_def, path) VALUES + (51, 'usr'), + (51, 'pickup_lib'), + (51, 'bib_rec.bib_record.simple_record'); + + +-- Cancelled by staff +INSERT INTO action_trigger.event_definition ( + id, active, owner, name, hook, + validator, reactor, delay, delay_field, + group_field, message_usr_path, message_library_path, message_title, + message_template +) VALUES ( + 52, FALSE, 1, 'Hold Cancelled (Staff) User Message', 'hold_request.cancel.staff', + 'HoldIsCancelled', 'NOOP_True', '30 minutes', 'cancel_time', + 'usr', 'usr', 'usr.home_ou', 'Hold Request Cancelled', +$$ +[%- USE date -%] +[%- user = target.0.usr -%] +The following holds were cancelled by a staff member. + +[% FOR hold IN target %] + Title: [% hold.bib_rec.bib_record.simple_record.title %] + Author: [% hold.bib_rec.bib_record.simple_record.author %] + Library: [% hold.pickup_lib.name %] + Request Date: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %] + Cancellation Note: [% hold.cancel_note %] +[% END %] + +$$); + +INSERT INTO action_trigger.environment (event_def, path) VALUES + (52, 'usr'), + (52, 'pickup_lib'), + (52, 'bib_rec.bib_record.simple_record'); + + +-- Shelf expired +INSERT INTO action_trigger.event_definition ( + id, active, owner, name, hook, + validator, reactor, delay, delay_field, + group_field, message_usr_path, message_library_path, message_title, + message_template +) VALUES ( + 53, TRUE, 1, 'Hold Cancelled (Shelf-expired) User Message', 'hold_request.cancel.expire_holds_shelf', + 'HoldIsCancelled', 'NOOP_True', '30 minutes', 'cancel_time', + 'usr', 'usr', 'usr.home_ou', 'Hold Request Cancelled', +$$ +[%- USE date -%] +[%- user = target.0.usr -%] +The following holds were cancelled because they were never picked up. + +[% FOR hold IN target %] + Title: [% hold.bib_rec.bib_record.simple_record.title %] + Author: [% hold.bib_rec.bib_record.simple_record.author %] + Library: [% hold.pickup_lib.name %] + Request Date: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %] + Pickup By: [% date.format(helpers.format_date(hold.shelf_expire_time), '%Y-%m-%d') %] +[% END %] + +$$); + +INSERT INTO action_trigger.environment (event_def, path) VALUES + (53, 'usr'), + (53, 'pickup_lib'), + (53, 'bib_rec.bib_record.simple_record'); + +-- 30 Day Pre Expire A/T Notice - Notify customers before their account expires + +INSERT INTO action_trigger.hook (key, core_type, description, passive) + VALUES ('au.expired', 'au', 'A user account has expired', 't'); + +INSERT INTO action_trigger.event_definition ( + active, owner, name, hook, + validator, reactor, delay, delay_field, + max_delay, repeat_delay, template +) VALUES ( + 'f', '1', '30 Day Account Expiration Courtesy Notice','au.expired', + 'NOOP_True', 'SendEmail', '-30 days', 'expire_date', '-29 days', '30 days', +$$ +[%- USE date -%] +[%- user = target -%] +[%- lib = target.home_ou -%] +To: [%- params.recipient_email || user.email %] +From: [%- helpers.get_org_setting(target.home_ou.id, 'org.bounced_emails') || lib.email || params.sender_email || default_sender %] +Reply-To: [%- helpers.get_org_setting(target.home_ou.id, 'org.bounced_emails') || lib.email || params.sender_email || default_sender %] +Subject: Courtesy Notice - Library Account Expiration in 30 days +Auto-Submitted: auto-generated + +Dear [% user.first_given_name %] [% user.family_name %], + +Our records indicate your library account is due to expire in 30 days. Please visit your local library at your convenience to renew your account in order to avoid a disruption in access to library service. + +Sincerely, +[% lib.name %] + +Contact your library for more information: + +[% lib.name %] +[%- SET addr = lib.mailing_address -%] +[%- IF !addr -%] [%- SET addr = lib.billing_address -%] [%- END %] +[% addr.street1 %] [% addr.street2 %] +[% addr.city %], [% addr.state %] +[% addr.post_code %] +[% lib.phone %] + +$$); + +INSERT INTO action_trigger.environment (event_def, path) VALUES + (currval('action_trigger.event_definition_id_seq'), 'home_ou.mailing_address'), + (currval('action_trigger.event_definition_id_seq'), 'home_ou.billing_address'); + +--Start new patron welcome email notice/action ----------- +--create hook for actor.usr.create_date +INSERT INTO action_trigger.hook (key, core_type, description, passive) + VALUES ('au.created', 'au', 'A user was created', 't'); + +--SQL to create event definition for new account creation notice +--Inactive, owned by top of org tree by default. Modify to suit needs. + +INSERT INTO action_trigger.event_definition ( + active, owner, name, hook, + validator, reactor, delay, delay_field, + max_delay, template +) VALUES ( + 'f', '1', 'New User Created Welcome Notice', 'au.created', + 'NOOP_True', 'SendEmail', '10 seconds', 'create_date', + '1 day', +$$ +[%- USE date -%] +[%- user = target -%] +[%- lib = target.home_ou -%] +To: [%- params.recipient_email || user.email %] +From: [%- helpers.get_org_setting(target.home_ou.id, 'org.bounced_emails') || lib.email || params.sender_email || default_sender %] +Reply-To: [%- helpers.get_org_setting(target.home_ou.id, 'org.bounced_emails') || lib.email || params.sender_email || default_sender %] +Subject: New Library Account Sign-up - Welcome! +Auto-Submitted: auto-generated + +Dear [% user.first_given_name %] [% user.family_name %], + +Thank you for signing up for an account with the [% lib.name %] on [% user.create_date.substr(0, 10) %]. + +This email is your confirmation that your account is set up and ready as well as testing to see that we have your correct email address. + +If you did not sign up for an account at the library and have received this email in error, please reply and let us know. + +You can access your account online at http://catalog/eg/opac/login. From that site you can search the catalog, request materials, renew materials, leave comments, leave suggestions for titles you would like the library to purchase and update your account information. + +Sincerely, +[% lib.name %] + +Contact your library for more information: + +[% lib.name %] +[%- SET addr = lib.mailing_address -%] +[%- IF !addr -%] [%- SET addr = lib.billing_address -%] [%- END %] +[% addr.street1 %] [% addr.street2 %] +[% addr.city %], [% addr.state %] +[% addr.post_code %] +[% lib.phone %] +[% lib.email %] + +$$); + +--insert environment values +INSERT INTO action_trigger.environment (event_def, path) VALUES + (CURRVAL('action_trigger.event_definition_id_seq'), 'home_ou.mailing_address'), + (CURRVAL('action_trigger.event_definition_id_seq'), 'home_ou.billing_address'); +-- End new patron welcome message notice ----------- + +-- OUS's for patron self-reg +INSERT INTO config.org_unit_setting_type + (name, grp, datatype, label, description) +VALUES ( + 'opac.allow_pending_user', + 'opac', + 'bool', + oils_i18n_gettext( + 'opac.allow_pending_user', + 'Allow Patron Self-Registration', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'opac.allow_pending_user', + 'Allow patrons to self-register, creating pending user accounts', + 'coust', + 'description' + ) +), ( + 'opac.pending_user_expire_interval', + 'opac', + 'interval', + oils_i18n_gettext( + 'opac.pending_user_expire_interval', + 'Patron Self-Reg. Expire Interval', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'opac.pending_user_expire_interval', + 'If set, this is the amount of time a pending user account will ' || + 'be allowed to sit in the database. After this time, the pending ' || + 'user information will be purged', + 'coust', + 'description' + ) +), ( + 'ui.patron.edit.aua.county.show', + 'gui', + 'bool', + oils_i18n_gettext( + 'ui.patron.edit.aua.county.require', + 'Show county field on patron registration', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'ui.patron.edit.aua.county.require', + 'The county field will be shown on the patron registration screen', + 'coust', + 'description' + ) +); + +-- vandelay item import defaults +INSERT INTO config.org_unit_setting_type + (grp, name, label, description, datatype, fm_class) +VALUES ( + 'vandelay', + 'vandelay.item.barcode.auto', + oils_i18n_gettext( + 'vandelay.item.barcode.auto', + 'Vandelay Generate Default Barcodes', + 'coust', 'label'), + oils_i18n_gettext( + 'vandelay.item.barcode.auto', + 'Auto-generate deault item barcodes when no item barcode is present', + 'coust', 'label'), + 'bool', + NULL +), ( + 'vandelay', + 'vandelay.item.barcode.prefix', + oils_i18n_gettext( + 'vandelay.item.barcode.prefix', + 'Vandelay Default Barcode Prefix', + 'coust', 'label'), + oils_i18n_gettext( + 'vandelay.item.barcode.prefix', + 'Apply this prefix to any auto-generated item barcodes', + 'coust', 'label'), + 'string', + NULL +), ( + 'vandelay', + 'vandelay.item.call_number.auto', + oils_i18n_gettext( + 'vandelay.item.call_number.auto', + 'Vandelay Generate Default Call Numbers', + 'coust', 'label'), + oils_i18n_gettext( + 'vandelay.item.call_number.auto', + 'Auto-generate default item call numbers when no item call number is present', + 'coust', 'label'), + 'bool', + NULL +), ( + 'vandelay', + 'vandelay.item.call_number.prefix', + oils_i18n_gettext( + 'vandelay.item.call_number.prefix', + 'Vandelay Default Call Number Prefix', + 'coust', 'label'), + oils_i18n_gettext( + 'vandelay.item.call_number.prefix', + 'Apply this prefix to any auto-generated item call numbers', + 'coust', 'label'), + 'string', + NULL +), ( + 'vandelay', + 'vandelay.item.copy_location.default', + oils_i18n_gettext( + 'vandelay.item.copy_location.default', + 'Vandelay Default Copy Location', + 'coust', 'label'), + oils_i18n_gettext( + 'vandelay.item.copy_location.default', + 'Default copy location value for imported items', + 'coust', 'label'), + 'link', + 'acpl' +), ( + 'vandelay', + 'vandelay.item.circ_modifier.default', + oils_i18n_gettext( + 'vandelay.item.circ_modifier.default', + 'Vandelay Default Circulation Modifier', + 'coust', 'label'), + oils_i18n_gettext( + 'vandelay.item.circ_modifier.default', + 'Default circulation modifier value for imported items', + 'coust', 'label'), + 'link', + 'ccm' +); + + +INSERT into config.org_unit_setting_type + (name, grp, label, description, datatype) +VALUES ( + 'opac.holds.org_unit_not_pickup_lib', + 'opac', + oils_i18n_gettext('opac.holds.org_unit_not_pickup_lib', + 'OPAC: Org Unit is not a hold pickup library', + 'coust', 'label'), + oils_i18n_gettext('opac.holds.org_unit_not_pickup_lib', + 'If set, this org unit will not be offered to the patron as an '|| + 'option for a hold pickup location. This setting has no affect '|| + 'on searching or hold targeting', + 'coust', 'description'), + 'bool' +); + + +INSERT INTO config.standing_penalty + (id, name, label, block_list, staff_alert) +VALUES ( + 35, + 'PATRON_EXCEEDS_LONGOVERDUE_COUNT', + oils_i18n_gettext( + 35, + 'Patron Exceeds Max Long-Overdue Threshold', + 'csp', + 'label' + ), + 'CIRC|FULFILL|HOLD|CAPTURE|RENEW', + TRUE +); + + +INSERT INTO config.org_unit_setting_type + (name, grp, datatype, label, description) +VALUES ( + 'opac.self_register.timeout', + 'opac', + 'integer', + oils_i18n_gettext( + 'opac.self_register.timeout', + 'Patron Self-Reg. Display Timeout', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'opac.self_register.timeout', + 'Number of seconds to wait before reloading the patron self-'|| + 'registration interface to clear sensitive data', + 'coust', + 'description' + ) +); + + +INSERT INTO config.org_unit_setting_type + (name, grp, datatype, label, description) +VALUES ( + 'ui.circ.items_out.longoverdue', 'gui', 'integer', + oils_i18n_gettext( + 'ui.circ.items_out.longoverdue', + 'Items Out Long-Overdue display setting', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'ui.circ.items_out.longoverdue', +'Value is a numeric code, describing which list the circulation '|| +'should appear while checked out and whether the circulation should '|| +'continue to appear in the bottom list, when checked in with '|| +'oustanding fines. '|| +'1 = top list, bottom list. 2 = bottom list, bottom list. ' || +'5 = top list, do not display. 6 = bottom list, do not display.', + 'coust', + 'description' + ) +), ( + 'ui.circ.items_out.lost', 'gui', 'integer', + oils_i18n_gettext( + 'ui.circ.items_out.lost', + 'Items Out Lost display setting', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'ui.circ.items_out.lost', +'Value is a numeric code, describing which list the circulation '|| +'should appear while checked out and whether the circulation should '|| +'continue to appear in the bottom list, when checked in with '|| +'oustanding fines. '|| +'1 = top list, bottom list. 2 = bottom list, bottom list. ' || +'5 = top list, do not display. 6 = bottom list, do not display.', + 'coust', + 'description' + ) +), ( + 'ui.circ.items_out.claimsreturned', 'gui', 'integer', + oils_i18n_gettext( + 'ui.circ.items_out.claimsreturned', + 'Items Out Claims Returned display setting', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'ui.circ.items_out.claimsreturned', +'Value is a numeric code, describing which list the circulation '|| +'should appear while checked out and whether the circulation should '|| +'continue to appear in the bottom list, when checked in with '|| +'oustanding fines. '|| +'1 = top list, bottom list. 2 = bottom list, bottom list. ' || +'5 = top list, do not display. 6 = bottom list, do not display.', + 'coust', + 'description' + ) +); + +-- YAOUS patron credit disable +INSERT INTO config.org_unit_setting_type + (grp, name, datatype, label, description) +VALUES ( + 'finance', + 'circ.disable_patron_credit', + 'bool', + oils_i18n_gettext( + 'circ.disable_patron_credit', + 'Disable Patron Credit', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'circ.disable_patron_credit', + 'Do not allow patrons to accrue credit or pay fines/fees with accrued credit', + 'coust', + 'description' + ) +); + +INSERT INTO config.floating_group(name) VALUES ('Everywhere'); +INSERT INTO config.floating_group_member(floating_group, org_unit) VALUES (1, 1); + +INSERT INTO config.global_flag (name, label, value, enabled) VALUES ( + 'opac.metarecord.holds.format_attr', + oils_i18n_gettext( + 'opac.metarecord.holds.format_attr', + 'OPAC Metarecord Hold Formats Attribute', + 'cgf', + 'label' + ), + 'mr_hold_format', + TRUE +); + +-- until we have a custom attribute for the selector, +-- default to the icon_format attribute +INSERT INTO config.global_flag (name, label, value, enabled) VALUES ( + 'opac.format_selector.attr', + oils_i18n_gettext( + 'opac.format_selector.attr', + 'OPAC Format Selector Attribute', + 'cgf', + 'label' + ), + 'search_format', + TRUE +); + +INSERT INTO config.global_flag (name, value, label, enabled) + VALUES ( + 'search.max_facets_per_field', + '1000', + oils_i18n_gettext( + 'search.max_facets_per_field', + 'Search: maximum number of facet values to retrieve for each facet field', + 'cgf', + 'label' + ), + TRUE + ); + +INSERT INTO config.org_unit_setting_type + (name, grp, label, description, datatype) + VALUES + ('circ.void_lost_on_claimsreturned', + 'circ', + oils_i18n_gettext('circ.void_lost_on_claimsreturned', + 'Void lost item billing when claims returned', + 'coust', 'label'), + oils_i18n_gettext('circ.void_lost_on_claimsreturned', + 'Void lost item billing when claims returned', + 'coust', 'description'), + 'bool'), + ('circ.void_lost_proc_fee_on_claimsreturned', + 'circ', + oils_i18n_gettext('circ.void_lost_proc_fee_on_claimsreturned', + 'Void lost item processing fee when claims returned', + 'coust', 'label'), + oils_i18n_gettext('circ.void_lost_proc_fee_on_claimsreturned', + 'Void lost item processing fee when claims returned', + 'coust', 'description'), + 'bool'); + +INSERT INTO config.org_unit_setting_type + (name, grp, label, description, datatype) + VALUES + ('circ.void_longoverdue_on_claimsreturned', + 'circ', + oils_i18n_gettext('circ.void_longoverdue_on_claimsreturned', + 'Void longoverdue item billing when claims returned', + 'coust', 'label'), + oils_i18n_gettext('circ.void_longoverdue_on_claimsreturned', + 'Void long overdue item billing when claims returned', + 'coust', 'description'), + 'bool'), + ('circ.void_longoverdue_proc_fee_on_claimsreturned', + 'circ', + oils_i18n_gettext('circ.void_longoverdue_proc_fee_on_claimsreturned', + 'Void longoverdue item processing fee when claims returned', + 'coust', 'label'), + oils_i18n_gettext('circ.void_longoverdue_proc_fee_on_claimsreturned', + 'Void long overdue item processing fee when claims returned', + 'coust', 'description'), + 'bool'); + +INSERT INTO config.org_unit_setting_type + (name, grp, label, description, datatype) + VALUES + ('org.restrict_opt_to_depth', + 'sec', + oils_i18n_gettext('org.restrict_opt_to_depth', + 'Restrict patron opt-in to home library and related orgs at specified depth', + 'coust', 'label'), + oils_i18n_gettext('org.restrict_opt_to_depth', + 'Patrons at this library can only be opted-in at org units which are within the '|| + 'library''s section of the org tree, at or below the depth specified by this setting. '|| + 'They cannot be opted in at any other libraries.', + 'coust', 'description'), + 'integer'); + +INSERT INTO unapi.bre_output_layout + (name, transform, mime_type, holdings_element, feed_top, title_element, description_element, creator_element, update_ts_element) + VALUES + ('holdings_xml', NULL, 'application/xml', NULL, 'hxml', NULL, NULL, NULL, NULL), + ('marcxml', 'marcxml', 'application/marc+xml', 'record', 'collection', NULL, NULL, NULL, NULL), + ('mods32', 'mods32', 'application/mods+xml', 'mods', 'modsCollection', NULL, NULL, NULL, NULL) +; + +COMMIT; diff --git a/Open-ILS/src/sql/schema/deploy/data.marc21expand880.sql b/Open-ILS/src/sql/schema/deploy/data.marc21expand880.sql new file mode 100644 index 0000000000..023af39f41 --- /dev/null +++ b/Open-ILS/src/sql/schema/deploy/data.marc21expand880.sql @@ -0,0 +1,66 @@ +BEGIN; + +UPDATE config.xml_transform SET xslt = $$ + + + + + + + + + + + + + + + + + + + + + + + + + + + +$$ +where name = 'marc21expand880'; + +COMMIT; diff --git a/Open-ILS/src/sql/schema/deploy/data.tag-tables.sql b/Open-ILS/src/sql/schema/deploy/data.tag-tables.sql new file mode 100644 index 0000000000..7185ab4125 --- /dev/null +++ b/Open-ILS/src/sql/schema/deploy/data.tag-tables.sql @@ -0,0 +1,21169 @@ +-- Deploy evergreen:tag-tables-data-2.10 to pg + +BEGIN; + +INSERT INTO config.marc_format(id, code, name) VALUES (1, 'marc21', 'MARC 21'); +SELECT SETVAL('config.marc_format_id_seq', 100); +ALTER SEQUENCE config.marc_field_id_seq RESTART WITH 1; +ALTER SEQUENCE config.marc_subfield_id_seq RESTART WITH 1; + +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '001', $$Control Number$$, $$Control number assigned by the organization creating, using, or distributing the record. The MARC code for the organization is contained in field 003 (Control Number Identifier).$$, +TRUE, FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '003', $$Control Number Identifier$$, $$MARC code for the organization whose control number is contained in field 001 (Control Number).$$, +TRUE, FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '005', $$Date and Time of Latest Transaction$$, $$Sixteen characters that indicate the date and time of the latest record transaction and serve as a version identifier for the record. They are recorded according to (ISO 8601). The date requires 8 numeric characters in the pattern . The time requires 8 numeric characters in the pattern expressed in terms of the 24-hour (00-23) clock.$$, +TRUE, FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '006', $$Fixed-Length Data Elements-Additional Material Characteristics$$, $$Eighteen character positions (00-17) that provide for coding information about special aspects of the item being cataloged that cannot be coded in field 008 (Fixed-Length Data Elements). It is used in cases when an item has multiple characteristics (e.g., printed material with an accompanying cassette or a map that is issued serially) and to record the coded serial aspects of nontextual continuing resources.$$, +TRUE, TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '007', $$Physical Description Fixed Field-General Information$$, $$Special information about the physical characteristics in a coded form. The information may represent the whole item or parts of an item such as accompanying material.$$, +TRUE, TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '008', $$Fixed-Length Data Elements-General Information$$, $$Forty character positions (00-39) that provide coded information about the record as a whole and about special bibliographic aspects of the item being cataloged. These coded data elements are potentially useful for retrieval and data management purposes.$$, +TRUE, FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '010', $$Library of Congress Control Number$$, $$Unique number assigned to a MARC record by the Library of Congress. Valid MARC prefixes for LC control numbers are published in .$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_010_ind_1', 'MARC 21 biblio field 010 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_010_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_010_ind_2', 'MARC 21 biblio field 010 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_010_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '010', 'a', $$LC control number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '010', 'b', $$NUCMC control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '010', 'z', $$Canceled/invalid LC control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '010', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '013', $$Patent Control Information$$, $$Information used to control patent documents. In addition to information about patents, this field may contain information relating to inventors' certificates, utility certificates, utility models, patents or certificates of addition, inventors' certificates of addition, utility certificates of addition, and published applications for any of these.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_013_ind_1', 'MARC 21 biblio field 013 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_013_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_013_ind_2', 'MARC 21 biblio field 013 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_013_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '013', 'a', $$Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '013', 'b', $$Country$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '013', 'c', $$Type of number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '013', 'd', $$Date$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '013', 'e', $$Status$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '013', 'f', $$Party to document$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '013', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '013', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '015', $$National Bibliography Number$$, $$Bibliography entry number(s) for cataloging information that is derived from a national bibliography.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_015_ind_1', 'MARC 21 biblio field 015 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_015_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_015_ind_2', 'MARC 21 biblio field 015 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_015_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '015', 'a', $$National bibliography number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '015', 'z', $$Canceled/invalid national bibliography number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '015', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '015', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '015', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '016', $$National Bibliographic Agency Control Number$$, $$Unique numbers that have been assigned to a record by a national bibliographic agency other than the Library of Congress. The control number may also appear in field 001 (Control Number) in records distributed by the same national agency. This number is a record control number used in a national bibliographic agency system, rather than a number used for an entry in a national bibliographic, field 015 (National Bibliography Number).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_016_ind_1', 'MARC 21 biblio field 016 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_016_ind_1', '#', $$Library and Archives Canada$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_016_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_016_ind_2', 'MARC 21 biblio field 016 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_016_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '016', 'a', $$Record control number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '016', 'z', $$Canceled/invalid control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '016', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '016', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '017', $$Copyright or Legal Deposit Number$$, $$Copyright registration or legal deposit number for an item that was acquired by copyright or legal deposit.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_017_ind_1', 'MARC 21 biblio field 017 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_017_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_017_ind_2', 'MARC 21 biblio field 017 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_017_ind_2', '#', $$Copyright or legal deposit number$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_017_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '017', 'a', $$Copyright or legal deposit number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '017', 'b', $$Assigning agency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '017', 'd', $$Date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '017', 'i', $$Display text$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '017', 'z', $$Canceled/invalid copyright or legal deposit number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '017', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '017', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '017', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '018', $$Copyright Article-Fee Code$$, $$Unique identification code for component parts appearing in monographs or continuing resources.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_018_ind_1', 'MARC 21 biblio field 018 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_018_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_018_ind_2', 'MARC 21 biblio field 018 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_018_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '018', 'a', $$Copyright article-fee code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '018', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '018', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '020', $$International Standard Book Number$$, $$International Standard Book Number (ISBN) assigned to a monographic publication by designated agencies in each country participating in the program. The field may include terms of availability and canceled or invalid ISBNs, such as ISBNs with invalid check digits or that are not applicable to the item being cataloged. It may be repeated for multiple numbers associated with the item (e.g., ISBNs for the hard bound and paperback manifestations; ISBNs for a set as a whole and for the individual parts in the set).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_020_ind_1', 'MARC 21 biblio field 020 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_020_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_020_ind_2', 'MARC 21 biblio field 020 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_020_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '020', 'a', $$International Standard Book Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '020', 'c', $$Terms of availability$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '020', 'z', $$Canceled/invalid ISBN$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '020', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '020', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '022', $$International Standard Serial Number$$, $$International Standard Serial Number (ISSN), a unique identification number assigned to a continuing resource, and/or any incorrect or canceled ISSN.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_022_ind_1', 'MARC 21 biblio field 022 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_022_ind_1', '#', $$No level specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_022_ind_1', '0', $$Continuing resource of international interest$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_022_ind_1', '1', $$Continuing resource not of international interest$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_022_ind_2', 'MARC 21 biblio field 022 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_022_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '022', 'a', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '022', 'l', $$ISSN-L$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '022', 'm', $$Canceled ISSN-L$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '022', 'y', $$Incorrect ISSN$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '022', 'z', $$Canceled ISSN$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '022', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '022', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '022', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '024', $$Other Standard Identifier$$, $$Standard number or code published on an item which cannot be accommodated in another field (e.g., field 020 (International Standard Book Number), 022 (International Standard Serial Number) , and 027 (Standard Technical Report Number)). The type of standard number or code is identified in the first indicator position or in subfield $2 (Source of number or code).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_024_ind_1', 'MARC 21 biblio field 024 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_024_ind_1', '0', $$International Standard Recording Code$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_024_ind_1', '1', $$Universal Product Code$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_024_ind_1', '2', $$International Standard Music Number$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_024_ind_1', '3', $$International Article Number$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_024_ind_1', '4', $$Serial Item and Contribution Identifier$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_024_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_024_ind_1', '8', $$Unspecified type of standard number or code$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_024_ind_2', 'MARC 21 biblio field 024 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_024_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_024_ind_2', '0', $$No difference$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_024_ind_2', '1', $$Difference$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '024', 'a', $$Standard number or code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '024', 'c', $$Terms of availability$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '024', 'd', $$Additional codes following the standard number or code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '024', 'z', $$Canceled/invalid standard number or code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '024', '2', $$Source of number or code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '024', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '024', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '025', $$Overseas Acquisition Number$$, $$Number assigned by the Library of Congress to works acquired through one of its overseas acquisition programs.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_025_ind_1', 'MARC 21 biblio field 025 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_025_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_025_ind_2', 'MARC 21 biblio field 025 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_025_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '025', 'a', $$Overseas acquisition number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '025', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '026', $$Fingerprint Identifier$$, $$Used to assist in the identification of antiquarian books by recording information comprising groups of characters taken from specified positions on specified pages of the book, in accordance with the principles laid down in various published guidelines.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_026_ind_1', 'MARC 21 biblio field 026 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_026_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_026_ind_2', 'MARC 21 biblio field 026 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_026_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '026', 'a', $$First and second groups of characters$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '026', 'b', $$Third and fourth groups of characters$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '026', 'c', $$Date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '026', 'd', $$Number of volume or part$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '026', 'e', $$Unparsed fingerprint$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '026', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '026', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '026', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '026', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '027', $$Standard Technical Report Number$$, $$International Standard Technical Report number (ISRN) or a Standard Technical Report Number (STRN)assigned to a technical report. Assignment of STRNs is coordinated by the National Technical Information Service (NTIS), which also maintains an assignment registry.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_027_ind_1', 'MARC 21 biblio field 027 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_027_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_027_ind_2', 'MARC 21 biblio field 027 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_027_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '027', 'a', $$Standard technical report number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '027', 'z', $$Canceled/invalid number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '027', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '027', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '028', $$Publisher Number$$, $$Formatted number used for sound recordings, printed music, and videorecordings. Publisher's numbers that are given in an unformatted form are recorded in field 500 (General Note). A print constant identifying the kind of publisher number may be generated based on the value in the first indicator position.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_028_ind_1', 'MARC 21 biblio field 028 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_028_ind_1', '0', $$Issue number$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_028_ind_1', '1', $$Matrix number$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_028_ind_1', '2', $$Plate number$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_028_ind_1', '3', $$Other music number$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_028_ind_1', '4', $$Videorecording number$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_028_ind_1', '5', $$Other publisher number$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_028_ind_2', 'MARC 21 biblio field 028 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_028_ind_2', '0', $$No note, no added entry$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_028_ind_2', '1', $$Note, added entry$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_028_ind_2', '2', $$Note, no added entry$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_028_ind_2', '3', $$No note, added entry$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '028', 'a', $$Publisher number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '028', 'b', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '028', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '028', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '030', $$CODEN Designation$$, $$CODEN designation for a bibliographic title. The CODEN is assigned by the International CODEN Section of Chemical Abstracts Service.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_030_ind_1', 'MARC 21 biblio field 030 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_030_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_030_ind_2', 'MARC 21 biblio field 030 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_030_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '030', 'a', $$CODEN$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '030', 'z', $$Canceled/invalid CODEN$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '030', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '030', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', $$Musical Incipits Information$$, $$Coded data representing the musical incipit for music using established notation schemes that employ ordinary ASCII symbols. Primarily used to identify music manuscripts, but can be applied to any material containing music.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_031_ind_1', 'MARC 21 biblio field 031 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_031_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_031_ind_2', 'MARC 21 biblio field 031 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_031_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 'a', $$Number of work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 'b', $$Number of movement$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 'c', $$Number of excerpt$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 'd', $$Caption or heading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 'e', $$Role$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 'g', $$Clef$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 'm', $$Voice/instrument$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 'n', $$Key signature$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 'o', $$Time signature$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 'p', $$Musical notation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 'q', $$General note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 'r', $$Key or mode$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 's', $$Coded validity note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 't', $$Text incipit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 'y', $$Link text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', '2', $$System code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '031', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '032', $$Postal Registration Number$$, $$Number assigned to a publication for which the specified postal service permits the use of a special mailing class privilege.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_032_ind_1', 'MARC 21 biblio field 032 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_032_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_032_ind_2', 'MARC 21 biblio field 032 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_032_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '032', 'a', $$Postal registration number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '032', 'b', $$Source agency assigning number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '032', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '032', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '033', $$Date/Time and Place of an Event$$, $$Formatted date/time and/or coded place of creation, capture, recording, filming, execution, or broadcast associated with an event or the finding of a naturally occurring object. This information in textual form is contained in field 518 (Date/Time and Place of an Event Note).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_033_ind_1', 'MARC 21 biblio field 033 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_033_ind_1', '#', $$No date information$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_033_ind_1', '0', $$Single date$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_033_ind_1', '1', $$Multiple single dates$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_033_ind_1', '2', $$Range of dates$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_033_ind_2', 'MARC 21 biblio field 033 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_033_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_033_ind_2', '0', $$Capture$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_033_ind_2', '1', $$Broadcast$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_033_ind_2', '2', $$Finding$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '033', 'a', $$Formatted date/time$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '033', 'b', $$Geographic classification area code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '033', 'c', $$Geographic classification subarea code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '033', 'p', $$Place of event$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '033', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '033', '2', $$Source of term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '033', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '033', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '033', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', $$Coded Cartographic Mathematical Data$$, $$Coded form of the mathematical data contained in field 255 (Mathematical Data Area) of the bibliographic record.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_034_ind_1', 'MARC 21 biblio field 034 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_034_ind_1', '0', $$Scale indeterminable/No scale recorded$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_034_ind_1', '1', $$Single scale$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_034_ind_1', '3', $$Range of scales$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_034_ind_2', 'MARC 21 biblio field 034 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_034_ind_2', '#', $$Not applicable$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_034_ind_2', '0', $$Outer ring$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_034_ind_2', '1', $$Exclusion ring$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'a', $$Category of scale$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'b', $$Constant ratio linear horizontal scale$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'c', $$Constant ratio linear vertical scale$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'd', $$Coordinates$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'e', $$Coordinates$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'f', $$Coordinates$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'g', $$Coordinates$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'h', $$Angular scale$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'j', $$Declination$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'k', $$Declination$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'm', $$Right ascension$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'n', $$Right ascension$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'p', $$Equinox$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'r', $$Distance from earth$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 's', $$G-ring latitude$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 't', $$G-ring longitude$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'x', $$Beginning date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'y', $$Ending date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', 'z', $$Name of extraterrestrial body$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '034', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '035', $$System Control Number$$, $$Control number of a system other than the one whose control number is contained in field 001 (Control Number), field 010 (Library of Congress Control Number) or field 016 (National Bibliographic Agency Control Number).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_035_ind_1', 'MARC 21 biblio field 035 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_035_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_035_ind_2', 'MARC 21 biblio field 035 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_035_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '035', 'a', $$System control number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '035', 'z', $$Canceled/invalid control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '035', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '035', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '036', $$Original Study Number for Computer Data Files$$, $$Original study number assigned by the producer of the computer file. Introductory phrase may be generated based on the field tag.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_036_ind_1', 'MARC 21 biblio field 036 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_036_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_036_ind_2', 'MARC 21 biblio field 036 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_036_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '036', 'a', $$Original study number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '036', 'b', $$Source agency assigning number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '036', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '036', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '037', $$Source of Acquisition$$, $$Source of acquisition information for the item or its reproduction.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_037_ind_1', 'MARC 21 biblio field 037 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_037_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_037_ind_2', 'MARC 21 biblio field 037 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_037_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '037', 'a', $$Stock number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '037', 'b', $$Source of stock number/acquisition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '037', 'c', $$Terms of availability$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '037', 'f', $$Form of issue$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '037', 'g', $$Additional format characteristics$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '037', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '037', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '037', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '038', $$Record Content Licensor$$, $$MARC code of the organization that licenses the intellectual property rights to the data contained in the record, such as with contractual arrangements. See Appendix I: for a listing of sources used in MARC 21 records.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_038_ind_1', 'MARC 21 biblio field 038 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_038_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_038_ind_2', 'MARC 21 biblio field 038 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_038_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '038', 'a', $$Record content licensor$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '038', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '038', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '040', $$Cataloging Source$$, $$MARC code for or the name of the organization(s) that created the original bibliographic record, assigned MARC content designation and transcribed the record into machine-readable form, or modified (except for the addition of holdings symbols) an existing MARC record. These data and the code in 008/39 (Cataloging source) specify the parties responsible for the bibliographic record. See: for a listing of sources used in MARC 21 records.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_040_ind_1', 'MARC 21 biblio field 040 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_040_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_040_ind_2', 'MARC 21 biblio field 040 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_040_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '040', 'a', $$Original cataloging agency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '040', 'b', $$Language of cataloging$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '040', 'c', $$Transcribing agency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '040', 'd', $$Modifying agency$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '040', 'e', $$Description conventions$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '040', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '040', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '041', $$Language Code$$, $$Codes for languages associated with an item when the language code in field 008/35-37 of the record is insufficient to convey full information. Includes records for multilingual items, items that involve translation, and items where the medium of communication is a sign language. Sources of the codes are: or other code lists such as ISO 639-1 ( ).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_041_ind_1', 'MARC 21 biblio field 041 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_041_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_041_ind_1', '0', $$Item not a translation/does not include a translation$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_041_ind_1', '1', $$Item is or includes a translation$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_041_ind_2', 'MARC 21 biblio field 041 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_041_ind_2', '#', $$MARC language code$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_041_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '041', 'a', $$Language code of text/sound track or separate title$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '041', 'b', $$Language code of summary or abstract$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '041', 'd', $$Language code of sung or spoken text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '041', 'e', $$Language code of librettos$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '041', 'f', $$Language code of table of contents$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '041', 'g', $$Language code of accompanying material other than librettos$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '041', 'h', $$Language code of original and/or intermediate translations of text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '041', 'j', $$Language code of subtitles or captions$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '041', '2', $$Source of code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '041', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '041', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '042', $$Authentication Code$$, $$One or more authentication codes indicating that the record, existing in a national database, has been reviewed in a specific way. Used for codes associated with specifically designated authentication agencies. Code from: .$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_042_ind_1', 'MARC 21 biblio field 042 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_042_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_042_ind_2', 'MARC 21 biblio field 042 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_042_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '042', 'a', $$Authentication code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '043', $$Geographic Area Code$$, $$Geographic area codes associated with an item. Code from: . The source of a local code in subfield $b is indicated in subfield $2. The source of codes in subfield $c is or .$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_043_ind_1', 'MARC 21 biblio field 043 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_043_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_043_ind_2', 'MARC 21 biblio field 043 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_043_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '043', 'a', $$Geographic area code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '043', 'b', $$Local GAC code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '043', 'c', $$ISO code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '043', '2', $$Source of local code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '043', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '043', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '044', $$Country of Publishing/Producing Entity Code$$, $$Two- or three-character code for the country of the publishing or producing entity when field 008/15-17 (Place of publication, production, or execution) is insufficient to convey full information for an item published or produced in more than one country. Code from: . May be used to include country and subentity codes from or .$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_044_ind_1', 'MARC 21 biblio field 044 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_044_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_044_ind_2', 'MARC 21 biblio field 044 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_044_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '044', 'a', $$MARC country code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '044', 'b', $$Local subentity code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '044', 'c', $$ISO country code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '044', '2', $$Source of local subentity code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '044', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '044', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '045', $$Time Period of Content$$, $$Time period code (subfield $a) and/or a formatted time period (subfield $b and/or $c) associated with an item.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_045_ind_1', 'MARC 21 biblio field 045 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_045_ind_1', '#', $$Subfield $b or $c not present$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_045_ind_1', '0', $$Single date/time$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_045_ind_1', '1', $$Multiple single dates/times$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_045_ind_1', '2', $$Range of dates/times$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_045_ind_2', 'MARC 21 biblio field 045 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_045_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '045', 'a', $$Time period code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '045', 'b', $$Formatted 9999 B.C. through C.E. time period$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '045', 'c', $$Formatted pre-9999 B.C. time period$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '045', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '045', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '046', $$Special Coded Dates$$, $$Date of item information that cannot be recorded in 008/06-14 (Type of date/Publication status, Date 1, Date 2) because such information involves one or more Before Common Era (B.C.) dates, incorrect dates, dates when resources have been modified or created, and date spans when resources are valid. When field 046 is used for B.C. dates, 008/06 is set to code b (No date given; B.C. date involved) and field 008/07-10 and 008/11-14 contain blanks (####). When field 046 is used for incorrect dates, field 008/06 is coded for the type of corrected data and field 008/07-10 and 008/11-14 contain correct dates.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_046_ind_1', 'MARC 21 biblio field 046 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_046_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_046_ind_2', 'MARC 21 biblio field 046 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_046_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '046', 'a', $$Type of date code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '046', 'b', $$Date 1, B.C. date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '046', 'c', $$Date 1, C.E. date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '046', 'd', $$Date 2, B.C. date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '046', 'e', $$Date 2, C.E. date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '046', 'j', $$Date resource modified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '046', 'k', $$Beginning or single date created$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '046', 'l', $$Ending date created$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '046', 'm', $$Beginning of date valid$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '046', 'n', $$End of date valid$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '046', '2', $$Source of date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '046', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '046', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '047', $$Form of Musical Composition Code$$, $$Codes that indicate the form of musical composition of printed and manuscript music and musical sound recordings when character positions 18 and 19 (Form of composition) of field 008 (Fixed-Length Data Elements) for music contains the code for multiple forms or for non-MARC codes. MARC codes are listed under field 008 Music, /18-19 (Form of composition).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_047_ind_1', 'MARC 21 biblio field 047 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_047_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_047_ind_2', 'MARC 21 biblio field 047 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_047_ind_2', '#', $$MARC musical composition code$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_047_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '047', 'a', $$Form of musical composition code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '047', '2', $$Source of code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '047', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '048', $$Number of Musical Instruments or Voices Code$$, $$Two-character code that indicates the medium of performance for a musical composition. Also contains the of parts, indicated by a two-digit number immediately following the code for the musical instruments or voices (e.g., va02, a two-part composition for Voices - Soprano). The number of parts may be omitted if not specified.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_048_ind_1', 'MARC 21 biblio field 048 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_048_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_048_ind_2', 'MARC 21 biblio field 048 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_048_ind_2', '#', $$MARC code$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_048_ind_2', '7', $$Source specified in subfield ‡2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '048', 'a', $$Performer or ensemble$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '048', 'b', $$Soloist$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '048', '2', $$Source of code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '048', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '050', $$Library of Congress Call Number$$, $$Classification or call number that is taken from or . The brackets that customarily surround alternate class/call numbers are not carried in the MARC record; they may be generated based on the presence of repeated ‡a subfields.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_050_ind_1', 'MARC 21 biblio field 050 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_050_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_050_ind_1', '0', $$Item is in LC$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_050_ind_1', '1', $$Item is not in LC$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_050_ind_2', 'MARC 21 biblio field 050 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_050_ind_2', '0', $$Assigned by LC$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_050_ind_2', '4', $$Assigned by agency other than LC$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '050', 'a', $$Classification number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '050', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '050', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '050', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '050', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '051', $$Library of Congress Copy, Issue, Offprint Statement$$, $$Information added to a bibliographic record by the Library of Congress that relates to copies, issues, and/or offprints, etc. of the described material that are in its collections.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_051_ind_1', 'MARC 21 biblio field 051 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_051_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_051_ind_2', 'MARC 21 biblio field 051 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_051_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '051', 'a', $$Classification number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '051', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '051', 'c', $$Copy information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '051', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '052', $$Geographic Classification$$, $$Geographic classification code that represents the geographic area and, if applicable, the geographic subarea and populated place name covered by an item.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_052_ind_1', 'MARC 21 biblio field 052 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_052_ind_1', '#', $$Library of Congress Classification$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_052_ind_1', '1', $$U.S. Dept. of Defense Classification$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_052_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_052_ind_2', 'MARC 21 biblio field 052 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_052_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '052', 'a', $$Geographic classification area code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '052', 'b', $$Geographic classification subarea code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '052', 'd', $$Populated place name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '052', '2', $$Code source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '052', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '052', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '055', $$Classification Numbers Assigned in Canada$$, $$Complete call number or a classification number assigned by Library and Archives Canada (LAC) or a library contributing to LAC.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_055_ind_1', 'MARC 21 biblio field 055 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_055_ind_1', '#', $$Information not provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_055_ind_1', '0', $$Work held by LAC$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_055_ind_1', '1', $$Work not held by LAC$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_055_ind_2', 'MARC 21 biblio field 055 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_055_ind_2', '0', $$LC-based call number assigned by LAC$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_055_ind_2', '1', $$Complete LC class number assigned by LAC$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_055_ind_2', '2', $$Incomplete LC class number assigned by LAC$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_055_ind_2', '3', $$LC-based call number assigned by the contributing library$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_055_ind_2', '4', $$Complete LC class number assigned by the contributing library$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_055_ind_2', '5', $$Incomplete LC class number assigned by the contributing library$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_055_ind_2', '6', $$Other call number assigned by LAC$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_055_ind_2', '7', $$Other class number assigned by LAC$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_055_ind_2', '8', $$Other call number assigned by the contributing library$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_055_ind_2', '9', $$Other class number assigned by the contributing library$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '055', 'a', $$Classification number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '055', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '055', '2', $$Source of call/class number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '055', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '055', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '060', $$National Library of Medicine Call Number$$, $$Either a complete National Library of Medicine (NLM) call number or classification number assigned by either the National Library of Medicine or by other agencies using the . The second indicator values distinguish between content actually assigned by the National Library of Medicine and content assigned by an organization other than NLM.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_060_ind_1', 'MARC 21 biblio field 060 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_060_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_060_ind_1', '0', $$Item is in NLM$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_060_ind_1', '1', $$Item is not in NLM$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_060_ind_2', 'MARC 21 biblio field 060 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_060_ind_2', '0', $$Assigned by NLM$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_060_ind_2', '4', $$Assigned by agency other than NLM$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '060', 'a', $$Classification number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '060', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '060', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '061', $$National Library of Medicine Copy Statement$$, $$Information added to a bibliographic record by the National Library of Medicine that relates to second copies or sets of the described item that are in its collections.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_061_ind_1', 'MARC 21 biblio field 061 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_061_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_061_ind_2', 'MARC 21 biblio field 061 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_061_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '061', 'a', $$Classification number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '061', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '061', 'c', $$Copy information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '061', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '066', $$Character Sets Present$$, $$Information that indicates that the records were encoded with characters from sets other than ISO 10646 (or Unicode). A detailed description of the standard escape sequences used in MARC records is provided in$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_066_ind_1', 'MARC 21 biblio field 066 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_066_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_066_ind_2', 'MARC 21 biblio field 066 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_066_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '066', 'a', $$Primary G0 character set$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '066', 'b', $$Primary G1 character set$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '066', 'c', $$Alternate G0 or G1 character set$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '070', $$National Agricultural Library Call Number$$, $$Classification or call number that is assigned by the National Agricultural Library (NAL).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_070_ind_1', 'MARC 21 biblio field 070 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_070_ind_1', '0', $$Item is in NAL$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_070_ind_1', '1', $$Item is not in NAL$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_070_ind_2', 'MARC 21 biblio field 070 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_070_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '070', 'a', $$Classification number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '070', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '070', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '071', $$National Agricultural Library Copy Statement$$, $$Call number and other information added to a bibliographic record by the National Agricultural Library (NAL) that relates to second copies or sets of the described item that are in its collections.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_071_ind_1', 'MARC 21 biblio field 071 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_071_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_071_ind_2', 'MARC 21 biblio field 071 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_071_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '071', 'a', $$Classification number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '071', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '071', 'c', $$Copy information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '071', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '072', $$Subject Category Code$$, $$Code for the subject category that is associated with the described item.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_072_ind_1', 'MARC 21 biblio field 072 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_072_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_072_ind_2', 'MARC 21 biblio field 072 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_072_ind_2', '0', $$NAL subject category code list$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_072_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '072', 'a', $$Subject category code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '072', 'x', $$Subject category code subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '072', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '072', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '072', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '074', $$GPO Item Number$$, $$Item number assigned to publications by the U.S. Government Printing Office (GPO) to manage their distribution to libraries within its Depository Library System. Numbers are assigned from the .$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_074_ind_1', 'MARC 21 biblio field 074 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_074_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_074_ind_2', 'MARC 21 biblio field 074 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_074_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '074', 'a', $$GPO item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '074', 'z', $$Canceled/invalid GPO item number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '074', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '080', $$Universal Decimal Classification Number$$, $$Number taken from the Universal Decimal Classification scheme.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_080_ind_1', 'MARC 21 biblio field 080 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_080_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_080_ind_1', '0', $$Full$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_080_ind_1', '1', $$Abridged$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_080_ind_2', 'MARC 21 biblio field 080 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_080_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '080', 'a', $$Universal Decimal Classification number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '080', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '080', 'x', $$Common auxiliary subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '080', '2', $$Edition identifier$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '080', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '080', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '082', $$Dewey Decimal Classification Number$$, $$Classification number is taken from , the , and electronic updates to either edition. Through 1997, updates were issued in .$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_082_ind_1', 'MARC 21 biblio field 082 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_082_ind_1', '0', $$Full edition$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_082_ind_1', '1', $$Abridged edition$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_082_ind_2', 'MARC 21 biblio field 082 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_082_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_082_ind_2', '0', $$Assigned by LC$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_082_ind_2', '4', $$Assigned by agency other than LC$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '082', 'a', $$Classification number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '082', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '082', 'm', $$Standard or optional designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '082', 'q', $$Assigning agency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '082', '2', $$Edition number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '082', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '082', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '083', $$Additional Dewey Decimal Classification Number$$, $$Classification number used for subject access. It is taken from , the , and electronic updates to either edition. Through 1997, updates were issued in .$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_083_ind_1', 'MARC 21 biblio field 083 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_083_ind_1', '0', $$Full edition$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_083_ind_1', '1', $$Abridged edition$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_083_ind_2', 'MARC 21 biblio field 083 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_083_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '083', 'a', $$Classification number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '083', 'c', $$Classification number--Ending number of span$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '083', 'm', $$Standard or optional designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '083', 'q', $$Assigning agency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '083', 'y', $$Table sequence number for internal subarrangement or add table$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '083', 'z', $$Table identification$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '083', '2', $$Edition number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '083', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '083', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '084', $$Other Classification Number$$, $$Classification number from a scheme not covered by one of the other number fields. The field should not be used for classification numbers assigned from a source for which a subfield $2 source of number code would not be assigned.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_084_ind_1', 'MARC 21 biblio field 084 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_084_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_084_ind_2', 'MARC 21 biblio field 084 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_084_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '084', 'a', $$Classification number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '084', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '084', '2', $$Number source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '084', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '084', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '085', $$Synthesized Classification Number Components$$, $$Information about how a synthesized classification number or a portion of a synthesized classification number was built. It traces the different components of a synthesized number, showing the different portions of the number and where the add instructions are given. If a number was built using two or more instructions, a separate field 085 is given for each instruction.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_085_ind_1', 'MARC 21 biblio field 085 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_085_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_085_ind_2', 'MARC 21 biblio field 085 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_085_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '085', 'a', $$Number where instructions are found-single number or beginning number of span$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '085', 'b', $$Base number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '085', 'c', $$Classification number-ending number of span$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '085', 'f', $$Facet designator$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '085', 'r', $$Root number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '085', 's', $$Digits added from classification number in schedule or external table$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '085', 't', $$Digits added from internal subarrangement or add table$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '085', 'u', $$Number being analyzed$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '085', 'v', $$Number in internal subarrangement or add table where instructions are found$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '085', 'w', $$Table identification-Internal subarrangement or add table$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '085', 'y', $$Table sequence number for internal subarrangement or add table$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '085', 'z', $$Table identification$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '085', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '085', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '086', $$Government Document Classification Number$$, $$Classification number assigned to documents by designated agencies in countries that have a government documents classification program.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_086_ind_1', 'MARC 21 biblio field 086 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_086_ind_1', '#', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_086_ind_1', '0', $$Superintendent of Documents Classification System$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_086_ind_1', '1', $$Government of Canada Publications: Outline of Classification$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_086_ind_2', 'MARC 21 biblio field 086 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_086_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '086', 'a', $$Classification number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '086', 'z', $$Canceled/invalid classification number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '086', '2', $$Number source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '086', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '086', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '088', $$Report Number$$, $$Report number that is not a Standard Technical Report Number (STRN), recorded in field 027.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_088_ind_1', 'MARC 21 biblio field 088 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_088_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_088_ind_2', 'MARC 21 biblio field 088 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_088_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '088', 'a', $$Report number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '088', 'z', $$Canceled/invalid report number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '088', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '088', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', $$Main Entry-Personal Name$$, $$Personal name used as a main entry in a bibliographic record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_100_ind_1', 'MARC 21 biblio field 100 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_100_ind_1', '0', $$Forename$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_100_ind_1', '1', $$Surname$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_100_ind_1', '3', $$Family name$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_100_ind_2', 'MARC 21 biblio field 100 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_100_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', 'a', $$Personal name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', 'b', $$Numeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', 'c', $$Titles and words associated with a name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', 'd', $$Dates associated with a name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', 'j', $$Attribution qualifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', 'q', $$Fuller form of name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', 'u', $$Affiliation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '100', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', $$Main Entry-Corporate Name$$, $$Corporate name used as a main entry in a bibliographic record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_110_ind_1', 'MARC 21 biblio field 110 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_110_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_110_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_110_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_110_ind_2', 'MARC 21 biblio field 110 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_110_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', 'a', $$Corporate name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', 'b', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', 'd', $$Date of meeting or treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', 'u', $$Affiliation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '110', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', $$Main Entry-Meeting Name$$, $$Meeting or conference name used as a main entry in a bibliographic record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_111_ind_1', 'MARC 21 biblio field 111 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_111_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_111_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_111_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_111_ind_2', 'MARC 21 biblio field 111 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_111_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', 'a', $$Meeting name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', 'd', $$Date of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', 'e', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', 'j', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', 'q', $$Name of meeting following jurisdiction name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', 'u', $$Affiliation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '111', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', $$Main Entry-Uniform Title$$, $$Uniform title used as a main entry in a bibliographic record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_130_ind_1', 'MARC 21 biblio field 130 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_130_ind_1', '0', $$No nonfiling characters$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_130_ind_1', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_130_ind_1', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_130_ind_1', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_130_ind_1', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_130_ind_1', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_130_ind_1', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_130_ind_1', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_130_ind_1', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_130_ind_1', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_130_ind_2', 'MARC 21 biblio field 130 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_130_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', 'a', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', 'd', $$Date of treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '130', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '210', $$Abbreviated Title$$, $$Title as abbreviated for indexing or identification. An abbreviated title is supplied by ISSN centers, based on the Key Title (Field 222). Other abbreviated titles are supplied by cataloging agencies, including abstracting and indexing services.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_210_ind_1', 'MARC 21 biblio field 210 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_210_ind_1', '0', $$No added entry$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_210_ind_1', '1', $$Added entry$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_210_ind_2', 'MARC 21 biblio field 210 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_210_ind_2', '#', $$Abbreviated key title$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_210_ind_2', '0', $$Other abbreviated title$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '210', 'a', $$Abbreviated title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '210', 'b', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '210', '2', $$Source$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '210', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '210', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '222', $$Key Title$$, $$Unique title for a continuing resource that is assigned in conjunction with an ISSN recorded in field 022 by national centers under the auspices of the ISSN Network.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_222_ind_1', 'MARC 21 biblio field 222 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_222_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_222_ind_2', 'MARC 21 biblio field 222 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_222_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_222_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_222_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_222_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_222_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_222_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_222_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_222_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_222_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_222_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '222', 'a', $$Key title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '222', 'b', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '222', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '222', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', $$Uniform Title$$, $$Uniform title for an item when the bibliographic description is entered under a main entry field that contains a personal (field 100), corporate (110), or meeting (111) name.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_240_ind_1', 'MARC 21 biblio field 240 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_240_ind_1', '0', $$Not printed or displayed$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_240_ind_1', '1', $$Printed or displayed$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_240_ind_2', 'MARC 21 biblio field 240 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_240_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_240_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_240_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_240_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_240_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_240_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_240_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_240_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_240_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_240_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', 'a', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', 'd', $$Date of treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '240', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '242', $$Translation of Title by Cataloging Agency$$, $$Translation of the title proper that is made by the cataloging agency when the translated title does not appear as a parallel title on the item. For a note, the introductory phrase may be generated based on the field tag for display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_242_ind_1', 'MARC 21 biblio field 242 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_242_ind_1', '0', $$No added entry$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_242_ind_1', '1', $$Added entry$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_242_ind_2', 'MARC 21 biblio field 242 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_242_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_242_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_242_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_242_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_242_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_242_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_242_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_242_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_242_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_242_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '242', 'a', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '242', 'b', $$Remainder of title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '242', 'c', $$Statement of responsibility, etc.$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '242', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '242', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '242', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '242', 'y', $$Language code of translated title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '242', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '242', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', $$Collective Uniform Title$$, $$Generic title that is constructed by the cataloger to collect works by a prolific author. Brackets that customarily enclose a collective uniform title are not carried in the MARC record. They may be generated based on the field tag.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_243_ind_1', 'MARC 21 biblio field 243 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_243_ind_1', '0', $$Not printed or displayed$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_243_ind_1', '1', $$Printed or displayed$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_243_ind_2', 'MARC 21 biblio field 243 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_243_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_243_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_243_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_243_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_243_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_243_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_243_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_243_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_243_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_243_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', 'a', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', 'd', $$Date of treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '243', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '245', $$Title Statement$$, $$Title and statement of responsibility area of the bibliographic description of a work.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_245_ind_1', 'MARC 21 biblio field 245 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_245_ind_1', '0', $$No added entry$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_245_ind_1', '1', $$Added entry$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_245_ind_2', 'MARC 21 biblio field 245 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_245_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_245_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_245_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_245_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_245_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_245_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_245_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_245_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_245_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_245_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '245', 'a', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '245', 'b', $$Remainder of title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '245', 'c', $$Statement of responsibility, etc.$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '245', 'f', $$Inclusive dates$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '245', 'g', $$Bulk dates$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '245', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '245', 'k', $$Form$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '245', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '245', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '245', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '245', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '245', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '246', $$Varying Form of Title$$, $$Varying forms of the title appearing on different parts of an item or a portion of the title proper, or an alternative form of the title when the form differs substantially from the title statement in field 245 and if they contribute to the further identification of the item.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_246_ind_1', 'MARC 21 biblio field 246 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_246_ind_1', '0', $$Note, no added entry$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_246_ind_1', '1', $$Note, added entry$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_246_ind_1', '2', $$No note, no added entry$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_246_ind_1', '3', $$No note, added entry$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_246_ind_2', 'MARC 21 biblio field 246 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_246_ind_2', '#', $$No type specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_246_ind_2', '0', $$Portion of title$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_246_ind_2', '1', $$Parallel title$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_246_ind_2', '2', $$Distinctive title$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_246_ind_2', '3', $$Other title$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_246_ind_2', '4', $$Cover title$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_246_ind_2', '5', $$Added title page title$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_246_ind_2', '6', $$Caption title$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_246_ind_2', '7', $$Running title$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_246_ind_2', '8', $$Spine title$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '246', 'a', $$Title proper/short title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '246', 'b', $$Remainder of title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '246', 'f', $$Date or sequential designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '246', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '246', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '246', 'i', $$Display text$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '246', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '246', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '246', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '246', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '246', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '247', $$Former Title$$, $$Former title proper used when one cataloging record represents several titles associated with an entity.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_247_ind_1', 'MARC 21 biblio field 247 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_247_ind_1', '0', $$No added entry$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_247_ind_1', '1', $$Added entry$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_247_ind_2', 'MARC 21 biblio field 247 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_247_ind_2', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_247_ind_2', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '247', 'a', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '247', 'b', $$Remainder of title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '247', 'f', $$Date or sequential designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '247', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '247', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '247', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '247', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '247', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '247', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '247', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '250', $$Edition Statement$$, $$Information relating to the edition of a work as determined by applicable cataloging rules.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_250_ind_1', 'MARC 21 biblio field 250 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_250_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_250_ind_2', 'MARC 21 biblio field 250 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_250_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '250', 'a', $$Edition statement$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '250', 'b', $$Remainder of edition statement$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '250', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '250', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '254', $$Musical Presentation Statement$$, $$Musical presentation statement for printed or manuscript music that describes the format of the edition, which may differ from that of another edition of the same work.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_254_ind_1', 'MARC 21 biblio field 254 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_254_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_254_ind_2', 'MARC 21 biblio field 254 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_254_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '254', 'a', $$Musical presentation statement$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '254', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '254', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '255', $$Cartographic Mathematical Data$$, $$Mathematical data associated with cartographic material, including celestial charts. This data may also be coded in field 034 (Coded Mathematical Data).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_255_ind_1', 'MARC 21 biblio field 255 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_255_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_255_ind_2', 'MARC 21 biblio field 255 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_255_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '255', 'a', $$Statement of scale$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '255', 'b', $$Statement of projection$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '255', 'c', $$Statement of coordinates$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '255', 'd', $$Statement of zone$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '255', 'e', $$Statement of equinox$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '255', 'f', $$Outer G-ring coordinate pairs$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '255', 'g', $$Exclusion G-ring coordinate pairs$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '255', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '255', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '256', $$Computer File Characteristics$$, $$Characteristics of a computer file, such as the type of file (e.g., Computer programs), the number of records, statements, etc. (e.g., 1250 records, 5076 bytes).$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_256_ind_1', 'MARC 21 biblio field 256 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_256_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_256_ind_2', 'MARC 21 biblio field 256 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_256_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '256', 'a', $$Computer file characteristics$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '256', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '256', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '257', $$Country of Producing Entity$$, $$Name or abbreviation of the name of the country(s) where the principal offices of the producing entity(s) of a resource are located.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_257_ind_1', 'MARC 21 biblio field 257 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_257_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_257_ind_2', 'MARC 21 biblio field 257 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_257_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '257', 'a', $$Country of producing entity$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '257', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '257', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '258', $$Philatelic Issue Data$$, $$Issuing jurisdiction and denomination information about philatelic material, such as postage stamps, postal stationery (postal cards, etc., made available by a postal administration bearing a stamped impression (indicium) of denomination), revenue stamps (tax stamps), postage due stamps, and registered mail stamps. These are usually valid within a defined area and carry a value signifying prepayment or payment due for services or taxes.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_258_ind_1', 'MARC 21 biblio field 258 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_258_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_258_ind_2', 'MARC 21 biblio field 258 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_258_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '258', 'a', $$Issuing jurisdiction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '258', 'b', $$Denomination$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '258', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '258', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '260', $$Publication, Distribution, etc. (Imprint)$$, $$Information relating to the publication, printing, distribution, issue, release, or production of a work.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_260_ind_1', 'MARC 21 biblio field 260 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_260_ind_1', '#', $$Not applicable/No information provided/Earliest available publisher$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_260_ind_1', '2', $$Intervening publisher$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_260_ind_1', '3', $$Current/latest publisher$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_260_ind_2', 'MARC 21 biblio field 260 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_260_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '260', 'a', $$Place of publication, distribution, etc.$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '260', 'b', $$Name of publisher, distributor, etc.$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '260', 'c', $$Date of publication, distribution, etc.$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '260', 'e', $$Place of manufacture$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '260', 'f', $$Manufacturer$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '260', 'g', $$Date of manufacture$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '260', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '260', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '260', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '263', $$Projected Publication Date$$, $$Projected date of publication used in bibliographic records for works that have not yet been published.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_263_ind_1', 'MARC 21 biblio field 263 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_263_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_263_ind_2', 'MARC 21 biblio field 263 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_263_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '263', 'a', $$Projected publication date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '263', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '263', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '264', $$Production, Publication, Distribution, Manufacture, and Copyright Notice$$, $$Statement relating to the publication, printing, distribution, issue, release, or production of a work.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_264_ind_1', 'MARC 21 biblio field 264 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_264_ind_1', '#', $$Not applicable/No information provided/Earliest$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_264_ind_1', '2', $$Intervening$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_264_ind_1', '3', $$Current/latest$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_264_ind_2', 'MARC 21 biblio field 264 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_264_ind_2', '0', $$Production$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_264_ind_2', '1', $$Publication$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_264_ind_2', '2', $$Distribution$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_264_ind_2', '3', $$Manufacture$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_264_ind_2', '4', $$Copyright notice date$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '264', 'a', $$Place of production, publication, distribution, manufacture$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '264', 'b', $$Name of producer, publisher, distributor, manufacturer$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '264', 'c', $$Date of production, publication, distribution, manufacture, or copyright notice$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '264', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '264', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '264', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', $$Address$$, $$An address (as well as electronic access information such as email, telephone, fax, TTY, etc. numbers) for contacts related to the content of the bibliographic item. Multiple addresses, such as mailing addresses and addresses corresponding to the physical location of an item or facilities, are recorded in separate occurrences of field 270.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_270_ind_1', 'MARC 21 biblio field 270 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_270_ind_1', '#', $$No level specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_270_ind_1', '1', $$Primary$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_270_ind_1', '2', $$Secondary$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_270_ind_2', 'MARC 21 biblio field 270 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_270_ind_2', '#', $$No type specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_270_ind_2', '0', $$Mailing$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_270_ind_2', '7', $$Type specified in subfield $i$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'a', $$Address$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'b', $$City$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'c', $$State or province$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'd', $$Country$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'e', $$Postal code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'f', $$Terms preceding attention name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'g', $$Attention name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'h', $$Attention position$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'i', $$Type of address$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'j', $$Specialized telephone number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'k', $$Telephone number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'l', $$Fax number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'm', $$Electronic mail address$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'n', $$TDD or TTY number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'p', $$Contact person$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'q', $$Title of contact person$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'r', $$Hours$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '270', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '300', $$Physical Description$$, $$Physical description of the described item, including its extent, dimensions, and such other physical details as a description of any accompanying materials and unit type and size.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_300_ind_1', 'MARC 21 biblio field 300 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_300_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_300_ind_2', 'MARC 21 biblio field 300 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_300_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '300', 'a', $$Extent$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '300', 'b', $$Other physical details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '300', 'c', $$Dimensions$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '300', 'e', $$Accompanying material$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '300', 'f', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '300', 'g', $$Size of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '300', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '300', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '300', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '306', $$Playing Time$$, $$Six numeric characters, in the pattern that represent the playing time for a sound recording, videorecording, etc. or the stated duration of performance of printed or manuscript music. If the playing time is less than 1 hour, the hour is recorded as two zeroes; if less than a minute, the minute is also recorded as two zeroes.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_306_ind_1', 'MARC 21 biblio field 306 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_306_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_306_ind_2', 'MARC 21 biblio field 306 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_306_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '306', 'a', $$Playing time$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '306', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '306', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '307', $$Hours, Etc.$$, $$Chronological information identifying the days and/or times an item is available or accessible. Used primarily in records for electronic resources.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_307_ind_1', 'MARC 21 biblio field 307 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_307_ind_1', '#', $$Hours$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_307_ind_1', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_307_ind_2', 'MARC 21 biblio field 307 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_307_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '307', 'a', $$Hours$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '307', 'b', $$Additional information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '307', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '307', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '310', $$Current Publication Frequency$$, $$Current stated publication frequency of either an item or an update to an item. Dates are included when the beginning date of the current frequency is not the same as the beginning date of publication.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_310_ind_1', 'MARC 21 biblio field 310 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_310_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_310_ind_2', 'MARC 21 biblio field 310 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_310_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '310', 'a', $$Current publication frequency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '310', 'b', $$Date of current publication frequency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '310', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '310', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '321', $$Former Publication Frequency$$, $$Former publication frequency of either an item or an update to an item when a current publication frequency is given in field 310 (Current Publication Frequency).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_321_ind_1', 'MARC 21 biblio field 321 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_321_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_321_ind_2', 'MARC 21 biblio field 321 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_321_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '321', 'a', $$Former publication frequency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '321', 'b', $$Dates of former publication frequency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '321', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '321', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '336', $$Content Type$$, $$The form of communication through which a work is expressed. Used in conjunction with Leader /06 (Type of record), which indicates the general type of content of the resource. Field 336 information enables expression of more specific content types and content types from various lists.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_336_ind_1', 'MARC 21 biblio field 336 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_336_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_336_ind_2', 'MARC 21 biblio field 336 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_336_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '336', 'a', $$Content type term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '336', 'b', $$Content type code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '336', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '336', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '336', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '336', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '337', $$Media Type$$, $$Media type reflects the general type of intermediation device required to view, play, run, etc., the content of a resource. Used as an alternative to or in addition to the coded expression of Media type in field 007/00 (Category of material). Field 337 information enables indication of more specific media types and media types from various lists.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_337_ind_1', 'MARC 21 biblio field 337 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_337_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_337_ind_2', 'MARC 21 biblio field 337 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_337_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '337', 'a', $$Media type term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '337', 'b', $$Media type code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '337', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '337', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '337', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '337', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '338', $$Carrier Type$$, $$Carrier type reflects the format of the storage medium and housing of a carrier in combination with the media type (which indicates the intermediation device required to view, play, run, etc., the content of a resource). Used as an alternative to or in addition to the coded expression of carrier type in field 007/01 (Specific material designation). Field 338 information enables indication of more specific carrier types and carrier types from various lists.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_338_ind_1', 'MARC 21 biblio field 338 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_338_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_338_ind_2', 'MARC 21 biblio field 338 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_338_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '338', 'a', $$Carrier type term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '338', 'b', $$Carrier type code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '338', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '338', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '338', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '338', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '340', $$Physical Medium$$, $$Physical description information for an item that requires technical equipment for its use or an item that has special conservation or storage needs.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_340_ind_1', 'MARC 21 biblio field 340 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_340_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_340_ind_2', 'MARC 21 biblio field 340 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_340_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '340', 'a', $$Material base and configuration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '340', 'b', $$Dimensions$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '340', 'c', $$Materials applied to surface$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '340', 'd', $$Information recording technique$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '340', 'e', $$Support$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '340', 'f', $$Production rate/ratio$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '340', 'h', $$Location within medium$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '340', 'i', $$Technical specifications of medium$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '340', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '340', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '340', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', $$Geospatial Reference Data$$, $$Description of the frame of reference for the coordinates in a data set. To work with a data set a user must be able to identify how location accuracy has been affected through the application of a geospatial reference method, thus enabling the user to manipulate the data set to recover location accuracy.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_342_ind_1', 'MARC 21 biblio field 342 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_342_ind_1', '0', $$Horizontal coordinate system$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_342_ind_1', '1', $$Vertical coordinate system$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_342_ind_2', 'MARC 21 biblio field 342 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_342_ind_2', '0', $$Geographic$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_342_ind_2', '1', $$Map projection$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_342_ind_2', '2', $$Grid coordinate system$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_342_ind_2', '3', $$Local planar$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_342_ind_2', '4', $$Local$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_342_ind_2', '5', $$Geodetic model$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_342_ind_2', '6', $$Altitude$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_342_ind_2', '7', $$Method specified in $2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_342_ind_2', '8', $$Depth$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'a', $$Name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'b', $$Coordinate units or distance units$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'c', $$Latitude resolution$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'd', $$Longitude resolution$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'e', $$Standard parallel or oblique line latitude$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'f', $$Oblique line longitude$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'g', $$Longitude of central meridian or projection center$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'h', $$Latitude of projection center or projection origin$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'i', $$False easting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'j', $$False northing$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'k', $$Scale factor$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'l', $$Height of perspective point above surface$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'm', $$Azimuthal angle$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'n', $$Azimuth measure point longitude or straight vertical longitude from pole$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'o', $$Landsat number and path number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'p', $$Zone identifier$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'q', $$Ellipsoid name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'r', $$Semi-major axis$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 's', $$Denominator of flattening ratio$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 't', $$Vertical resolution$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'u', $$Vertical encoding method$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'v', $$Local planar, local, or other projection or grid description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', 'w', $$Local planar or local georeference information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', '2', $$Reference method used$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '342', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '343', $$Planar Coordinate Data$$, $$Information about the coordinate system developed on a planar surface. The information is provided to allow the user of a geospatial data set to identify the quantities of distances, or distances and angles. These define the position of a point on a reference plane onto which the surface of the Earth has been projected.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_343_ind_1', 'MARC 21 biblio field 343 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_343_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_343_ind_2', 'MARC 21 biblio field 343 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_343_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '343', 'a', $$Planar coordinate encoding method$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '343', 'b', $$Planar distance units$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '343', 'c', $$Abscissa resolution$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '343', 'd', $$Ordinate resolution$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '343', 'e', $$Distance resolution$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '343', 'f', $$Bearing resolution$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '343', 'g', $$Bearing units$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '343', 'h', $$Bearing reference direction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '343', 'i', $$Bearing reference meridian$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '343', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '343', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '344', $$Sound Characteristics$$, $$Technical specifications relating to the encoding of sound in a resource.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_344_ind_1', 'MARC 21 biblio field 344 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_344_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_344_ind_2', 'MARC 21 biblio field 344 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_344_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '344', 'a', $$Type of recording$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '344', 'b', $$Recording medium$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '344', 'c', $$Playing speed$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '344', 'd', $$Groove characteristic$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '344', 'e', $$Track configuration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '344', 'f', $$Tape configuration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '344', 'g', $$Configuration of playback channels$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '344', 'h', $$Special playback characteristics$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '344', '0', $$Authority record control number or standard number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '344', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '344', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '344', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '344', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '345', $$Projection Characteristics of Moving Image$$, $$Technical specifications relating to the projection of a moving image resource.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_345_ind_1', 'MARC 21 biblio field 345 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_345_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_345_ind_2', 'MARC 21 biblio field 345 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_345_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '345', 'a', $$Presentation format$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '345', 'b', $$Projection speed$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '345', '0', $$Authority record control number or standard number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '345', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '345', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '345', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '345', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '346', $$Video Characteristics$$, $$Technical specifications relating to the encoding of video images in a resource.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_346_ind_1', 'MARC 21 biblio field 346 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_346_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_346_ind_2', 'MARC 21 biblio field 346 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_346_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '346', 'a', $$Video format$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '346', 'b', $$Broadcast standard$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '346', '0', $$Authority record control number or standard number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '346', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '346', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '346', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '346', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '347', $$Digital File Characteristics$$, $$Technical specification relating to the digital encoding of text, image, audio, video, and other types of data in a resource.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_347_ind_1', 'MARC 21 biblio field 347 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_347_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_347_ind_2', 'MARC 21 biblio field 347 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_347_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '347', 'a', $$File type$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '347', 'b', $$Encoding format$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '347', 'c', $$File size$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '347', 'd', $$Resolution$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '347', 'e', $$Regional encoding$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '347', 'f', $$Encoded bitrate$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '347', '0', $$Authority record control number or standard number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '347', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '347', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '347', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '347', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '351', $$Organization and Arrangement of Materials$$, $$Information about the organization and arrangement of a collection of items.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_351_ind_1', 'MARC 21 biblio field 351 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_351_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_351_ind_2', 'MARC 21 biblio field 351 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_351_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '351', 'a', $$Organization$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '351', 'b', $$Arrangement$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '351', 'c', $$Hierarchical level$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '351', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '351', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '351', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '352', $$Digital Graphic Representation$$, $$Description of the method of referencing and the mechanism used to represent graphic information in a data set. This information consists of the type of storage technique used, the number of items in the data set, and the format in which the data is stored.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_352_ind_1', 'MARC 21 biblio field 352 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_352_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_352_ind_2', 'MARC 21 biblio field 352 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_352_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '352', 'a', $$Direct reference method$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '352', 'b', $$Object type$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '352', 'c', $$Object count$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '352', 'd', $$Row count$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '352', 'e', $$Column count$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '352', 'f', $$Vertical count$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '352', 'g', $$VPF topology level$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '352', 'i', $$Indirect reference description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '352', 'q', $$Format of the digital image$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '352', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '352', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '355', $$Security Classification Control$$, $$Specifics pertaining to the security classification associated with the document, title, abstract, contents note, and/or the author. In addition, it can contain handling instructions and external dissemination information pertaining to the dissemination of the document, title, abstract, contents note, and author. The field may also contain downgrading or declassification data, the name of the classification system, and a country of origin code.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_355_ind_1', 'MARC 21 biblio field 355 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_355_ind_1', '0', $$Document$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_355_ind_1', '1', $$Title$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_355_ind_1', '2', $$Abstract$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_355_ind_1', '3', $$Contents note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_355_ind_1', '4', $$Author$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_355_ind_1', '5', $$Record$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_355_ind_1', '8', $$None of the above$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_355_ind_2', 'MARC 21 biblio field 355 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_355_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '355', 'a', $$Security classification$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '355', 'b', $$Handling instructions$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '355', 'c', $$External dissemination information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '355', 'd', $$Downgrading or declassification event$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '355', 'e', $$Classification system$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '355', 'f', $$Country of origin code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '355', 'g', $$Downgrading date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '355', 'h', $$Declassification date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '355', 'j', $$Authorization$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '355', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '355', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '357', $$Originator Dissemination Control$$, $$Specifics pertaining to originator (i.e., author, producer) control of dissemination of the material in hand. Subfield $a contains a specific term denoting that the originator has control over the material.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_357_ind_1', 'MARC 21 biblio field 357 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_357_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_357_ind_2', 'MARC 21 biblio field 357 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_357_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '357', 'a', $$Originator control term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '357', 'b', $$Originating agency$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '357', 'c', $$Authorized recipients of material$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '357', 'g', $$Other restrictions$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '357', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '357', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '362', $$Dates of Publication and/or Sequential Designation$$, $$Beginning/ending date(s) of an item and/or the sequential designations used on each part. Dates to be used in this field are chronological designations that identify individual issues of the continuing resource. The sequential designations are usually numeric but can be alphabetic as well. The information may be formatted or unformatted. If the date information has been obtained from a source other than the first and/or last issue of the item published, the information is given in an unformatted note and the source of the information is usually cited.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_362_ind_1', 'MARC 21 biblio field 362 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_362_ind_1', '0', $$Formatted style$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_362_ind_1', '1', $$Unformatted note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_362_ind_2', 'MARC 21 biblio field 362 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_362_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '362', 'a', $$Dates of publication and/or sequential designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '362', 'z', $$Source of information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '362', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '362', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', $$Normalized Date and Sequential Designation$$, $$The numeric, alphabetic and/or normalized date designation used on the bibliographic item that identifies its parts and shows the relationship of the parts to the whole.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_363_ind_1', 'MARC 21 biblio field 363 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_363_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_363_ind_1', '0', $$Starting information$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_363_ind_1', '1', $$Ending information$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_363_ind_2', 'MARC 21 biblio field 363 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_363_ind_2', '#', $$Not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_363_ind_2', '0', $$Closed$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_363_ind_2', '1', $$Open$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'a', $$First level of enumeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'b', $$Second level of enumeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'c', $$Third level of enumeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'd', $$Fourth level of enumeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'e', $$Fifth level of enumeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'f', $$Sixth level of enumeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'g', $$Alternative numbering scheme, first level of enumeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'h', $$Alternative numbering scheme, second level of enumeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'i', $$First level of chronology$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'j', $$Second level of chronology$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'k', $$Third level of chronology$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'l', $$Fourth level of chronology$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'm', $$Alternative numbering scheme, chronology$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'u', $$First level textual designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'v', $$First level of chronology, issuance$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '363', '8', $$Field link and sequence number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', $$Trade Price$$, $$Current price of an item or the special export price of an item in any currency.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_365_ind_1', 'MARC 21 biblio field 365 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_365_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_365_ind_2', 'MARC 21 biblio field 365 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_365_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', 'a', $$Price type code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', 'b', $$Price amount$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', 'c', $$Currency code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', 'd', $$Unit of pricing$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', 'e', $$Price note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', 'f', $$Price effective from$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', 'g', $$Price effective until$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', 'h', $$Tax rate 1$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', 'i', $$Tax rate 2$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', 'j', $$ISO country code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', 'k', $$MARC country code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', 'm', $$Identification of pricing entity$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', '2', $$Source of price type code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '365', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '366', $$Trade Availability Information$$, $$Detailed information relating to the availability of items from publishers.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_366_ind_1', 'MARC 21 biblio field 366 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_366_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_366_ind_2', 'MARC 21 biblio field 366 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_366_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '366', 'a', $$Publishers' compressed title identification$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '366', 'b', $$Detailed date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '366', 'c', $$Availability status code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '366', 'd', $$Expected next availability date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '366', 'e', $$Note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '366', 'f', $$Publisher's discount category$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '366', 'g', $$Date made out of print$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '366', 'j', $$ISO country code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '366', 'k', $$MARC country code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '366', 'm', $$Identification of agency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '366', '2', $$Source of availability status code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '366', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '366', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '380', $$Form of Work$$, $$A class or genre to which a work belongs. May be used to differentiate a work from another work with the same title.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_380_ind_1', 'MARC 21 biblio field 380 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_380_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_380_ind_2', 'MARC 21 biblio field 380 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_380_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '380', 'a', $$Form of work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '380', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '380', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '380', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '380', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '381', $$Other Distinguishing Characteristics of Work or Expression$$, $$Any characteristic that is not accommodated in a special field that serves to characterize a work or expression. Examples are an issuing body, arranged statement of music, version, or a geographic term. May be used to differentiate a work from another work with the same title.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_381_ind_1', 'MARC 21 biblio field 381 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_381_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_381_ind_2', 'MARC 21 biblio field 381 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_381_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '381', 'a', $$Other distinguishing characteristic$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '381', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '381', 'v', $$Source of information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '381', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '381', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '381', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '381', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '382', $$Medium of Performance$$, $$The instrumental, vocal, and/or other medium of performance for which a musical work was originally conceived or for which a musical expression is written or performed. May be used to differentiate a musical work or expression from another with the same title.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_382_ind_1', 'MARC 21 biblio field 382 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_382_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_382_ind_2', 'MARC 21 biblio field 382 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_382_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '382', 'a', $$Medium of performance$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '382', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '382', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '382', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '382', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '383', $$Numeric Designation of Musical Work$$, $$A serial number, opus number, or thematic index number assigned to a musical work by the composer, publisher, or a musicologist. May be used to differentiate a musical work from another with the same title.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_383_ind_1', 'MARC 21 biblio field 383 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_383_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_383_ind_2', 'MARC 21 biblio field 383 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_383_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '383', 'a', $$Serial number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '383', 'b', $$Opus number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '383', 'c', $$Thematic index number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '383', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '383', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '384', $$Key$$, $$The set of pitch relationships that establishes a single pitch class as a tonal centre for a musical work or expression. May be used to differentiate a musical work or expression from another with the same title.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_384_ind_1', 'MARC 21 biblio field 384 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_384_ind_1', '#', $$Relationship to original unknown$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_384_ind_1', '0', $$Original key$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_384_ind_1', '1', $$Transposed key$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_384_ind_2', 'MARC 21 biblio field 384 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_384_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '384', 'a', $$Key$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '384', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '384', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '440', $$Series Statement/Added Entry-Title$$, $$Series statement consisting of a series title alone.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_440_ind_1', 'MARC 21 biblio field 440 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_440_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_440_ind_2', 'MARC 21 biblio field 440 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_440_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_440_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_440_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_440_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_440_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_440_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_440_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_440_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_440_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_440_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '440', 'a', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '440', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '440', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '440', 'v', $$Volume/sequential designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '440', 'w', $$Bibliographic record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '440', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '440', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '440', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '440', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '490', $$Series Statement$$, $$Series statement for a series title.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_490_ind_1', 'MARC 21 biblio field 490 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_490_ind_1', '0', $$Series not traced$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_490_ind_1', '1', $$Series traced$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_490_ind_2', 'MARC 21 biblio field 490 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_490_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '490', 'a', $$Series statement$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '490', 'l', $$Library of Congress call number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '490', 'v', $$Volume/sequential designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '490', 'x', $$International Standard Serial Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '490', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '490', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '490', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '500', $$General Note$$, $$General information for which a specialized 5XX note field has not been defined.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_500_ind_1', 'MARC 21 biblio field 500 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_500_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_500_ind_2', 'MARC 21 biblio field 500 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_500_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '500', 'a', $$General note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '500', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '500', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '500', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '500', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '501', $$With Note$$, $$Note indicating that more than one bibliographical work is contained in the physical item at the time of publishing, release, issue, or execution. The works that are contained in the item usually have distinctive titles and lack a collective title.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_501_ind_1', 'MARC 21 biblio field 501 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_501_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_501_ind_2', 'MARC 21 biblio field 501 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_501_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '501', 'a', $$With note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '501', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '501', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '501', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '502', $$Dissertation Note$$, $$Designation of an academic dissertation or thesis and the institution to which it was presented. Other notes indicating the relationship between the item being cataloged and the author's dissertation or thesis, such as statements indicating that the work represents or is based on the author's thesis (e.g., ) are recorded in field 500 (General Note).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_502_ind_1', 'MARC 21 biblio field 502 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_502_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_502_ind_2', 'MARC 21 biblio field 502 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_502_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '502', 'a', $$Dissertation note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '502', 'b', $$Degree type$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '502', 'c', $$Name of granting institution$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '502', 'd', $$Year degree granted$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '502', 'g', $$Miscellaneous information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '502', 'o', $$Dissertation identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '502', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '502', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '504', $$Bibliography, Etc. Note$$, $$Information on the presence of one or more bibliographies, discographies, filmographies, and/or other bibliographic references in a described item or in accompanying material.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_504_ind_1', 'MARC 21 biblio field 504 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_504_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_504_ind_2', 'MARC 21 biblio field 504 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_504_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '504', 'a', $$Bibliography, etc. note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '504', 'b', $$Number of references$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '504', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '504', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '505', $$Formatted Contents Note$$, $$Titles of separate works or parts of an item or the table of contents. The field may also contain statements of responsibility and volume numbers or other sequential designations.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_505_ind_1', 'MARC 21 biblio field 505 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_505_ind_1', '0', $$Contents$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_505_ind_1', '1', $$Incomplete contents$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_505_ind_1', '2', $$Partial contents$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_505_ind_1', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_505_ind_2', 'MARC 21 biblio field 505 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_505_ind_2', '#', $$Basic$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_505_ind_2', '0', $$Enhanced$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '505', 'a', $$Formatted contents note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '505', 'g', $$Miscellaneous information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '505', 'r', $$Statement of responsibility$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '505', 't', $$Title$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '505', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '505', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '505', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '506', $$Restrictions on Access Note$$, $$Information about restrictions imposed on access to the described materials.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_506_ind_1', 'MARC 21 biblio field 506 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_506_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_506_ind_1', '0', $$No restrictions$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_506_ind_1', '1', $$Restrictions apply$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_506_ind_2', 'MARC 21 biblio field 506 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_506_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '506', 'a', $$Terms governing access$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '506', 'b', $$Jurisdiction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '506', 'c', $$Physical access provisions$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '506', 'd', $$Authorized users$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '506', 'e', $$Authorization$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '506', 'f', $$Standardized terminology for access restriction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '506', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '506', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '506', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '506', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '506', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '506', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '507', $$Scale Note for Graphic Material$$, $$Scale of a graphic material item given as a note. For , this field contains the scale of architectural drawings or three-dimensional artifacts. For , the scale of an item is contained in this field only in pre-AACR 2 cataloging records. Scale information is contained in field 255 (Mathematical Data Area) in AACR 2 formulated records.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_507_ind_1', 'MARC 21 biblio field 507 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_507_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_507_ind_2', 'MARC 21 biblio field 507 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_507_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '507', 'a', $$Representative fraction of scale note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '507', 'b', $$Remainder of scale note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '507', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '507', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '508', $$Creation/Production Credits Note$$, $$Credits for persons or organizations, other than members of the cast, who have participated in the creation and/or production of the work. The introductory term is usually generated as a display constant.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_508_ind_1', 'MARC 21 biblio field 508 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_508_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_508_ind_2', 'MARC 21 biblio field 508 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_508_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '508', 'a', $$Creation/production credits note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '508', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '508', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '510', $$Citation/References Note$$, $$Citations or references to published bibliographic descriptions, reviews, abstracts, or indexes of the content of the described item.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_510_ind_1', 'MARC 21 biblio field 510 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_510_ind_1', '0', $$Coverage unknown$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_510_ind_1', '1', $$Coverage complete$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_510_ind_2', 'MARC 21 biblio field 510 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_510_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '510', 'a', $$Name of source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '510', 'b', $$Coverage of source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '510', 'c', $$Location within source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '510', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '510', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '510', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '510', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '511', $$Participant or Performer Note$$, $$Information about the participants, players, narrators, presenters, or performers.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_511_ind_1', 'MARC 21 biblio field 511 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_511_ind_1', '0', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_511_ind_1', '1', $$Cast$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_511_ind_2', 'MARC 21 biblio field 511 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_511_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '511', 'a', $$Participant or performer note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '511', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '511', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '513', $$Type of Report and Period Covered Note$$, $$Information on the type of report and the period covered by the report.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_513_ind_1', 'MARC 21 biblio field 513 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_513_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_513_ind_2', 'MARC 21 biblio field 513 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_513_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '513', 'a', $$Type of report$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '513', 'b', $$Period covered$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '513', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '513', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', $$Data Quality Note$$, $$Provides a general assessment of the quality of the data set constituting the item.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_514_ind_1', 'MARC 21 biblio field 514 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_514_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_514_ind_2', 'MARC 21 biblio field 514 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_514_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', 'a', $$Attribute accuracy report$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', 'b', $$Attribute accuracy value$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', 'c', $$Attribute accuracy explanation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', 'd', $$Logical consistency report$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', 'e', $$Completeness report$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', 'f', $$Horizontal position accuracy report$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', 'g', $$Horizontal position accuracy value$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', 'h', $$Horizontal position accuracy explanation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', 'i', $$Vertical positional accuracy report$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', 'j', $$Vertical positional accuracy value$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', 'k', $$Vertical positional accuracy explanation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', 'm', $$Cloud cover$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', 'z', $$Display note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '514', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '515', $$Numbering Peculiarities Note$$, $$Unformatted note giving irregularities and peculiarities in numbering or publishing patterns, report year coverage, revised editions, and/or issuance in parts.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_515_ind_1', 'MARC 21 biblio field 515 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_515_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_515_ind_2', 'MARC 21 biblio field 515 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_515_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '515', 'a', $$Numbering peculiarities note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '515', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '515', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '516', $$Type of Computer File or Data Note$$, $$General descriptor that characterizes the file (e.g., text, computer program, numeric). Specific information, such as the form or genre of textual material (e.g., biography, dictionaries, indexes) may be included. The general type of computer file information in coded form is recorded in 008/26 (Type of computer file).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_516_ind_1', 'MARC 21 biblio field 516 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_516_ind_1', '#', $$Type of file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_516_ind_1', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_516_ind_2', 'MARC 21 biblio field 516 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_516_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '516', 'a', $$Type of computer file or data note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '516', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '516', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '518', $$Date/Time and Place of an Event Note$$, $$Note on the date/time and/or place of creation, capture, recording, filming, execution, or broadcast associated with an event or the finding of a naturally occurring object. Field 033 (Date/Time and Place of an Event) contains the same information in coded form.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_518_ind_1', 'MARC 21 biblio field 518 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_518_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_518_ind_2', 'MARC 21 biblio field 518 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_518_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '518', 'a', $$Date/time and place of an event note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '518', 'd', $$Date of event$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '518', 'o', $$Other event information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '518', 'p', $$Place of event$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '518', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '518', '2', $$Source of term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '518', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '518', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '518', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '520', $$Summary, Etc.$$, $$Unformatted information that describes the scope and general contents of the materials.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_520_ind_1', 'MARC 21 biblio field 520 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_520_ind_1', '#', $$Summary$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_520_ind_1', '0', $$Subject$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_520_ind_1', '1', $$Review$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_520_ind_1', '2', $$Scope and content$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_520_ind_1', '3', $$Abstract$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_520_ind_1', '4', $$Content advice$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_520_ind_1', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_520_ind_2', 'MARC 21 biblio field 520 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_520_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '520', 'a', $$Summary, etc.$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '520', 'b', $$Expansion of summary note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '520', 'c', $$Assigning source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '520', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '520', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '520', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '520', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '520', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '521', $$Target Audience Note$$, $$Information that identifies the specific audience or intellectual level for which the content of the described item is considered appropriate.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_521_ind_1', 'MARC 21 biblio field 521 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_521_ind_1', '#', $$Audience$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_521_ind_1', '0', $$Reading grade level$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_521_ind_1', '1', $$Interest age level$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_521_ind_1', '2', $$Interest grade level$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_521_ind_1', '3', $$Special audience characteristics$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_521_ind_1', '4', $$Motivation/interest level$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_521_ind_1', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_521_ind_2', 'MARC 21 biblio field 521 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_521_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '521', 'a', $$Target audience note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '521', 'b', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '521', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '521', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '521', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '522', $$Geographic Coverage Note$$, $$Information about the geographic coverage of the described material (usually survey material). This information in coded form may be contained in field 052 (Geographic Classification Code).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_522_ind_1', 'MARC 21 biblio field 522 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_522_ind_1', '#', $$Geographic coverage$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_522_ind_1', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_522_ind_2', 'MARC 21 biblio field 522 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_522_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '522', 'a', $$Geographic coverage note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '522', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '522', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '524', $$Preferred Citation of Described Materials Note$$, $$Format for the citation of the described materials that is preferred by the custodian.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_524_ind_1', 'MARC 21 biblio field 524 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_524_ind_1', '#', $$Cite as$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_524_ind_1', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_524_ind_2', 'MARC 21 biblio field 524 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_524_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '524', 'a', $$Preferred citation of described materials note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '524', '2', $$Source of schema used$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '524', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '524', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '524', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '525', $$Supplement Note$$, $$Information on the existence of supplements or special issues that are neither cataloged in separate records nor recorded in a linking entry field 770 (Supplement/Special Issue Entry).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_525_ind_1', 'MARC 21 biblio field 525 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_525_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_525_ind_2', 'MARC 21 biblio field 525 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_525_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '525', 'a', $$Supplement note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '525', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '525', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '526', $$Study Program Information Note$$, $$Note giving the name of a study program which uses the title described in the record. Details about the study program data elements are also contained in the field. Field 526 is generally used for formal curriculum-based study or reading programs.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_526_ind_1', 'MARC 21 biblio field 526 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_526_ind_1', '0', $$Reading program$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_526_ind_1', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_526_ind_2', 'MARC 21 biblio field 526 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_526_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '526', 'a', $$Program name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '526', 'b', $$Interest level$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '526', 'c', $$Reading level$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '526', 'd', $$Title point value$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '526', 'i', $$Display text$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '526', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '526', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '526', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '526', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '526', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '530', $$Additional Physical Form Available Note$$, $$Information concerning a different physical format in which the described item is available.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_530_ind_1', 'MARC 21 biblio field 530 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_530_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_530_ind_2', 'MARC 21 biblio field 530 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_530_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '530', 'a', $$Additional physical form available note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '530', 'b', $$Availability source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '530', 'c', $$Availability conditions$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '530', 'd', $$Order number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '530', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '530', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '530', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '530', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '533', $$Reproduction Note$$, $$Descriptive data for a reproduction of an original item when the main portion of the bibliographic record describes the original item and the data differ.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_533_ind_1', 'MARC 21 biblio field 533 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_533_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_533_ind_2', 'MARC 21 biblio field 533 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_533_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '533', 'a', $$Type of reproduction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '533', 'b', $$Place of reproduction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '533', 'c', $$Agency responsible for reproduction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '533', 'd', $$Date of reproduction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '533', 'e', $$Physical description of reproduction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '533', 'f', $$Series statement of reproduction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '533', 'm', $$Dates and/or sequential designation of issues reproduced$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '533', 'n', $$Note about reproduction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '533', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '533', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '533', '7', $$Fixed-length data elements of reproduction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '533', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '533', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', $$Original Version Note$$, $$Descriptive data for an original item when the main portion of the bibliographic record describes a reproduction of that item and the data differ. Details relevant to the original are given in field 534.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_534_ind_1', 'MARC 21 biblio field 534 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_534_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_534_ind_2', 'MARC 21 biblio field 534 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_534_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', 'a', $$Main entry of original$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', 'b', $$Edition statement of original$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', 'c', $$Publication, distribution, etc. of original$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', 'e', $$Physical description, etc. of original$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', 'f', $$Series statement of original$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', 'k', $$Key title of original$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', 'l', $$Location of original$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', 'm', $$Material specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', 'n', $$Note about original$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', 'o', $$Other resource identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', 'p', $$Introductory phrase$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', 't', $$Title statement of original$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', 'x', $$International Standard Serial Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', 'z', $$International Standard Book Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '534', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '535', $$Location of Originals/Duplicates Note$$, $$Name and address of the repository with custody over originals or duplicates of the described materials. This field is used only when the originals or duplicates are housed in a repository different from that of the materials being described.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_535_ind_1', 'MARC 21 biblio field 535 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_535_ind_1', '1', $$Holder of originals$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_535_ind_1', '2', $$Holder of duplicates$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_535_ind_2', 'MARC 21 biblio field 535 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_535_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '535', 'a', $$Custodian$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '535', 'b', $$Postal address$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '535', 'c', $$Country$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '535', 'd', $$Telecommunications address$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '535', 'g', $$Repository location code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '535', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '535', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '535', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '536', $$Funding Information Note$$, $$Contract, grant, and project numbers when the material results from a funded project. Information concerning the sponsor or funding agency also may be included.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_536_ind_1', 'MARC 21 biblio field 536 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_536_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_536_ind_2', 'MARC 21 biblio field 536 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_536_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '536', 'a', $$Text of note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '536', 'b', $$Contract number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '536', 'c', $$Grant number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '536', 'd', $$Undifferentiated number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '536', 'e', $$Program element number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '536', 'f', $$Project number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '536', 'g', $$Task number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '536', 'h', $$Work unit number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '536', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '536', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '538', $$System Details Note$$, $$Technical information about an item, such as the presence or absence of certain kinds of codes; or the physical characteristics of a computer file, such as recording densities, parity, blocking factors, mode of access, software programming language, computer requirements, peripheral requirements, trade name or recording systems, number of lines of resolution, and modulation frequency. For sound and videorecordings, information about the trade name or recording system(s) (e.g., VHS), modulation frequency and number of lines of resolution may be included.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_538_ind_1', 'MARC 21 biblio field 538 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_538_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_538_ind_2', 'MARC 21 biblio field 538 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_538_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '538', 'a', $$System details note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '538', 'i', $$Display text$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '538', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '538', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '538', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '538', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '538', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '540', $$Terms Governing Use and Reproduction Note$$, $$Terms governing the use of the materials after access has been provided. The field includes, but is not limited to, copyrights, film rights, trade restrictions, etc. that restrict the right to reproduce, exhibit, fictionalize, quote, etc.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_540_ind_1', 'MARC 21 biblio field 540 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_540_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_540_ind_2', 'MARC 21 biblio field 540 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_540_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '540', 'a', $$Terms governing use and reproduction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '540', 'b', $$Jurisdiction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '540', 'c', $$Authorization$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '540', 'd', $$Authorized users$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '540', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '540', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '540', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '540', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '540', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '541', $$Immediate Source of Acquisition Note$$, $$Information about the immediate source of acquisition of the described materials and is used primarily with original or historical items, or other archival collections.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_541_ind_1', 'MARC 21 biblio field 541 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_541_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_541_ind_1', '0', $$Private$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_541_ind_1', '1', $$Not private$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_541_ind_2', 'MARC 21 biblio field 541 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_541_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '541', 'a', $$Source of acquisition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '541', 'b', $$Address$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '541', 'c', $$Method of acquisition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '541', 'd', $$Date of acquisition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '541', 'e', $$Accession number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '541', 'f', $$Owner$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '541', 'h', $$Purchase price$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '541', 'n', $$Extent$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '541', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '541', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '541', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '541', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '541', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', $$Information Relating to Copyright Status$$, $$Information known about the item that may be used to determine copyright status.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_542_ind_1', 'MARC 21 biblio field 542 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_542_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_542_ind_1', '0', $$Private$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_542_ind_1', '1', $$Not private$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_542_ind_2', 'MARC 21 biblio field 542 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_542_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'a', $$Personal creator$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'b', $$Personal creator death date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'c', $$Corporate creator$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'd', $$Copyright holder$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'e', $$Copyright holder contact information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'f', $$Copyright statement$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'g', $$Copyright date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'h', $$Copyright renewal date$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'i', $$Publication date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'j', $$Creation date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'k', $$Publisher$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'l', $$Copyright status$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'm', $$Publication status$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'o', $$Research date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'p', $$Country of publication or creation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'q', $$Supplying agency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'r', $$Jurisdiction of copyright assessment$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 's', $$Source of information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '542', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '544', $$Location of Other Archival Materials Note$$, $$Name and address of custodians of archival materials related to the described materials by provenance, specifically by having been, at a previous time, a part of the same collection or record group.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_544_ind_1', 'MARC 21 biblio field 544 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_544_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_544_ind_1', '0', $$Associated materials$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_544_ind_1', '1', $$Related materials$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_544_ind_2', 'MARC 21 biblio field 544 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_544_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '544', 'a', $$Custodian$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '544', 'b', $$Address$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '544', 'c', $$Country$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '544', 'd', $$Title$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '544', 'e', $$Provenance$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '544', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '544', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '544', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '544', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '545', $$Biographical or Historical Data$$, $$Biographical information about an individual or historical information about an institution or event used as the main entry for the item being cataloged. When a distinction between levels of detail is required, a brief summary is given in subfield $a and a fuller annotation is given in subfield $b.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_545_ind_1', 'MARC 21 biblio field 545 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_545_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_545_ind_1', '0', $$Biographical sketch$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_545_ind_1', '1', $$Administrative history$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_545_ind_2', 'MARC 21 biblio field 545 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_545_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '545', 'a', $$Biographical or historical data$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '545', 'b', $$Expansion$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '545', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '545', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '545', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '546', $$Language Note$$, $$Textual information on the language of the described materials. A description of the alphabet, script, or other symbol system (e.g., arabic alphabet, ASCII, musical notation system, bar code, logarithmic graphing) may also be included. Coded language information is contained in fields 008/35-37 (Language) and/or 041 (Language code).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_546_ind_1', 'MARC 21 biblio field 546 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_546_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_546_ind_2', 'MARC 21 biblio field 546 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_546_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '546', 'a', $$Language note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '546', 'b', $$Information code or alphabet$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '546', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '546', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '546', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '547', $$Former Title Complexity Note$$, $$Description of the complex relationship between titles proper whenever an intelligible note cannot be system generated from the data in field 247 (Former Title).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_547_ind_1', 'MARC 21 biblio field 547 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_547_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_547_ind_2', 'MARC 21 biblio field 547 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_547_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '547', 'a', $$Former title complexity note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '547', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '547', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '550', $$Issuing Body Note$$, $$Information about the current and former issuing bodies of a continuing resource.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_550_ind_1', 'MARC 21 biblio field 550 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_550_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_550_ind_2', 'MARC 21 biblio field 550 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_550_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '550', 'a', $$Issuing body note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '550', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '550', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', $$Entity and Attribute Information Note$$, $$Description of the information content of the data set, including the entity types, their attributes, and the domains from which attribute values may be assigned.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_552_ind_1', 'MARC 21 biblio field 552 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_552_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_552_ind_2', 'MARC 21 biblio field 552 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_552_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'a', $$Entity type label$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'b', $$Entity type definition and source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'c', $$Attribute label$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'd', $$Attribute definition and source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'e', $$Enumerated domain value$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'f', $$Enumerated domain value definition and source$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'g', $$Range domain minimum and maximum$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'h', $$Codeset name and source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'i', $$Unrepresentable domain$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'j', $$Attribute units of measurement and resolution$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'k', $$Beginning and ending date of attribute values$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'l', $$Attribute value accuracy$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'm', $$Attribute value accuracy explanation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'n', $$Attribute measurement frequency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'o', $$Entity and attribute overview$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'p', $$Entity and attribute detail citation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', 'z', $$Display note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '552', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '555', $$Cumulative Index/Finding Aids Note$$, $$Information on the availability of cumulative indexes for continuing resources or finding aids and similar control materials for archival and manuscripts control and visual materials whose only or major focus is the described material.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_555_ind_1', 'MARC 21 biblio field 555 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_555_ind_1', '#', $$Indexes$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_555_ind_1', '0', $$Finding aids$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_555_ind_1', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_555_ind_2', 'MARC 21 biblio field 555 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_555_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '555', 'a', $$Cumulative index/finding aids note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '555', 'b', $$Availability source$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '555', 'c', $$Degree of control$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '555', 'd', $$Bibliographic reference$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '555', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '555', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '555', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '555', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '556', $$Information About Documentation Note$$, $$Information about the documentation of the described materials, such as codebooks which explain the contents and use of the file or a users’ manual to a serial.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_556_ind_1', 'MARC 21 biblio field 556 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_556_ind_1', '#', $$Documentation$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_556_ind_1', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_556_ind_2', 'MARC 21 biblio field 556 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_556_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '556', 'a', $$Information about documentation note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '556', 'z', $$International Standard Book Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '556', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '556', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '561', $$Ownership and Custodial History$$, $$Copy-specific field that contains information concerning the ownership and custodial history of the described materials from the time of their creation to the time of their accessioning, including the time at which individual items or groups of items were first brought together in their current arrangement or collation.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_561_ind_1', 'MARC 21 biblio field 561 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_561_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_561_ind_1', '0', $$Private$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_561_ind_1', '1', $$Not private$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_561_ind_2', 'MARC 21 biblio field 561 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_561_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '561', 'a', $$History$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '561', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '561', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '561', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '561', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '562', $$Copy and Version Identification Note$$, $$Information that distinguishes the copy(s) or version(s) of materials held by an archive or manuscript repository when more than one copy or version exists or could exist.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_562_ind_1', 'MARC 21 biblio field 562 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_562_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_562_ind_2', 'MARC 21 biblio field 562 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_562_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '562', 'a', $$Identifying markings$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '562', 'b', $$Copy identification$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '562', 'c', $$Version identification$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '562', 'd', $$Presentation format$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '562', 'e', $$Number of copies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '562', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '562', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '562', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '562', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '563', $$Binding Information$$, $$Binding information intended primarily for use with antiquarian materials, rare books and other special collections.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_563_ind_1', 'MARC 21 biblio field 563 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_563_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_563_ind_2', 'MARC 21 biblio field 563 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_563_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '563', 'a', $$Binding note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '563', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '563', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '563', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '563', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '563', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '565', $$Case File Characteristics Note$$, $$Information about the content and characteristics of case files and/or the number of cases or variables making up a case file or a database.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_565_ind_1', 'MARC 21 biblio field 565 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_565_ind_1', '#', $$File size$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_565_ind_1', '0', $$Case file characteristics$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_565_ind_1', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_565_ind_2', 'MARC 21 biblio field 565 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_565_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '565', 'a', $$Number of cases/variables$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '565', 'b', $$Name of variable$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '565', 'c', $$Unit of analysis$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '565', 'd', $$Universe of data$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '565', 'e', $$Filing scheme or code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '565', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '565', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '565', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '567', $$Methodology Note$$, $$Information concerning significant methodological characteristics of the material, such as the algorithm, universe description, sampling procedures, classification, or validation characteristics.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_567_ind_1', 'MARC 21 biblio field 567 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_567_ind_1', '#', $$Methodology$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_567_ind_1', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_567_ind_2', 'MARC 21 biblio field 567 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_567_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '567', 'a', $$Methodology note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '567', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '567', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '580', $$Linking Entry Complexity Note$$, $$Description of the complex relationship between the item described in the record and other items that cannot be adequately generated from the linking entry fields 760-787.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_580_ind_1', 'MARC 21 biblio field 580 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_580_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_580_ind_2', 'MARC 21 biblio field 580 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_580_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '580', 'a', $$Linking entry complexity note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '580', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '580', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '581', $$Publications About Described Materials Note$$, $$Citation or information about a publication that is based on the use, study, or analysis of the materials described in the record.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_581_ind_1', 'MARC 21 biblio field 581 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_581_ind_1', '#', $$Publications$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_581_ind_1', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_581_ind_2', 'MARC 21 biblio field 581 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_581_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '581', 'a', $$Publications about described materials note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '581', 'z', $$International Standard Book Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '581', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '581', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '581', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', $$Action Note$$, $$Information about processing, reference, and preservation actions.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_583_ind_1', 'MARC 21 biblio field 583 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_583_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_583_ind_1', '0', $$Private$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_583_ind_1', '1', $$Not private$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_583_ind_2', 'MARC 21 biblio field 583 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_583_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'a', $$Action$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'b', $$Action identification$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'c', $$Time/date of action$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'd', $$Action interval$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'e', $$Contingency for action$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'f', $$Authorization$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'h', $$Jurisdiction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'i', $$Method of action$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'j', $$Site of action$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'k', $$Action agent$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'l', $$Status$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'n', $$Extent$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '583', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '584', $$Accumulation and Frequency of Use Note$$, $$Measurements of and information about the rates of accumulation (for continuing, open-ended accessions) and/or the rate of reference use of the described materials.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_584_ind_1', 'MARC 21 biblio field 584 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_584_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_584_ind_2', 'MARC 21 biblio field 584 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_584_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '584', 'a', $$Accumulation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '584', 'b', $$Frequency of use$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '584', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '584', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '584', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '584', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '585', $$Exhibitions Note$$, $$Copy-specific field that contains a note which cites exhibitions where the material described has been shown.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_585_ind_1', 'MARC 21 biblio field 585 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_585_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_585_ind_2', 'MARC 21 biblio field 585 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_585_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '585', 'a', $$Exhibitions note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '585', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '585', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '585', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '585', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '586', $$Awards Note$$, $$Information on awards associated with the described item.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_586_ind_1', 'MARC 21 biblio field 586 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_586_ind_1', '#', $$Awards$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_586_ind_1', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_586_ind_2', 'MARC 21 biblio field 586 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_586_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '586', 'a', $$Awards note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '586', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '586', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '586', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '588', $$Source of Description Note$$, $$Information used for tracking and controlling the metadata contained in the record. It includes general and specific source of description notes that are especially of interest to other catalogers.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_588_ind_1', 'MARC 21 biblio field 588 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_588_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_588_ind_2', 'MARC 21 biblio field 588 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_588_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '588', 'a', $$Source of description note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '588', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '588', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '588', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', $$Subject Added Entry-Personal Name$$, $$Subject added entry in which the entry element is a personal name.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_600_ind_1', 'MARC 21 biblio field 600 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_600_ind_1', '0', $$Forename$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_600_ind_1', '1', $$Surname$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_600_ind_1', '3', $$Family name$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_600_ind_2', 'MARC 21 biblio field 600 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_600_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_600_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_600_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_600_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_600_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_600_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_600_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_600_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'a', $$Personal name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'b', $$Numeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'c', $$Titles and other words associated with a name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'd', $$Dates associated with a name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'j', $$Attribution qualifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'q', $$Fuller form of name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'u', $$Affiliation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', '2', $$Source of heading or term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '600', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', $$Subject Added Entry-Corporate Name$$, $$Subject added entry in which the entry element is a corporate name.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_610_ind_1', 'MARC 21 biblio field 610 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_610_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_610_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_610_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_610_ind_2', 'MARC 21 biblio field 610 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_610_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_610_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_610_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_610_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_610_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_610_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_610_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_610_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'a', $$Corporate name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'b', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'd', $$Date of meeting or treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'u', $$Affiliation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', '2', $$Source of heading or term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '610', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', $$Subject Added Entry-Meeting Name$$, $$Subject added entry in which the entry element is a meeting or conference name.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_611_ind_1', 'MARC 21 biblio field 611 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_611_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_611_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_611_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_611_ind_2', 'MARC 21 biblio field 611 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_611_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_611_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_611_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_611_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_611_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_611_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_611_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_611_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'a', $$Meeting name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'd', $$Date of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'e', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'j', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'q', $$Name of meeting following jurisdiction name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'u', $$Affiliation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', '2', $$Source of heading or term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '611', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', $$Subject Added Entry-Uniform Title$$, $$Subject added entry in which the entry element is a uniform title.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_630_ind_1', 'MARC 21 biblio field 630 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_1', '0', $$No nonfiling characters$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_1', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_1', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_1', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_1', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_1', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_1', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_1', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_1', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_1', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_630_ind_2', 'MARC 21 biblio field 630 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_630_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'a', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'd', $$Date of treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', '2', $$Source of heading or term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '630', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '648', $$Subject Added Entry-Chronological Term$$, $$Subject added entry in which the entry element is a chronological term.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_648_ind_1', 'MARC 21 biblio field 648 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_648_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_648_ind_2', 'MARC 21 biblio field 648 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_648_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_648_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_648_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_648_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_648_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_648_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_648_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_648_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '648', 'a', $$Chronological term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '648', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '648', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '648', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '648', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '648', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '648', '2', $$Source of heading or term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '648', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '648', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '648', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', $$Subject Added Entry-Topical Term$$, $$Subject added entry in which the entry element is a topical term.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_650_ind_1', 'MARC 21 biblio field 650 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_650_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_650_ind_1', '0', $$No level specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_650_ind_1', '1', $$Primary$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_650_ind_1', '2', $$Secondary$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_650_ind_2', 'MARC 21 biblio field 650 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_650_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_650_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_650_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_650_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_650_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_650_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_650_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_650_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', 'a', $$Topical term or geographic name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', 'b', $$Topical term following geographic name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', 'c', $$Location of event$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', 'd', $$Active dates$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', '2', $$Source of heading or term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '650', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '651', $$Subject Added Entry-Geographic Name$$, $$Subject added entry in which the entry element is a geographic name.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_651_ind_1', 'MARC 21 biblio field 651 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_651_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_651_ind_2', 'MARC 21 biblio field 651 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_651_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_651_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_651_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_651_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_651_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_651_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_651_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_651_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '651', 'a', $$Geographic name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '651', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '651', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '651', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '651', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '651', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '651', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '651', '2', $$Source of heading or term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '651', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '651', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '651', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '651', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '653', $$Index Term-Uncontrolled$$, $$Index term added entry that is not constructed by standard subject heading/thesaurus-building conventions.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_653_ind_1', 'MARC 21 biblio field 653 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_653_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_653_ind_1', '0', $$No level specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_653_ind_1', '1', $$Primary$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_653_ind_1', '2', $$Secondary$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_653_ind_2', 'MARC 21 biblio field 653 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_653_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_653_ind_2', '0', $$Topical term$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_653_ind_2', '1', $$Personal name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_653_ind_2', '2', $$Corporate name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_653_ind_2', '3', $$Meeting name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_653_ind_2', '4', $$Chronological term$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_653_ind_2', '5', $$Geographic name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_653_ind_2', '6', $$Genre/form term$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '653', 'a', $$Uncontrolled term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '653', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '653', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '654', $$Subject Added Entry-Faceted Topical Terms$$, $$Topical subject constructed from a faceted vocabulary.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_654_ind_1', 'MARC 21 biblio field 654 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_654_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_654_ind_1', '0', $$No level specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_654_ind_1', '1', $$Primary$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_654_ind_1', '2', $$Secondary$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_654_ind_2', 'MARC 21 biblio field 654 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_654_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '654', 'a', $$Focus term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '654', 'b', $$Non-focus term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '654', 'c', $$Facet/hierarchy designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '654', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '654', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '654', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '654', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '654', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '654', '2', $$Source of heading or term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '654', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '654', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '654', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '654', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '655', $$Index Term-Genre/Form$$, $$Terms indicating the genre, form, and/or physical characteristics of the materials being described. A designates the style or technique of the intellectual content of textual materials or, for graphic materials, aspects such as vantage point, intended purpose, characteristics of the creator, publication status, or method of representation. A designates historically and functionally specific kinds of materials distinguished by their physical character, the subject of their intellectual content, or the order of information within them. terms designate historically and functionally specific kinds of materials as distinguished by an examination of their physical character, subject of their intellectual content, or the order of information with them.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_655_ind_1', 'MARC 21 biblio field 655 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_655_ind_1', '#', $$Basic$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_655_ind_1', '0', $$Faceted$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_655_ind_2', 'MARC 21 biblio field 655 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_655_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_655_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_655_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_655_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_655_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_655_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_655_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_655_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '655', 'a', $$Genre/form data or focus term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '655', 'b', $$Non-focus term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '655', 'c', $$Facet/hierarchy designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '655', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '655', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '655', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '655', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '655', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '655', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '655', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '655', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '655', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '655', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '656', $$Index Term-Occupation$$, $$Index term that is descriptive of the occupation (including avocation) reflected in the contents of the described materials.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_656_ind_1', 'MARC 21 biblio field 656 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_656_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_656_ind_2', 'MARC 21 biblio field 656 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_656_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '656', 'a', $$Occupation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '656', 'k', $$Form$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '656', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '656', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '656', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '656', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '656', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '656', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '656', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '656', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '656', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '657', $$Index Term-Function$$, $$Index term that describes the activity or function that generated the described materials.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_657_ind_1', 'MARC 21 biblio field 657 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_657_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_657_ind_2', 'MARC 21 biblio field 657 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_657_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '657', 'a', $$Function$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '657', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '657', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '657', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '657', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '657', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '657', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '657', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '657', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '657', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '658', $$Index Term-Curriculum Objective$$, $$Index terms denoting curriculum or course-of-study objectives applicable to the content of the described materials. The field may also contain correlation factors indicating the degree to which the described materials meet an objective. Codes assigned to specific objectives in published lists are also recorded in this field.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_658_ind_1', 'MARC 21 biblio field 658 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_658_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_658_ind_2', 'MARC 21 biblio field 658 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_658_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '658', 'a', $$Main curriculum objective$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '658', 'b', $$Subordinate curriculum objective$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '658', 'c', $$Curriculum code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '658', 'd', $$Correlation factor$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '658', '2', $$Source of term or code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '658', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '658', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '662', $$Subject Added Entry-Hierarchical Place Name$$, $$Hierarchical form of a geographic name used as a subject added entry.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_662_ind_1', 'MARC 21 biblio field 662 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_662_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_662_ind_2', 'MARC 21 biblio field 662 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_662_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '662', 'a', $$Country or larger entity$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '662', 'b', $$First-order political jurisdiction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '662', 'c', $$Intermediate political jurisdiction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '662', 'd', $$City$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '662', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '662', 'f', $$City subsection$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '662', 'g', $$Other nonjurisdictional geographic region and feature$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '662', 'h', $$Extraterrestrial area$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '662', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '662', '2', $$Source of heading or term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '662', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '662', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '662', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', $$Added Entry-Personal Name$$, $$Added entry in which the entry element is a personal name.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_700_ind_1', 'MARC 21 biblio field 700 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_700_ind_1', '0', $$Forename$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_700_ind_1', '1', $$Surname$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_700_ind_1', '3', $$Family name$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_700_ind_2', 'MARC 21 biblio field 700 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_700_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_700_ind_2', '2', $$Analytical entry$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'a', $$Personal name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'b', $$Numeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'c', $$Titles and other words associated with a name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'd', $$Dates associated with a name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'j', $$Attribution qualifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'q', $$Fuller form of name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'u', $$Affiliation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '700', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', $$Added Entry-Corporate Name$$, $$Added entry in which the entry element is a corporate name.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_710_ind_1', 'MARC 21 biblio field 710 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_710_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_710_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_710_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_710_ind_2', 'MARC 21 biblio field 710 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_710_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_710_ind_2', '2', $$Analytical entry$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'a', $$Corporate name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'b', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'd', $$Date of meeting or treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'u', $$Affiliation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '710', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', $$Added Entry-Meeting Name$$, $$Added entry in which the entry element is a meeting name.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_711_ind_1', 'MARC 21 biblio field 711 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_711_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_711_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_711_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_711_ind_2', 'MARC 21 biblio field 711 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_711_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_711_ind_2', '2', $$Analytical entry$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 'a', $$Meeting name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 'd', $$Date of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 'e', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 'j', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 'q', $$Name of meeting following jurisdiction name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 'u', $$Affiliation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '711', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '720', $$Added Entry-Uncontrolled Name$$, $$Added entry in which the name is not controlled in an authority file or list. It is also used for names that have not been formulated according to cataloging rules. Names may be of any type (e.g., personal, corporate, meeting).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_720_ind_1', 'MARC 21 biblio field 720 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_720_ind_1', '#', $$Not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_720_ind_1', '1', $$Personal$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_720_ind_1', '2', $$Other$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_720_ind_2', 'MARC 21 biblio field 720 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_720_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '720', 'a', $$Name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '720', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '720', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '720', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '720', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', $$Added Entry-Uniform Title$$, $$Uniform title, a related or an analytical title that is controlled by an authority file or list, used as an added entry.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_730_ind_1', 'MARC 21 biblio field 730 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_730_ind_1', '0', $$No nonfiling characters$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_730_ind_1', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_730_ind_1', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_730_ind_1', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_730_ind_1', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_730_ind_1', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_730_ind_1', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_730_ind_1', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_730_ind_1', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_730_ind_1', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_730_ind_2', 'MARC 21 biblio field 730 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_730_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_730_ind_2', '2', $$Analytical entry$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', 'a', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', 'd', $$Date of treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '730', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '740', $$Added Entry-Uncontrolled Related/Analytical Title$$, $$Added entries for related or analytical titles that are not controlled through an authority file or list. (If related or analytical titles are controlled by an authority file, use field 730 (Added entry - uniform title)).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_740_ind_1', 'MARC 21 biblio field 740 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_740_ind_1', '0', $$No nonfiling characters$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_740_ind_1', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_740_ind_1', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_740_ind_1', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_740_ind_1', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_740_ind_1', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_740_ind_1', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_740_ind_1', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_740_ind_1', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_740_ind_1', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_740_ind_2', 'MARC 21 biblio field 740 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_740_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_740_ind_2', '2', $$Analytical entry$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '740', 'a', $$Uncontrolled related/analytical title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '740', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '740', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '740', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '740', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '740', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '740', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '751', $$Added Entry-Geographic Name$$, $$Added entry in which the entry element is a geographic name that is related to a particular attribute of the described item, e.g., the place of publication for a rare book, place of distribution, place of a university to which a dissertation is submitted, place of an event such as a conference, etc.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_751_ind_1', 'MARC 21 biblio field 751 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_751_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_751_ind_2', 'MARC 21 biblio field 751 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_751_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '751', 'a', $$Geographic name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '751', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '751', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '751', '2', $$Source of heading or term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '751', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '751', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '751', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '751', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '752', $$Added Entry-Hierarchical Place Name$$, $$Added entry in which the entry element is a hierarchical form of place name that is related to a particular attribute of the described item, e.g., the place of publication for a rare book. For display, a dash (--) may be generated to separate the subelements of the place name, e.g., Canada -- British Columbia -- Vancouver.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_752_ind_1', 'MARC 21 biblio field 752 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_752_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_752_ind_2', 'MARC 21 biblio field 752 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_752_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '752', 'a', $$Country or larger entity$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '752', 'b', $$First-order political jurisdiction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '752', 'c', $$Intermediate political jurisdiction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '752', 'd', $$City$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '752', 'f', $$City subsection$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '752', 'g', $$Other nonjurisdictional geographic region and feature$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '752', 'h', $$Extraterrestrial area$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '752', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '752', '2', $$Source of heading or term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '752', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '752', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '753', $$System Details Access to Computer Files$$, $$Information on the technical aspects of a computer file and any accompanying material that may be used to select and arrange the record with other records in a printed index.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_753_ind_1', 'MARC 21 biblio field 753 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_753_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_753_ind_2', 'MARC 21 biblio field 753 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_753_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '753', 'a', $$Make and model of machine$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '753', 'b', $$Programming language$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '753', 'c', $$Operating system$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '753', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '753', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '754', $$Added Entry-Taxonomic Identification$$, $$Added entry in which the entry element is the taxonomic name or category associated with the described item.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_754_ind_1', 'MARC 21 biblio field 754 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_754_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_754_ind_2', 'MARC 21 biblio field 754 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_754_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '754', 'a', $$Taxonomic name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '754', 'c', $$Taxonomic category$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '754', 'd', $$Common or alternative name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '754', 'x', $$Non-public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '754', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '754', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '754', '2', $$Source of taxonomic identification$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '754', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '754', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', $$Main Series Entry$$, $$Information concerning the related main series when the target item is a subseries (vertical relationship). When a note is generated from this field, the introductory phrase or may be generated based on the field tag for display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_760_ind_1', 'MARC 21 biblio field 760 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_760_ind_1', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_760_ind_1', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_760_ind_2', 'MARC 21 biblio field 760 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_760_ind_2', '#', $$Main series$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_760_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 'a', $$Main entry heading$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 'b', $$Edition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 'c', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 'd', $$Place, publisher, and date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 'g', $$Related parts$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 'h', $$Physical description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 'm', $$Material-specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 'o', $$Other item identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 's', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 't', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 'y', $$CODEN designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', '7', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '760', 'p', $$Personal name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', $$Subseries Entry$$, $$Information concerning a related subseries when the target item is a main series or a parent subseries (vertical relationship). When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_762_ind_1', 'MARC 21 biblio field 762 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_762_ind_1', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_762_ind_1', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_762_ind_2', 'MARC 21 biblio field 762 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_762_ind_2', '#', $$Has subseries$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_762_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', 'a', $$Main entry heading$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', 'b', $$Edition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', 'c', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', 'd', $$Place, publisher, and date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', 'g', $$Related parts$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', 'h', $$Physical description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', 'm', $$Material-specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', 'o', $$Other item identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', 's', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', 't', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', 'y', $$CODEN designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', '7', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '762', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', $$Original Language Entry$$, $$Information concerning the publication in its original language when the target item is a translation (horizontal relationship). When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_765_ind_1', 'MARC 21 biblio field 765 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_765_ind_1', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_765_ind_1', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_765_ind_2', 'MARC 21 biblio field 765 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_765_ind_2', '#', $$Translation of$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_765_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'a', $$Main entry heading$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'b', $$Edition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'c', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'd', $$Place, publisher, and date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'g', $$Related parts$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'h', $$Physical description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'k', $$Series data for related item$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'm', $$Material-specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'o', $$Other item identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'r', $$Report number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 's', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 't', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'u', $$Standard Technical Report Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'y', $$CODEN designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', 'z', $$International Standard Book Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', '7', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '765', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', $$Translation Entry$$, $$Information concerning the publication in some other language other than the original when the target item is in the original language or is another translation (horizontal relationship). When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_767_ind_1', 'MARC 21 biblio field 767 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_767_ind_1', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_767_ind_1', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_767_ind_2', 'MARC 21 biblio field 767 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_767_ind_2', '#', $$Translated as$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_767_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'a', $$Main entry heading$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'b', $$Edition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'c', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'd', $$Place, publisher, and date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'g', $$Related parts$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'h', $$Physical description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'k', $$Series data for related item$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'm', $$Material-specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'o', $$Other item identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'r', $$Report number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 's', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 't', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'u', $$Standard Technical Report Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'y', $$CODEN designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', 'z', $$International Standard Book Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', '7', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '767', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', $$Supplement/Special Issue Entry$$, $$Information concerning the supplement or special issue associated with the target item but cataloged and/or input as a separate record (vertical relationship). When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_770_ind_1', 'MARC 21 biblio field 770 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_770_ind_1', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_770_ind_1', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_770_ind_2', 'MARC 21 biblio field 770 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_770_ind_2', '#', $$Has supplement$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_770_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'a', $$Main entry heading$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'b', $$Edition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'c', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'd', $$Place, publisher, and date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'g', $$Related parts$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'h', $$Physical description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'k', $$Series data for related item$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'm', $$Material-specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'o', $$Other item identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'r', $$Report number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 's', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 't', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'u', $$Standard Technical Report Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'y', $$CODEN designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', 'z', $$International Standard Book Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', '7', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '770', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', $$Supplement Parent Entry$$, $$Information concerning the related parent record when the target item is a single issue, supplement or special issue (vertical relationship) of the parent item. When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_772_ind_1', 'MARC 21 biblio field 772 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_772_ind_1', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_772_ind_1', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_772_ind_2', 'MARC 21 biblio field 772 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_772_ind_2', '#', $$Supplement to$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_772_ind_2', '0', $$Parent$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_772_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'a', $$Main entry heading$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'b', $$Edition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'c', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'd', $$Place, publisher, and date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'g', $$Related parts$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'h', $$Physical description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'k', $$Series data for related item$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'm', $$Material-specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'o', $$Other item identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'r', $$Report number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 's', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 't', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'u', $$Standard Technical Report Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'y', $$CODEN designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', 'z', $$International Standard Book Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', '7', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '772', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', $$Host Item Entry$$, $$Information concerning the host item for the constituent unit described in the record (vertical relationship). In the case of host items that are serial or multi-volume in nature, information in subfields $g and $q is necessary to point to the exact location of the component part within the bibliographic item.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_773_ind_1', 'MARC 21 biblio field 773 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_773_ind_1', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_773_ind_1', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_773_ind_2', 'MARC 21 biblio field 773 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_773_ind_2', '#', $$In$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_773_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'a', $$Main entry heading$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'b', $$Edition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'd', $$Place, publisher, and date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'g', $$Related parts$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'h', $$Physical description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'k', $$Series data for related item$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'm', $$Material-specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'o', $$Other item identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'p', $$Abbreviated title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'q', $$Enumeration and first page$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'r', $$Report number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 's', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 't', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'u', $$Standard Technical Report Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'y', $$CODEN designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', 'z', $$International Standard Book Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', '7', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '773', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', $$Constituent Unit Entry$$, $$Information concerning a constituent unit associated with a larger bibliographic unit (vertical relationship). When a note is generated from this field, the introductory term may be generated based on the field tag for display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_774_ind_1', 'MARC 21 biblio field 774 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_774_ind_1', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_774_ind_1', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_774_ind_2', 'MARC 21 biblio field 774 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_774_ind_2', '#', $$Constituent unit$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_774_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'a', $$Main entry heading$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'b', $$Edition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'c', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'd', $$Place, publisher, and date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'g', $$Related parts$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'h', $$Physical description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'k', $$Series data for related item$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'm', $$Material-specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'o', $$Other item identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'r', $$Report number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 's', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 't', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'u', $$Standard Technical Report Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'y', $$CODEN designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', 'z', $$International Standard Book Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', '7', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '774', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', $$Other Edition Entry$$, $$Entry for another available edition of the target item (horizontal relationship). When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_775_ind_1', 'MARC 21 biblio field 775 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_775_ind_1', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_775_ind_1', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_775_ind_2', 'MARC 21 biblio field 775 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_775_ind_2', '#', $$Other edition available$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_775_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'a', $$Main entry heading$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'b', $$Edition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'c', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'd', $$Place, publisher, and date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'e', $$Language code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'f', $$Country code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'g', $$Related parts$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'h', $$Physical description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'k', $$Series data for related item$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'm', $$Material-specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'o', $$Other item identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'r', $$Report number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 's', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 't', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'u', $$Standard Technical Report Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'y', $$CODEN designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', 'z', $$International Standard Book Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', '7', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '775', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', $$Additional Physical Form Entry$$, $$Information concerning another available physical form of the target item (horizontal relationship). When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_776_ind_1', 'MARC 21 biblio field 776 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_776_ind_1', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_776_ind_1', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_776_ind_2', 'MARC 21 biblio field 776 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_776_ind_2', '#', $$Available in another form$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_776_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'a', $$Main entry heading$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'b', $$Edition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'c', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'd', $$Place, publisher, and date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'g', $$Related parts$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'h', $$Physical description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'k', $$Series data for related item$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'm', $$Material-specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'o', $$Other item identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'r', $$Report number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 's', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 't', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'u', $$Standard Technical Report Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'y', $$CODEN designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', 'z', $$International Standard Book Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', '7', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '776', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', $$Issued With Entry$$, $$Information concerning the publication that is separately cataloged but that is issued with or included in the target item (horizontal relationship). When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_777_ind_1', 'MARC 21 biblio field 777 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_777_ind_1', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_777_ind_1', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_777_ind_2', 'MARC 21 biblio field 777 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_777_ind_2', '#', $$Issued with$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_777_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 'a', $$Main entry heading$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 'b', $$Edition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 'c', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 'd', $$Place, publisher, and date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 'g', $$Related parts$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 'h', $$Physical description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 'k', $$Series data for related item$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 'm', $$Material-specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 'o', $$Other item identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 's', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 't', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', 'y', $$CODEN designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', '7', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '777', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', $$Preceding Entry$$, $$Information concerning the immediate predecessor of the target item (chronological relationship). When a note is generated from this field, the introductory term or phrase may be generated based on the value in the second indicator position for display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_780_ind_1', 'MARC 21 biblio field 780 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_780_ind_1', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_780_ind_1', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_780_ind_2', 'MARC 21 biblio field 780 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_780_ind_2', '0', $$Continues$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_780_ind_2', '1', $$Continues in part$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_780_ind_2', '2', $$Supersedes$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_780_ind_2', '3', $$Supersedes in part$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_780_ind_2', '4', $$Formed by the union of ... and ...$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_780_ind_2', '5', $$Absorbed$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_780_ind_2', '6', $$Absorbed in part$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_780_ind_2', '7', $$Separated from$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'a', $$Main entry heading$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'b', $$Edition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'c', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'd', $$Place, publisher, and date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'g', $$Related parts$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'h', $$Physical description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'k', $$Series data for related item$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'm', $$Material-specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'o', $$Other item identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'r', $$Report number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 's', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 't', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'u', $$Standard Technical Report Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'y', $$CODEN designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', 'z', $$International Standard Book Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', '7', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '780', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', $$Succeeding Entry$$, $$Information concerning the immediate successor to the target item (chronological relationship). When a note is generated from this field, the introductory phrase may be generated based on the value in the second indicator position for display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_785_ind_1', 'MARC 21 biblio field 785 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_785_ind_1', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_785_ind_1', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_785_ind_2', 'MARC 21 biblio field 785 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_785_ind_2', '0', $$Continued by$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_785_ind_2', '1', $$Continued in part by$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_785_ind_2', '2', $$Superseded by$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_785_ind_2', '3', $$Superseded in part by$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_785_ind_2', '4', $$Absorbed by$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_785_ind_2', '5', $$Absorbed in part by$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_785_ind_2', '6', $$Split into ... and ...$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_785_ind_2', '7', $$Merged with ... to form ...$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_785_ind_2', '8', $$Changed back to$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'a', $$Main entry heading$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'b', $$Edition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'c', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'd', $$Place, publisher, and date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'g', $$Related parts$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'h', $$Physical description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'k', $$Series data for related item$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'm', $$Material-specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'o', $$Other item identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'r', $$Report number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 's', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 't', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'u', $$Standard Technical Report Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'y', $$CODEN designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', 'z', $$International Standard Book Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', '7', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '785', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', $$Data Source Entry$$, $$Information pertaining to a data source to which the described item is related. It may contain information about other files, printed sources, or collection procedures.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_786_ind_1', 'MARC 21 biblio field 786 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_786_ind_1', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_786_ind_1', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_786_ind_2', 'MARC 21 biblio field 786 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_786_ind_2', '#', $$Data source$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_786_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'a', $$Main entry heading$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'b', $$Edition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'c', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'd', $$Place, publisher, and date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'g', $$Related parts$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'h', $$Physical description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'j', $$Period of content$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'k', $$Series data for related item$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'm', $$Material-specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'o', $$Other item identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'p', $$Abbreviated title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'r', $$Report number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 's', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 't', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'u', $$Standard Technical Report Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'v', $$Source Contribution$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'y', $$CODEN designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', 'z', $$International Standard Book Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', '7', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '786', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', $$Other Relationship Entry$$, $$Information concerning the work related to the target item when the relationship does not fit any of those defined in fields 760-785.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_787_ind_1', 'MARC 21 biblio field 787 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_787_ind_1', '0', $$Display note$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_787_ind_1', '1', $$Do not display note$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_787_ind_2', 'MARC 21 biblio field 787 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_787_ind_2', '#', $$Related item$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_787_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'a', $$Main entry heading$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'b', $$Edition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'c', $$Qualifying information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'd', $$Place, publisher, and date of publication$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'g', $$Related parts$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'h', $$Physical description$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'k', $$Series data for related item$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'm', $$Material-specific details$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'n', $$Note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'o', $$Other item identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'r', $$Report number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 's', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 't', $$Title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'u', $$Standard Technical Report Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'y', $$CODEN designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', 'z', $$International Standard Book Number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', '7', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '787', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', $$Series Added Entry-Personal Name$$, $$Author/title series added entry in which the author portion is a personal name.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_800_ind_1', 'MARC 21 biblio field 800 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_800_ind_1', '0', $$Forename$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_800_ind_1', '1', $$Surname$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_800_ind_1', '3', $$Family name$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_800_ind_2', 'MARC 21 biblio field 800 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_800_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'a', $$Personal name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'b', $$Numeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'c', $$Titles and other words associated with a name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'd', $$Dates associated with a name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'j', $$Attribution qualifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'q', $$Fuller form of name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'u', $$Affiliation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'v', $$Volume/sequential designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'w', $$Bibliographic record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '800', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', $$Series Added Entry-Corporate Name$$, $$Author/title series added entry in which the author portion is a corporate name.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_810_ind_1', 'MARC 21 biblio field 810 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_810_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_810_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_810_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_810_ind_2', 'MARC 21 biblio field 810 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_810_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'a', $$Corporate name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'b', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'd', $$Date of meeting or treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'u', $$Affiliation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'v', $$Volume/sequential designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'w', $$Bibliographic record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '810', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', $$Series Added Entry-Meeting Name$$, $$Author/title series added entry in which the author portion is a meeting name or conference name.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_811_ind_1', 'MARC 21 biblio field 811 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_811_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_811_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_811_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_811_ind_2', 'MARC 21 biblio field 811 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_811_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'a', $$Meeting name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'd', $$Date of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'e', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'j', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'q', $$Name of meeting following jurisdiction name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'u', $$Affiliation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'v', $$Volume/sequential designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'w', $$Bibliographic record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '811', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', $$Series Added Entry-Uniform Title$$, $$Series added entry consisting of a series title alone.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_830_ind_1', 'MARC 21 biblio field 830 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_830_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_830_ind_2', 'MARC 21 biblio field 830 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_830_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_830_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_830_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_830_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_830_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_830_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_830_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_830_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_830_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_830_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 'a', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 'd', $$Date of treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 'v', $$Volume/sequential designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 'w', $$Bibliographic record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', 'x', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '830', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '841', $$Holdings Coded Data Values$$, $$When holdings data are embedded in a bibliographic record, this field contains certain coded information that would apply to the holdings information if it were in a separate holdings record in field 008 (Fixed-Length Data Elements).$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_841_ind_1', 'MARC 21 biblio field 841 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_841_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_841_ind_2', 'MARC 21 biblio field 841 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_841_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '841', 'a', $$Type of record$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '841', 'b', $$Fixed-length data elements$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '841', 'e', $$Encoding level$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '842', $$Textual Physical Form Designator$$, $$Designation in textual form of the physical form of the item. The physical form designator specifies the physical medium or form, or type of material of the unit held. The general physical form designator in coded form is recorded in field 007 (Physical Description Fixed Field).$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_842_ind_1', 'MARC 21 biblio field 842 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_842_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_842_ind_2', 'MARC 21 biblio field 842 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_842_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '842', 'a', $$Textual physical form designator$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '842', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '842', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '843', $$Reproduction Note$$, $$Description of an item that is a reproduction of original materials. Used when an institution chooses to have the main portion of the bibliographic record description reflect the original and the notes in field 843 reflect information about the copy.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_843_ind_1', 'MARC 21 biblio field 843 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_843_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_843_ind_2', 'MARC 21 biblio field 843 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_843_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '843', 'a', $$Type of reproduction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '843', 'b', $$Place of reproduction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '843', 'c', $$Agency responsible for reproduction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '843', 'd', $$Date of reproduction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '843', 'e', $$Physical description of reproduction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '843', 'f', $$Series statement of reproduction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '843', 'm', $$Dates of publication and/or sequential designation of issues reproduced$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '843', 'n', $$Note about reproduction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '843', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '843', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '843', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '843', '7', $$Fixed-length data elements of reproduction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '843', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '844', $$Name of Unit$$, $$Bibliographic title or a supplied designation describing a basic bibliographic unit, supplementary material, or an index. A supplement or index designation used as a caption is contained in fields 853-855 (Captions and Pattern), subfield $a-$h (Enumeration captions).$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_844_ind_1', 'MARC 21 biblio field 844 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_844_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_844_ind_2', 'MARC 21 biblio field 844 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_844_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '844', 'a', $$Name of unit$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '844', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '844', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '845', $$Terms Governing Use and Reproduction Note$$, $$Terms governing the use and reproduction of a bibliographic item when the holding organization will lend (008/20, Lending policy, code a) and reproduce (008/21, Reproduction policy, code a) the item.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_845_ind_1', 'MARC 21 biblio field 845 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_845_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_845_ind_2', 'MARC 21 biblio field 845 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_845_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '845', 'a', $$Terms governing use and reproduction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '845', 'b', $$Jurisdiction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '845', 'c', $$Authorization$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '845', 'd', $$Authorized users$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '845', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '845', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '845', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '845', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '845', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '850', $$Holding Institution$$, $$Information concerning holdings of the described item by the specified institution.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_850_ind_1', 'MARC 21 biblio field 850 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_850_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_850_ind_2', 'MARC 21 biblio field 850 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_850_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '850', 'a', $$Holding institution$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '850', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', $$Location$$, $$Identifies the organization holding the item or from which it is available. May also contain detailed information about how to locate the item in a collection.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_852_ind_1', 'MARC 21 biblio field 852 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_852_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_852_ind_1', '0', $$Library of Congress classification$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_852_ind_1', '1', $$Dewey Decimal classification$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_852_ind_1', '2', $$National Library of Medicine classification$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_852_ind_1', '3', $$Superintendent of Documents classification$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_852_ind_1', '4', $$Shelving control number$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_852_ind_1', '5', $$Title$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_852_ind_1', '6', $$Shelved separately$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_852_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_852_ind_1', '8', $$Other scheme$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_852_ind_2', 'MARC 21 biblio field 852 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_852_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_852_ind_2', '0', $$Not enumeration$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_852_ind_2', '1', $$Primary enumeration$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_852_ind_2', '2', $$Alternative enumeration$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'a', $$Location$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'b', $$Sublocation or collection$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'c', $$Shelving location$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'd', $$Former shelving location$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'e', $$Address$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'f', $$Coded location qualifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'g', $$Non-coded location qualifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'h', $$Classification part$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'i', $$Item part$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'j', $$Shelving control number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'k', $$Call number prefix$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'l', $$Shelving form of title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'm', $$Call number suffix$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'n', $$Country code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'p', $$Piece designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'q', $$Piece physical condition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 's', $$Copyright article-fee code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 't', $$Copy number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', '2', $$Source of classification or shelving scheme$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '852', '8', $$Sequence number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', $$Captions and Pattern - Basic Bibliographic Unit$$, $$Captions that identify the enumeration and chronology levels and codes that define the publication pattern of the holdings described in the 863-865 Enumeration and Chronology fields. Any related 853-855 and 863-865 fields are linked by a number in subfield $8 (Field link and sequence number).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_853_ind_1', 'MARC 21 biblio field 853 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_853_ind_1', '0', $$Cannot compress or expand$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_853_ind_1', '1', $$Can compress but not expand$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_853_ind_1', '2', $$Can compress or expand$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_853_ind_1', '3', $$Unknown$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_853_ind_2', 'MARC 21 biblio field 853 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_853_ind_2', '0', $$Captions verified; all levels present$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_853_ind_2', '1', $$Captions verified; all levels may not be present$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_853_ind_2', '2', $$Captions unverified; all levels present$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_853_ind_2', '3', $$Captions unverified; all levels may not be present$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'a', $$First level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'b', $$Second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'c', $$Third level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'd', $$Fourth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'e', $$Fifth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'f', $$Sixth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'g', $$Alternative numbering scheme, first level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'h', $$Alternative numbering scheme, second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'i', $$First level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'j', $$Second level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'k', $$Third level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'l', $$Fourth level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'm', $$Alternative numbering scheme, chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'n', $$Pattern note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'p', $$Number of pieces per issuance$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 't', $$Copy$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'u', $$Bibliographic units per next higher level$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'v', $$Numbering continuity$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'w', $$Frequency$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'x', $$Calendar change$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'y', $$Regularity pattern$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', 'z', $$Numbering scheme$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', '2', $$Source of caption abbreviation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', '3', $$Materials specified$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '853', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', $$Captions and Pattern - Supplementary Material$$, $$Captions that identify the enumeration and chronology levels and codes that define the publication pattern of the holdings described in the 863-865 Enumeration and Chronology fields. Any related 853-855 and 863-865 fields are linked by a number in subfield $8 (Field link and sequence number).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_854_ind_1', 'MARC 21 biblio field 854 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_854_ind_1', '0', $$Cannot compress or expand$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_854_ind_1', '1', $$Can compress but not expand$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_854_ind_1', '2', $$Can compress or expand$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_854_ind_1', '3', $$Unknown$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_854_ind_2', 'MARC 21 biblio field 854 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_854_ind_2', '0', $$Captions verified; all levels present$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_854_ind_2', '1', $$Captions verified; all levels may not be present$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_854_ind_2', '2', $$Captions unverified; all levels present$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_854_ind_2', '3', $$Captions unverified; all levels may not be present$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'a', $$First level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'b', $$Second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'c', $$Third level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'd', $$Fourth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'e', $$Fifth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'f', $$Sixth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'g', $$Alternative numbering scheme, first level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'h', $$Alternative numbering scheme, second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'i', $$First level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'j', $$Second level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'k', $$Third level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'l', $$Fourth level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'm', $$Alternative numbering scheme, chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'n', $$Pattern note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'p', $$Number of pieces per issuance$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 't', $$Copy$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'u', $$Bibliographic units per next higher level$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'v', $$Numbering continuity$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'w', $$Frequency$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'x', $$Calendar change$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'y', $$Regularity pattern$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', 'z', $$Numbering scheme$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', '2', $$Source of caption abbreviation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', '3', $$Materials specified$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '854', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', $$Captions and Pattern - Indexes$$, $$Captions that identify the enumeration and chronology levels and codes that define the publication pattern of the holdings described in the 863-865 Enumeration and Chronology fields. Any related 853-855 and 863-865 fields are linked by a number in subfield $8 (Field link and sequence number).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_855_ind_1', 'MARC 21 biblio field 855 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_855_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_855_ind_2', 'MARC 21 biblio field 855 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_855_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'a', $$First level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'b', $$Second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'c', $$Third level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'd', $$Fourth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'e', $$Fifth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'f', $$Sixth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'g', $$Alternative numbering scheme, first level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'h', $$Alternative numbering scheme, second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'i', $$First level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'j', $$Second level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'k', $$Third level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'l', $$Fourth level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'm', $$Alternative numbering scheme, chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'n', $$Pattern note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'p', $$Number of pieces per issuance$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 't', $$Copy$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'u', $$Bibliographic units per next higher level$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'v', $$Numbering continuity$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'w', $$Frequency$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'x', $$Calendar change$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'y', $$Regularity pattern$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', 'z', $$Numbering scheme$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', '2', $$Source of caption abbreviation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', '3', $$Materials specified$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '855', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', $$Electronic Location and Access$$, $$Information needed to locate and access an electronic resource. The field may be used in a bibliographic record for a resource when that resource or a subset of it is available electronically. In addition, it may be used to locate and access an electronic version of a non-electronic resource described in the bibliographic record or a related electronic resource.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_856_ind_1', 'MARC 21 biblio field 856 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_856_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_856_ind_1', '0', $$Email$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_856_ind_1', '1', $$FTP$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_856_ind_1', '2', $$Remote login (Telnet)$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_856_ind_1', '3', $$Dial-up$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_856_ind_1', '4', $$HTTP$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_856_ind_1', '7', $$Method specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_856_ind_2', 'MARC 21 biblio field 856 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_856_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_856_ind_2', '0', $$Resource$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_856_ind_2', '1', $$Version of resource$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_856_ind_2', '2', $$Related resource$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_856_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'a', $$Host name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'b', $$Access number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'c', $$Compression information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'd', $$Path$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'f', $$Electronic name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'h', $$Processor of request$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'i', $$Instruction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'j', $$Bits per second$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'k', $$Password$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'l', $$Logon$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'm', $$Contact for access assistance$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'n', $$Name of location of host$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'o', $$Operating system$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'p', $$Port$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'q', $$Electronic format type$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'r', $$Settings$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 's', $$File size$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 't', $$Terminal emulation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'v', $$Hours access method available$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'y', $$Link text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', '2', $$Access method$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '856', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', $$Enumeration and Chronology - Basic Bibliographic Unit$$, $$Description of the holdings of a bibliographic item in the collections of the reporting organization. The captions that identify the enumeration and chronology levels and the codes that define the publication pattern of the holdings are contained in the Captions and Pattern fields (853-855) that are linked to the 863-865 fields by a number in subfield $8 (Field link and sequence number).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_863_ind_1', 'MARC 21 biblio field 863 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_863_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_863_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_863_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_863_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_863_ind_2', 'MARC 21 biblio field 863 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_863_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_863_ind_2', '0', $$Compressed$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_863_ind_2', '1', $$Uncompressed$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_863_ind_2', '2', $$Compressed, use textual display$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_863_ind_2', '3', $$Uncompressed, use textual display$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_863_ind_2', '4', $$Item(s) not published$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'a', $$First level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'b', $$Second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'c', $$Third level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'd', $$Fourth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'e', $$Fifth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'f', $$Sixth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'g', $$Alternative numbering scheme, first level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'h', $$Alternative numbering scheme, second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'i', $$First level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'j', $$Second level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'k', $$Third level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'l', $$Fourth level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'm', $$Alternative numbering scheme, chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'n', $$Converted Gregorian year$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'p', $$Piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'q', $$Piece physical condition$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 's', $$Copyright article-fee code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 't', $$Copy number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'v', $$Issuing date$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'w', $$Break indicator$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '863', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', $$Enumeration and Chronology - Supplementary Material$$, $$Description of the holdings of a bibliographic item in the collections of the reporting organization. The captions that identify the enumeration and chronology levels and the codes that define the publication pattern of the holdings are contained in the Captions and Pattern fields (853-855) that are linked to the 863-865 fields by a number in subfield $8 (Field link and sequence number).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_864_ind_1', 'MARC 21 biblio field 864 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_864_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_864_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_864_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_864_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_864_ind_2', 'MARC 21 biblio field 864 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_864_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_864_ind_2', '0', $$Compressed$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_864_ind_2', '1', $$Uncompressed$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_864_ind_2', '2', $$Compressed, use textual display$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_864_ind_2', '3', $$Uncompressed, use textual display$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_864_ind_2', '4', $$Item(s) not published$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'a', $$First level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'b', $$Second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'c', $$Third level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'd', $$Fourth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'e', $$Fifth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'f', $$Sixth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'g', $$Alternative numbering scheme, first level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'h', $$Alternative numbering scheme, second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'i', $$First level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'j', $$Second level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'k', $$Third level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'l', $$Fourth level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'm', $$Alternative numbering scheme, chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'n', $$Converted Gregorian year$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'p', $$Piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'q', $$Piece physical condition$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 's', $$Copyright article-fee code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 't', $$Copy number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'v', $$Issuing date$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'w', $$Break indicator$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '864', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', $$Enumeration and Chronology - Indexes$$, $$Description of the holdings of a bibliographic item in the collections of the reporting organization. The captions that identify the enumeration and chronology levels and the codes that define the publication pattern of the holdings are contained in the Captions and Pattern fields (853-855) that are linked to the 863-865 fields by a number in subfield $8 (Field link and sequence number).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_865_ind_1', 'MARC 21 biblio field 865 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_865_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_865_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_865_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_865_ind_2', 'MARC 21 biblio field 865 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_865_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_865_ind_2', '1', $$Uncompressed$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_865_ind_2', '3', $$Uncompressed, use textual display$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'a', $$First level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'b', $$Second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'c', $$Third level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'd', $$Fourth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'e', $$Fifth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'f', $$Sixth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'g', $$Alternative numbering scheme, first level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'h', $$Alternative numbering scheme, second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'i', $$First level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'j', $$Second level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'k', $$Third level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'l', $$Fourth level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'm', $$Alternative numbering scheme, chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'n', $$Converted Gregorian year$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'p', $$Piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'q', $$Piece physical condition$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 's', $$Copyright article-fee code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 't', $$Copy number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'v', $$Issuing date$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'w', $$Break indicator$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '865', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '866', $$Textual Holdings - Basic Bibliographic Unit$$, $$Textual description which may include both the captions and enumeration and chronology for the holdings of a bibliographic item in the collections of the reporting organization. These fields are normally not used in holdings for single-part items. They may be used the coded 853-855 Captions and Pattern and 863-865 Enumeration and Chronology fields for multipart and serial items when those fields cannot be used adequately to describe the holdings. The 866-868 fields may also be used an Enumeration and Chronology field and any related Captions and Pattern field to record and generate an alternative display for all or part of the enumeration and chronology and captions and pattern fields.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_866_ind_1', 'MARC 21 biblio field 866 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_866_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_866_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_866_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_866_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_866_ind_2', 'MARC 21 biblio field 866 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_866_ind_2', '0', $$Non-standard$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_866_ind_2', '1', $$ANSI/NISO Z39.71 or ISO 10324$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_866_ind_2', '2', $$ANSI Z39.42$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_866_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '866', 'a', $$Textual holdings$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '866', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '866', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '866', '2', $$Source of notation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '866', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '866', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '867', $$Textual Holdings - Supplementary Material$$, $$Textual description which may include both the captions and enumeration and chronology for the holdings of a bibliographic item in the collections of the reporting organization. These fields are normally not used in holdings for single-part items. They may be used the coded 853-855 Captions and Pattern and 863-865 Enumeration and Chronology fields for multipart and serial items when those fields cannot be used adequately to describe the holdings. The 866-868 fields may also be used an Enumeration and Chronology field and any related Captions and Pattern field to record and generate an alternative display for all or part of the enumeration and chronology and captions and pattern fields.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_867_ind_1', 'MARC 21 biblio field 867 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_867_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_867_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_867_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_867_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_867_ind_2', 'MARC 21 biblio field 867 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_867_ind_2', '0', $$Non-standard$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_867_ind_2', '1', $$ANSI/NISO Z39.71 or ISO 10324$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_867_ind_2', '2', $$ANSI Z39.42$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_867_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '867', 'a', $$Textual holdings$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '867', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '867', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '867', '2', $$Source of notation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '867', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '867', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '868', $$Textual Holdings - Indexes$$, $$Textual description which may include both the captions and enumeration and chronology for the holdings of a bibliographic item in the collections of the reporting organization. These fields are normally not used in holdings for single-part items. They may be used the coded 853-855 Captions and Pattern and 863-865 Enumeration and Chronology fields for multipart and serial items when those fields cannot be used adequately to describe the holdings. The 866-868 fields may also be used an Enumeration and Chronology field and any related Captions and Pattern field to record and generate an alternative display for all or part of the enumeration and chronology and captions and pattern fields.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_868_ind_1', 'MARC 21 biblio field 868 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_868_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_868_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_868_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_868_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_868_ind_2', 'MARC 21 biblio field 868 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_868_ind_2', '0', $$Non-standard$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_868_ind_2', '1', $$ANSI/NISO Z39.71 or ISO 10324$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_868_ind_2', '2', $$ANSI Z39.42$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_868_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '868', 'a', $$Textual holdings$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '868', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '868', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '868', '2', $$Source of notation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '868', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '868', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', $$Item Information - Basic Bibliographic Unit$$, $$Item level information about the pieces to the item specified in the holdings record. They contain various data elements that it may be desirable to record for specific items for use in acquisition or circulation applications, among others.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_876_ind_1', 'MARC 21 biblio field 876 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_876_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_876_ind_2', 'MARC 21 biblio field 876 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_876_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', 'a', $$Internal item number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', 'b', $$Invalid or canceled internal item number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', 'c', $$Cost$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', 'd', $$Date acquired$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', 'e', $$Source of acquisition$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', 'h', $$Use restrictions$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', 'j', $$Item status$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', 'l', $$Temporary location$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', 'p', $$Piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', 'r', $$Invalid or canceled piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', 't', $$Copy number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', '3', $$Materials specified$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '876', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', $$Item Information - Supplementary Material$$, $$Item level information about the pieces to the item specified in the holdings record. They contain various data elements that it may be desirable to record for specific items for use in acquisition or circulation applications, among others.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_877_ind_1', 'MARC 21 biblio field 877 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_877_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_877_ind_2', 'MARC 21 biblio field 877 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_877_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', 'a', $$Internal item number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', 'b', $$Invalid or canceled internal item number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', 'c', $$Cost$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', 'd', $$Date acquired$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', 'e', $$Source of acquisition$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', 'h', $$Use restrictions$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', 'j', $$Item status$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', 'l', $$Temporary location$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', 'p', $$Piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', 'r', $$Invalid or canceled piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', 't', $$Copy number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', '3', $$Materials specified$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '877', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', $$Item Information - Indexes$$, $$Item level information about the pieces to the item specified in the holdings record. They contain various data elements that it may be desirable to record for specific items for use in acquisition or circulation applications, among others.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_878_ind_1', 'MARC 21 biblio field 878 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_878_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_878_ind_2', 'MARC 21 biblio field 878 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_878_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', 'a', $$Internal item number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', 'b', $$Invalid or canceled internal item number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', 'c', $$Cost$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', 'd', $$Date acquired$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', 'e', $$Source of acquisition$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', 'h', $$Use restrictions$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', 'j', $$Item status$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', 'l', $$Temporary location$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', 'p', $$Piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', 'r', $$Invalid or canceled piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', 't', $$Copy number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', '3', $$Materials specified$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '878', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '880', $$Alternate Graphic Representation$$, $$Fully content-designated representation, in a different script, of another field in the same record. Field 880 is linked to the associated regular field by subfield $6 (Linkage). A subfield $6 in the associated field also links that field to the 880 field. The data in field 880 may be in more than one script.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '880', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '882', $$Replacement Record Information$$, $$Information about the replacement bibliographic record in a deleted record. The replacement title(s) may be contained in subfield(s) $a.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_882_ind_1', 'MARC 21 biblio field 882 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_882_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_882_ind_2', 'MARC 21 biblio field 882 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_882_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '882', 'a', $$Replacement title$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '882', 'i', $$Explanatory text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '882', 'w', $$Replacement bibliographic record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '882', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '882', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '886', $$Foreign MARC Information Field$$, $$Used when converting foreign MARC records into the MARC format. Contains data from a foreign MARC record for which there is no corresponding MARC field.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_886_ind_1', 'MARC 21 biblio field 886 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_886_ind_1', '0', $$Leader$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_886_ind_1', '1', $$Variable control fields (002-009)$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_886_ind_1', '2', $$Variable data fields (010-999)$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_886_ind_2', 'MARC 21 biblio field 886 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_886_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '886', 'a', $$Tag of the foreign MARC field$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '886', 'b', $$Content of the foreign MARC field$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '886', '2', $$Source of data$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'biblio', '887', $$Non-MARC Information Field$$, $$Data from non-MARC records for which there are no corresponding MARC 21 fields. Used when converting non-MARC records into the MARC 21 format.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_887_ind_1', 'MARC 21 biblio field 887 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_887_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_biblio_887_ind_2', 'MARC 21 biblio field 887 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_887_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '887', 'a', $$Content of non-MARC field$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'biblio', '887', '2', $$Source of data$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '001', $$Control Number$$, $$Control number assigned by the organization creating, using, or distributing the record.$$, +TRUE, FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '003', $$Control Number Identifier$$, $$MARC code for the agency whose system control number is contained in field 001 (Control Number).$$, +TRUE, FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '005', $$Date and Time of Latest Transaction$$, $$Sixteen characters that specify the date and time of the latest record transaction and serve as a version identifier for the record. The data and time are recorded according to (ISO 8601) in the pattern and .$$, +TRUE, FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '008', $$Fixed-Length Data Elements$$, $$Forty character positions (00-39) that contain positionally-defined data elements that provide coded information about the record as a whole or about special aspects of the 1XX heading or 4XX/5XX tracing fields. Undefined character positions contain a blank (#). All defined character positions must contain a defined code; for some 008 positions, this may be the fill character (|). The fill character may be used (in certain character positions) when a cataloging organization makes no attempt to code the character position. Field 008 is not repeatable.$$, +TRUE, FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '010', $$Library of Congress Control Number$$, $$Unique number assigned to a record by the Library of Congress (LC) or a cooperative cataloging partner contributing authority records to the Name Authority Cooperative Program (NACO) database. The field is also assigned to records created by LC for the Library of Congress Subject Headings (LCSH).$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_010_ind_1', 'MARC 21 authority field 010 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_010_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_010_ind_2', 'MARC 21 authority field 010 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_010_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '010', 'a', $$LC control number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '010', 'z', $$Canceled/invalid LC control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '010', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '014', $$Link to Bibliographic Record for Serial or Multipart Item$$, $$Control number from field 001 of a MARC 21 bibliographic record for a serial or a multipart item that is cataloged as a set.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_014_ind_1', 'MARC 21 authority field 014 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_014_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_014_ind_2', 'MARC 21 authority field 014 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_014_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '014', 'a', $$Control number of related bibliographic record$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '014', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '014', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '016', $$National Bibliographic Agency Control Number$$, $$Unique numbers that have been assigned to a record by a national bibliographic agency other than the Library of Congress (Library of Congress control numbers are recorded in ).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_016_ind_1', 'MARC 21 authority field 016 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_016_ind_1', '#', $$Library and Archives Canada$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_016_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_016_ind_2', 'MARC 21 authority field 016 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_016_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '016', 'a', $$Record control number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '016', 'z', $$Canceled or invalid record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '016', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '016', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '020', $$International Standard Book Number$$, $$International Standard Book Number (ISBN), terms of availability, and any canceled/invalid ISBN copied from field 020 of a MARC bibliographic record for a multipart item that is cataloged as a set.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_020_ind_1', 'MARC 21 authority field 020 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_020_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_020_ind_2', 'MARC 21 authority field 020 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_020_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '020', 'a', $$International Standard Book Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '020', 'c', $$Terms of availability$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '020', 'z', $$Canceled/invalid ISBN$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '020', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '020', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '022', $$International Standard Serial Number$$, $$International Standard Serial Number (ISSN) and/or any incorrect and canceled ISSNs copied from field 022 of a MARC 21 bibliographic record for a continuing resource.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_022_ind_1', 'MARC 21 authority field 022 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_022_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_022_ind_2', 'MARC 21 authority field 022 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_022_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '022', 'a', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '022', 'l', $$ISSN-L$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '022', 'm', $$Canceled ISSN-L$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '022', 'y', $$Incorrect ISSN$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '022', 'z', $$Canceled ISSN$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '022', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '022', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '024', $$Other Standard Identifier$$, $$Standard number or code associated with the entity named in the 1XX field which cannot be accommodated in another field (e.g., fields 020 (International Standard Book Number) and 022 (International Standard Serial Number)). The source of the standard number or code is identified in subfield $2 (Source of number or code).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_024_ind_1', 'MARC 21 authority field 024 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_024_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_024_ind_1', '8', $$Unspecified type of standard number or code$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_024_ind_2', 'MARC 21 authority field 024 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_024_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '024', 'a', $$Standard number or code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '024', 'c', $$Terms of availability$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '024', 'd', $$Additional codes following the standard number or code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '024', 'z', $$Canceled/invalid standard number or code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '024', '2', $$Source of number or code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '024', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '024', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', $$Musical Incipits Information$$, $$Coded data representing the musical incipit for music using established notation schemes that employ ordinary ASCII symbols. Used in an established heading record primarily to identify music manuscripts, but can be applied to any material containing music.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_031_ind_1', 'MARC 21 authority field 031 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_031_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_031_ind_2', 'MARC 21 authority field 031 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_031_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 'b', $$Number of movement$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 'c', $$Number of excerpt$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 'd', $$Caption or heading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 'e', $$Role$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 'g', $$Clef$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 'm', $$Voice/instrument$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 'n', $$Key signature$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 'o', $$Time signature$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 'p', $$Musical notation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 'q', $$General note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 'r', $$Key or mode$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 's', $$Coded validity note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 't', $$Text incipit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 'y', $$Link text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', '2', $$System code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '031', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', $$Coded Cartographic Mathematical Data$$, $$Coded form of the cartographic mathematical data relevant to the entity described in the authority record. The data that is recorded usually derives from authoritative sources.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_034_ind_1', 'MARC 21 authority field 034 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_034_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_034_ind_2', 'MARC 21 authority field 034 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_034_ind_2', '#', $$Not applicable$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_034_ind_2', '0', $$Outer ring$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_034_ind_2', '1', $$Exclusion ring$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', 'd', $$Coordinates$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', 'e', $$Coordinates$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', 'f', $$Coordinates$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', 'g', $$Coordinates$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', 'j', $$Declination$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', 'k', $$Declination$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', 'm', $$Right ascension$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', 'n', $$Right ascension$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', 'p', $$Equinox$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', 'r', $$Distance from earth$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', 's', $$G-ring latitude$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', 't', $$G-ring longitude$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', 'x', $$Beginning date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', 'y', $$Ending date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', 'z', $$Name of extraterrestrial body$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '034', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '035', $$System Control Number$$, $$Control number for the record in a system other than the one whose control number is contained in (Control Number), (Library of Congress Control Number), or (National Bibliographic Agency Control Number).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_035_ind_1', 'MARC 21 authority field 035 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_035_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_035_ind_2', 'MARC 21 authority field 035 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_035_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '035', 'a', $$System control number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '035', 'z', $$Canceled/invalid system control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '035', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '035', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '040', $$Cataloging Source$$, $$MARC code or the name of the organization(s) that created the original authority record, assigned MARC content designation and transcribed the record into machine-readable form, or modified an existing MARC record. These MARC codes and the code in 008/39 (Cataloging source) specify the parties responsible for content, content designation, and transcription of an the authority record. See: .$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_040_ind_1', 'MARC 21 authority field 040 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_040_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_040_ind_2', 'MARC 21 authority field 040 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_040_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '040', 'a', $$Original cataloging agency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '040', 'b', $$Language of cataloging$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '040', 'c', $$Transcribing agency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '040', 'd', $$Modifying agency$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '040', 'e', $$Description conventions$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '040', 'f', $$Subject heading/thesaurus conventions$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '040', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '040', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '042', $$Authentication Code$$, $$One or more authentication codes indicating that the record, existing in a national database, has been reviewed in a specific way. The codes are associated with specifically designated authentication agencies.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_042_ind_1', 'MARC 21 authority field 042 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_042_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_042_ind_2', 'MARC 21 authority field 042 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_042_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '042', 'a', $$Authentication code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '043', $$Geographic Area Code$$, $$Geographic area codes (GAC) associated with the 1XX heading in an established heading record or a subdivision record. Source of the code in subfield $a is . The source of a local code in subfield $b is indicated in subfield $2. The source of codes in subfield $c is , .$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_043_ind_1', 'MARC 21 authority field 043 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_043_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_043_ind_2', 'MARC 21 authority field 043 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_043_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '043', 'a', $$Geographic area code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '043', 'b', $$Local GAC code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '043', 'c', $$ISO code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '043', '2', $$Source of local code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '043', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '043', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '045', $$Time Period of Heading$$, $$Time period code (subfield $a) and/or a formatted time period (subfield $b or $c) associated with a 15X heading in an established heading record or a 18X heading in a subdivision record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_045_ind_1', 'MARC 21 authority field 045 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_045_ind_1', '#', $$Subfield $b or $c not present$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_045_ind_1', '0', $$Single date/time$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_045_ind_1', '1', $$Multiple single dates/times$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_045_ind_1', '2', $$Range of dates/times$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_045_ind_2', 'MARC 21 authority field 045 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_045_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '045', 'a', $$Time period code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '045', 'b', $$Formatted 9999 B.C. through C.E. time period$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '045', 'c', $$Formatted pre-9999 B.C. time period$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '045', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '045', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '046', $$Special Coded Dates$$, $$Dates that are associated with the entity described in the record. These include:$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_046_ind_1', 'MARC 21 authority field 046 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_046_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_046_ind_2', 'MARC 21 authority field 046 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_046_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '046', 'f', $$Birth date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '046', 'g', $$Death date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '046', 'k', $$Beginning or single date created$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '046', 'l', $$Ending date created$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '046', 's', $$Start period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '046', 't', $$End period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '046', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '046', 'v', $$Source of information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '046', '2', $$Source of date scheme$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '046', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '046', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '050', $$Library of Congress Call Number$$, $$Call/and or class number for a series when all or part of the series is classified as a collected set or with the main series (646, Series Classification Practice, subfield $a, code c or m). The classification number is taken from the and/or the that are maintained by the Library of Congress.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_050_ind_1', 'MARC 21 authority field 050 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_050_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_050_ind_2', 'MARC 21 authority field 050 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_050_ind_2', '0', $$Assigned by LC$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_050_ind_2', '4', $$Assigned by agency other than LC$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '050', 'a', $$Classification number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '050', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '050', 'd', $$Volumes/dates to which call number applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '050', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '050', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '050', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '052', $$Geographic Classification$$, $$Classification code for a geographic area associated with the 151 field in an established heading record or 181 field in a subdivision record for a geographic name.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_052_ind_1', 'MARC 21 authority field 052 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_052_ind_1', '#', $$Library of Congress Classification$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_052_ind_1', '1', $$U.S. Dept. of Defense Classification$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_052_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_052_ind_2', 'MARC 21 authority field 052 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_052_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '052', 'a', $$Geographic classification area code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '052', 'b', $$Geographic classification subarea code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '052', 'd', $$Populated place name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '052', '2', $$Code source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '052', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '052', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '053', $$LC Classification Number$$, $$Single LC classification number or a number span associated with a 1XX heading in an established heading record or a subdivision record. Source of the classification number is and/or the that are maintained by the Library of Congress. The hyphen (-) between the two class numbers in a range of numbers may be generated based on the presence of both subfields $a and $b.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_053_ind_1', 'MARC 21 authority field 053 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_053_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_053_ind_2', 'MARC 21 authority field 053 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_053_ind_2', '0', $$Assigned by LC$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_053_ind_2', '4', $$Assigned by agency other than LC$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '053', 'a', $$Classification number element-single number or beginning number of span$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '053', 'b', $$Classification number element-ending number of span$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '053', 'c', $$Explanatory term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '053', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '053', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '053', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '055', $$Library and Archives Canada Call Number$$, $$Call number for a series assigned in Canada if the institution has classified all of part of the series as a collected set.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_055_ind_1', 'MARC 21 authority field 055 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_055_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_055_ind_2', 'MARC 21 authority field 055 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_055_ind_2', '0', $$Assigned by LAC$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_055_ind_2', '4', $$Assigned by agency other than LAC$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '055', 'a', $$Classification number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '055', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '055', 'd', $$Volumes/dates to which call number applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '055', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '055', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '055', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '060', $$National Library of Medicine Call Number$$, $$National Library of Medicine (NLM) call number for a series when all or part of the series is classified as a collected set or with the main series (646, Series Classification Practice, subfield $a, code c or m).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_060_ind_1', 'MARC 21 authority field 060 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_060_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_060_ind_2', 'MARC 21 authority field 060 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_060_ind_2', '0', $$Assigned by NLM$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_060_ind_2', '4', $$Assigned by agency other than NLM$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '060', 'a', $$Classification number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '060', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '060', 'd', $$Volumes/dates to which call number applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '060', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '060', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '060', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '065', $$Other Classification Number$$, $$Single classification number, number stem, or a number span associated with a 1XX heading in an established heading record or subdivision record. It is used for all classification schemes except those already accommodated in other fields of this type in the format: 053 (LC Classification Number), 083 (Dewey Decimal Classification number), and 087 (Government Document Classification Number). The classification number(s) may be qualified by explanatory information when the heading is represented in more than one place in the same classification scheme. Each classification number or number span associated with a heading is contained in separate field 065.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_065_ind_1', 'MARC 21 authority field 065 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_065_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_065_ind_2', 'MARC 21 authority field 065 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_065_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '065', 'a', $$Classification number element-single number or beginning of span$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '065', 'b', $$Classification number element-ending number of span$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '065', 'c', $$Explanatory term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '065', '2', $$Number source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '065', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '065', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '065', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '066', $$Character Sets Present$$, $$Used in records encoded with characters from sets other than ISO 10646 (or ) to specify the character sets for data content that are present in the record. The field alerts users that special processing may be required. A detailed description of the standard escape sequences used in MARC records is provided in$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_066_ind_1', 'MARC 21 authority field 066 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_066_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_066_ind_2', 'MARC 21 authority field 066 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_066_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '066', 'a', $$Primary G0 character set$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '066', 'b', $$Primary G1 character set$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '066', 'c', $$Alternate G0 or G1 character set$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '070', $$National Agricultural Library Call Number$$, $$Call number assigned by the National Agricultural Library (NAL) to a series when all or part of the series is classified as a collected set or with the main series (646, Series Classification Practice, subfield $a, code c or m).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_070_ind_1', 'MARC 21 authority field 070 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_070_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_070_ind_2', 'MARC 21 authority field 070 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_070_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '070', 'a', $$Classification number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '070', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '070', 'd', $$Volumes/dates to which call number applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '070', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '070', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '072', $$Subject Category Code$$, $$Code for the subject category that is associated with the 1XX field in an established heading record or a node label record.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_072_ind_1', 'MARC 21 authority field 072 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_072_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_072_ind_2', 'MARC 21 authority field 072 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_072_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_072_ind_2', '0', $$NAL subject category code list$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_072_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '072', 'a', $$Subject category code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '072', 'x', $$Subject category code subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '072', '2', $$Code source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '072', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '072', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '073', $$Subdivision Usage$$, $$Code specifying the topical term or geographic name with which the 1XX heading in a subdivision record may be used in a particular thesaurus.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_073_ind_1', 'MARC 21 authority field 073 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_073_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_073_ind_2', 'MARC 21 authority field 073 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_073_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '073', 'a', $$Subdivision usage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '073', 'z', $$Code source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '073', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '073', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '080', $$Universal Decimal Classification Number$$, $$Classification number associated with a 1XX heading in an established heading record. Number is taken from the Universal Decimal Classification scheme.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_080_ind_1', 'MARC 21 authority field 080 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_080_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_080_ind_1', '0', $$Full$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_080_ind_1', '1', $$Abridged$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_080_ind_2', 'MARC 21 authority field 080 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_080_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '080', 'a', $$Universal Decimal Classification number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '080', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '080', 'x', $$Common auxiliary subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '080', '2', $$Edition identifier$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '080', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '080', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '082', $$Dewey Decimal Call Number$$, $$Call number for a series when all or part of the series is classified as a collected set or with the main series (646, Series Classification Practice, subfield $a, code c or m). Source of the classification number is the the the and electronic updates to either edition. Through 1997, updates were issued in the$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_082_ind_1', 'MARC 21 authority field 082 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_082_ind_1', '0', $$Full$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_082_ind_1', '1', $$Abridged$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_082_ind_2', 'MARC 21 authority field 082 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_082_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_082_ind_2', '0', $$Assigned by LC$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_082_ind_2', '4', $$Assigned by agency other than LC$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '082', 'a', $$Classification number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '082', 'b', $$Item number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '082', 'd', $$Volumes/dates to which call number applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '082', '2', $$Edition number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '082', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '082', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '082', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '083', $$Dewey Decimal Classification Number$$, $$Single Dewey classification number or a a number span associated with a 1XX heading in an established heading record or a subdivision record. Source of the classification number is the the and electronic updates to either edition. Through 1997, updates were issued in the .$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_083_ind_1', 'MARC 21 authority field 083 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_083_ind_1', '0', $$Full$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_083_ind_1', '1', $$Abridged$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_083_ind_2', 'MARC 21 authority field 083 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_083_ind_2', '0', $$Assigned by LC$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_083_ind_2', '4', $$Assigned by agency other than LC$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '083', 'a', $$Classification number element-single number or beginning number of span$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '083', 'b', $$Classification number element-ending number of span$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '083', 'c', $$Explanatory term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '083', 'y', $$Table sequence number for internal subarrangement or add table$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '083', 'z', $$Table identification-table number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '083', '2', $$Edition number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '083', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '083', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '083', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '086', $$Government Document Call Number$$, $$Government document call number for a series when all or part of the series is classified as a collected set or with a main series (646, Series Classification Practice, subfield $a, code c or m). The organization assigning the number may be identified in subfield $5.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_086_ind_1', 'MARC 21 authority field 086 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_086_ind_1', '#', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_086_ind_1', '0', $$Superintendent of Documents Classification System$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_086_ind_1', '1', $$Government of Canada Publications: Outline of Classification$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_086_ind_2', 'MARC 21 authority field 086 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_086_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '086', 'a', $$Call number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '086', 'd', $$Volumes/dates to which call number applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '086', 'z', $$Canceled/invalid call number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '086', '2', $$Number source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '086', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '086', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '086', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '087', $$Government Document Classification Number$$, $$Single government document classification number, number stem, or a number span associated with a 1XX heading in an established heading record. The classification number(s) may be qualified by explanatory information when the heading is represented by more than one number in the same classification scheme.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_087_ind_1', 'MARC 21 authority field 087 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_087_ind_1', '#', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_087_ind_1', '0', $$Superintendent of Documents Classification System$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_087_ind_1', '1', $$Government of Canada Publications: Outline of Classification$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_087_ind_2', 'MARC 21 authority field 087 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_087_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '087', 'a', $$Classification number element-Single number of beginning number of span$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '087', 'b', $$Classification number element-Ending number of span$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '087', 'c', $$Explanatory information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '087', '2', $$Number source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '087', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '087', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', $$Heading-Personal Name$$, $$Established personal name used in a name, name/title, or extended subject heading established heading records or an unestablished personal name used in these types of headings a traced or an untraced reference record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_100_ind_1', 'MARC 21 authority field 100 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_100_ind_1', '0', $$Forename$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_100_ind_1', '1', $$Surname$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_100_ind_1', '3', $$Family name$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_100_ind_2', 'MARC 21 authority field 100 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_100_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'a', $$Personal name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'b', $$Numeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'c', $$Titles and other words associated with a name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'd', $$Dates associated with a name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'j', $$Attribution qualifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'q', $$Fuller form of name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '100', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', $$Heading-Corporate Name$$, $$Corporate name used in a name, name/title, or extended subject heading in established heading records or an unestablished corporate name used in a traced or an untraced reference record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_110_ind_1', 'MARC 21 authority field 110 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_110_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_110_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_110_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_110_ind_2', 'MARC 21 authority field 110 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_110_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'a', $$Corporate name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'b', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'd', $$Date of meeting or treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '110', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', $$Heading-Meeting Name$$, $$Established meeting name used in a name or name/title heading in established heading records or an unestablished meeting name used in these types of headings in traced or untraced reference records.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_111_ind_1', 'MARC 21 authority field 111 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_111_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_111_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_111_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_111_ind_2', 'MARC 21 authority field 111 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_111_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'a', $$Meeting name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'd', $$Date of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'e', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'j', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'q', $$Name of meeting following jurisdiction name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '111', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', $$Heading-Uniform Title$$, $$Uniform title used in a title or extended subject heading in established heading records or an unestablished uniform title used in a traced or untraced reference record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_130_ind_1', 'MARC 21 authority field 130 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_130_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_130_ind_2', 'MARC 21 authority field 130 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_130_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_130_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_130_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_130_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_130_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_130_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_130_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_130_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_130_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_130_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'a', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'd', $$Date of treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '130', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '148', $$Heading-Chronological Term$$, $$Chronological term used as a heading in an established heading record, an established heading and subdivision record, a traced or untraced reference record, or a reference and subdivision record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_148_ind_1', 'MARC 21 authority field 148 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_148_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_148_ind_2', 'MARC 21 authority field 148 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_148_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '148', 'a', $$Chronological term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '148', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '148', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '148', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '148', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '148', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '148', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '150', $$Heading-Topical Term$$, $$Topical term used as a heading in an established heading record, an established heading and subdivision record, a traced or an untraced reference record, a reference and subdivision record, or a node label record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_150_ind_1', 'MARC 21 authority field 150 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_150_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_150_ind_2', 'MARC 21 authority field 150 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_150_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '150', 'a', $$Topical term or geographic name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '150', 'b', $$Topical term following geographic name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '150', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '150', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '150', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '150', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '150', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '150', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '151', $$Heading-Geographic Name$$, $$Geographic name used as a heading in an established heading record, an established heading and subdivision record, a traced or an untraced reference record, or a reference and subdivision record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_151_ind_1', 'MARC 21 authority field 151 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_151_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_151_ind_2', 'MARC 21 authority field 151 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_151_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '151', 'a', $$Geographic name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '151', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '151', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '151', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '151', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '151', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '151', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '155', $$Heading-Genre/Form Term$$, $$Genre or form term used as a heading in an established heading record, an established heading and subdivision record, a traced or an untraced reference record, or a reference and subdivision record. The term may consist of more than one word.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_155_ind_1', 'MARC 21 authority field 155 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_155_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_155_ind_2', 'MARC 21 authority field 155 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_155_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '155', 'a', $$Genre/form term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '155', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '155', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '155', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '155', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '155', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '155', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '180', $$Heading-General Subdivision$$, $$Topical, form, or language term used as a heading in a subdivision record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_180_ind_1', 'MARC 21 authority field 180 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_180_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_180_ind_2', 'MARC 21 authority field 180 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_180_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '180', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '180', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '180', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '180', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '180', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '180', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '181', $$Heading-Geographic Subdivision$$, $$Geographic name or term used as a heading in a subdivision record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_181_ind_1', 'MARC 21 authority field 181 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_181_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_181_ind_2', 'MARC 21 authority field 181 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_181_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '181', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '181', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '181', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '181', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '181', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '181', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '182', $$Heading-Chronological Subdivision$$, $$Chronological term used as a heading in a subdivision record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_182_ind_1', 'MARC 21 authority field 182 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_182_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_182_ind_2', 'MARC 21 authority field 182 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_182_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '182', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '182', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '182', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '182', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '182', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '182', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '185', $$Heading-Form Subdivision$$, $$Form or genre term used as a heading in a subdivision record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_185_ind_1', 'MARC 21 authority field 185 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_185_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_185_ind_2', 'MARC 21 authority field 185 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_185_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '185', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '185', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '185', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '185', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '185', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '185', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '260', $$Complex See Reference-Subject$$, $$and that are required when relationships exist between unestablished and established subjects that cannot be adequately conveyed by one or more simple cross references generated from 4XX See From Tracing fields in the established heading record. A phrase such as may be generated for display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_260_ind_1', 'MARC 21 authority field 260 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_260_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_260_ind_2', 'MARC 21 authority field 260 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_260_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '260', 'a', $$Heading referred to$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '260', 'i', $$Explanatory text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '260', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '260', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '260', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '336', $$Content Type$$, $$The form of communication through which a work is expressed. Field 336 information enables expression of content types from various lists when the authority is for a title or name/title.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_336_ind_1', 'MARC 21 authority field 336 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_336_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_336_ind_2', 'MARC 21 authority field 336 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_336_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '336', 'a', $$Content type term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '336', 'b', $$Content type code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '336', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '336', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '336', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '336', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '360', $$Complex See Also Reference-Subject$$, $$and the that are required when relationships exist between established subjects that cannot be adequately conveyed by one or more simple cross references generated from 5XX See Also From Tracing fields. A phrase such as may be generated for display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_360_ind_1', 'MARC 21 authority field 360 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_360_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_360_ind_2', 'MARC 21 authority field 360 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_360_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '360', 'a', $$Heading referred to$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '360', 'i', $$Explanatory text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '360', '0', $$Authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '360', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '360', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '370', $$Associated Place$$, $$A town, city, province, state, and/or country associated with persons, corporate bodies, families, works, and expressions.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_370_ind_1', 'MARC 21 authority field 370 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_370_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_370_ind_2', 'MARC 21 authority field 370 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_370_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '370', 'a', $$Place of birth$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '370', 'b', $$Place of death$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '370', 'c', $$Associated country$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '370', 'e', $$Place of residence/headquarters$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '370', 'f', $$Other associated place$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '370', 'g', $$Place of origin of work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '370', 's', $$Start period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '370', 't', $$End period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '370', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '370', 'v', $$Source of information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '370', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '370', '2', $$Source of term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '370', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '370', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '371', $$Address$$, $$An address (as well as electronic access information such as email, telephone, fax, TTY, etc. numbers) associated with the entity described in the record. Multiple addresses, such as mailing addresses and addresses corresponding to the physical location of an item or facilities, are recorded in separate occurrences of field 371.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_371_ind_1', 'MARC 21 authority field 371 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_371_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_371_ind_2', 'MARC 21 authority field 371 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_371_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '371', 'a', $$Address$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '371', 'b', $$City$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '371', 'c', $$Intermediate jurisdiction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '371', 'd', $$Country$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '371', 'e', $$Postal Code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '371', 'm', $$Electronic mail address$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '371', 's', $$Start period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '371', 't', $$End period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '371', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '371', 'v', $$Source of information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '371', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '371', '4', $$Relator code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '371', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '371', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '372', $$Field of Activity$$, $$: a field of endeavor, area of expertise, etc., in which the person is engaged or was engaged$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_372_ind_1', 'MARC 21 authority field 372 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_372_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_372_ind_2', 'MARC 21 authority field 372 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_372_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '372', 'a', $$Field of activity$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '372', 's', $$Start period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '372', 't', $$End period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '372', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '372', 'v', $$Source of information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '372', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '372', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '372', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '372', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '373', $$Affiliation$$, $$Information about a group with which a person is or has been affiliated, including dates of affiliation.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_373_ind_1', 'MARC 21 authority field 373 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_373_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_373_ind_2', 'MARC 21 authority field 373 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_373_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '373', 'a', $$Affiliation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '373', 's', $$Start period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '373', 't', $$End period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '373', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '373', 'v', $$Source of information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '373', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '373', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '373', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '373', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '374', $$Occupation$$, $$Information about profession or occupation in which a person works or has worked, including dates applicable.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_374_ind_1', 'MARC 21 authority field 374 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_374_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_374_ind_2', 'MARC 21 authority field 374 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_374_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '374', 'a', $$Occupation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '374', 's', $$Start period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '374', 't', $$End period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '374', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '374', 'v', $$Source of information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '374', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '374', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '374', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '374', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '375', $$Gender$$, $$Information about gender of a person, including dates applicable.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_375_ind_1', 'MARC 21 authority field 375 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_375_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_375_ind_2', 'MARC 21 authority field 375 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_375_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '375', 'a', $$Gender$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '375', 's', $$Start period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '375', 't', $$End period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '375', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '375', 'v', $$Source of information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '375', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '375', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '375', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '376', $$Family Information$$, $$Additional information about families, including type of family, prominent member of the family, and hereditary title.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_376_ind_1', 'MARC 21 authority field 376 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_376_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_376_ind_2', 'MARC 21 authority field 376 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_376_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '376', 'a', $$Type of family$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '376', 'b', $$Name of prominent member$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '376', 'c', $$Hereditary title$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '376', 's', $$Start period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '376', 't', $$End period$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '376', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '376', 'v', $$Source of information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '376', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '376', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '376', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '376', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '377', $$Associated Language$$, $$: the language a person uses when writing for publication, broadcasting, etc.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_377_ind_1', 'MARC 21 authority field 377 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_377_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_377_ind_2', 'MARC 21 authority field 377 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_377_ind_2', '#', $$MARC language code$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_377_ind_2', '7', $$Source specified in $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '377', 'a', $$Language code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '377', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '377', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '377', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '380', $$Form of Work$$, $$A class or genre to which a work belongs. May be used to differentiate a work from another work with the same title.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_380_ind_1', 'MARC 21 authority field 380 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_380_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_380_ind_2', 'MARC 21 authority field 380 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_380_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '380', 'a', $$Form of work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '380', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '380', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '380', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '380', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '381', $$Other Distinguishing Characteristics of Work or Expression$$, $$Any characteristic that is not accommodated in a special field that serves to characterize a work or expression. Examples are an issuing body, arranged statement of music, version, or a geographic term. May be used to differentiate a work from another work with the same title.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_381_ind_1', 'MARC 21 authority field 381 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_381_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_381_ind_2', 'MARC 21 authority field 381 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_381_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '381', 'a', $$Other distinguishing characteristic$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '381', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '381', 'v', $$Source of information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '381', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '381', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '381', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '381', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '382', $$Medium of Performance$$, $$The instrumental, vocal, and/or other medium of performance for which a musical work was originally conceived or for which a musical expression is written or performed. May be used to differentiate a musical work or expression from another with the same title.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_382_ind_1', 'MARC 21 authority field 382 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_382_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_382_ind_2', 'MARC 21 authority field 382 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_382_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '382', 'a', $$Medium of performance$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '382', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '382', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '382', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '382', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '383', $$Numeric Designation of Musical Work$$, $$A serial number, opus number, or thematic index number assigned to a musical work by the composer, publisher, or a musicologist. May be used to differentiate a musical work from another with the same title.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_383_ind_1', 'MARC 21 authority field 383 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_383_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_383_ind_2', 'MARC 21 authority field 383 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_383_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '383', 'a', $$Serial number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '383', 'b', $$Opus number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '383', 'c', $$Thematic index number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '383', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '383', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '384', $$Key$$, $$The set of pitch relationships that establishes a single pitch class as a tonal centre for a musical work or expression. May be used to differentiate a musical work or expression from another with the same title.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_384_ind_1', 'MARC 21 authority field 384 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_384_ind_1', '#', $$Relationship to original unknown$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_384_ind_1', '0', $$Original key$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_384_ind_1', '1', $$Transposed key$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_384_ind_2', 'MARC 21 authority field 384 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_384_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '384', 'a', $$Key$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '384', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '384', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', $$See From Tracing-Personal Name$$, $$Tracing for a personal name reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_400_ind_1', 'MARC 21 authority field 400 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_400_ind_1', '0', $$Forename$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_400_ind_1', '1', $$Surname$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_400_ind_1', '3', $$Family name$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_400_ind_2', 'MARC 21 authority field 400 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_400_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'a', $$Personal name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'b', $$Numeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'c', $$Titles and other words associated with a name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'd', $$Dates associated with a name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'j', $$Attribution qualifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'q', $$Fuller form of name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '400', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', $$See From Tracing-Corporate Name$$, $$Tracing for a corporate name reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_410_ind_1', 'MARC 21 authority field 410 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_410_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_410_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_410_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_410_ind_2', 'MARC 21 authority field 410 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_410_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'a', $$Corporate name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'b', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'd', $$Date of meeting or treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '410', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', $$See From Tracing-Meeting Name$$, $$Tracing for a meeting name reference. It is used in an established heading record or an established heading and subdivision record to trace a see from reference from a meeting name not used to an established heading.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_411_ind_1', 'MARC 21 authority field 411 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_411_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_411_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_411_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_411_ind_2', 'MARC 21 authority field 411 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_411_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'a', $$Meeting name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'd', $$Date of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'e', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'j', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'q', $$Name of meeting following jurisdiction name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '411', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', $$See From Tracing-Uniform Title$$, $$Tracing for a uniform title reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_430_ind_1', 'MARC 21 authority field 430 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_430_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_430_ind_2', 'MARC 21 authority field 430 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_430_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_430_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_430_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_430_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_430_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_430_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_430_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_430_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_430_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_430_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'a', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'd', $$Date of treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '430', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '448', $$See From Tracing-Chronological Term$$, $$Tracing for a chronological term reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_448_ind_1', 'MARC 21 authority field 448 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_448_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_448_ind_2', 'MARC 21 authority field 448 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_448_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '448', 'a', $$Chronological term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '448', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '448', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '448', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '448', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '448', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '448', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '448', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '448', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '448', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '448', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '450', $$See From Tracing-Topical Term$$, $$Tracing for a topical term reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_450_ind_1', 'MARC 21 authority field 450 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_450_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_450_ind_2', 'MARC 21 authority field 450 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_450_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '450', 'a', $$Topical term or geographic name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '450', 'b', $$Topical term following geographic name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '450', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '450', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '450', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '450', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '450', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '450', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '450', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '450', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '450', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '450', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '451', $$See From Tracing-Geographic Name$$, $$Tracing for a geographic name reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_451_ind_1', 'MARC 21 authority field 451 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_451_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_451_ind_2', 'MARC 21 authority field 451 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_451_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '451', 'a', $$Geographic name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '451', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '451', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '451', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '451', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '451', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '451', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '451', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '451', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '451', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '451', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '455', $$See From Tracing-Genre/Form Term$$, $$Tracing for a genre/form term reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_455_ind_1', 'MARC 21 authority field 455 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_455_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_455_ind_2', 'MARC 21 authority field 455 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_455_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '455', 'a', $$Genre/form term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '455', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '455', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '455', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '455', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '455', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '455', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '455', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '455', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '455', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '455', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '480', $$See From Tracing-General Subdivision$$, $$Tracing for a general subdivision reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_480_ind_1', 'MARC 21 authority field 480 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_480_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_480_ind_2', 'MARC 21 authority field 480 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_480_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '480', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '480', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '480', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '480', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '480', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '480', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '480', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '480', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '480', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '480', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '481', $$See From Tracing-Geographic Subdivision$$, $$Tracing for a geographic subdivision reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_481_ind_1', 'MARC 21 authority field 481 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_481_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_481_ind_2', 'MARC 21 authority field 481 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_481_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '481', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '481', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '481', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '481', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '481', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '481', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '481', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '481', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '481', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '481', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '482', $$See From Tracing-Chronological Subdivision$$, $$Tracing for a chronological subdivision reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_482_ind_1', 'MARC 21 authority field 482 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_482_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_482_ind_2', 'MARC 21 authority field 482 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_482_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '482', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '482', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '482', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '482', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '482', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '482', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '482', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '482', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '482', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '482', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '485', $$See From Tracing-Form Subdivision$$, $$Tracing for a form subdivision reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_485_ind_1', 'MARC 21 authority field 485 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_485_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_485_ind_2', 'MARC 21 authority field 485 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_485_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '485', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '485', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '485', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '485', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '485', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '485', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '485', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '485', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '485', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '485', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', $$See Also From Tracing-Personal Name$$, $$Tracing for a personal name reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_500_ind_1', 'MARC 21 authority field 500 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_500_ind_1', '0', $$Forename$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_500_ind_1', '1', $$Surname$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_500_ind_1', '3', $$Family name$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_500_ind_2', 'MARC 21 authority field 500 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_500_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'a', $$Personal name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'b', $$Numeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'c', $$Titles and other words associated with a name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'd', $$Dates associated with a name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'j', $$Attribution qualifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'q', $$Fuller form of name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '500', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', $$See Also From Tracing-Corporate Name$$, $$Tracing for a corporate name reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_510_ind_1', 'MARC 21 authority field 510 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_510_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_510_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_510_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_510_ind_2', 'MARC 21 authority field 510 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_510_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'a', $$Corporate name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'b', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'd', $$Date of meeting or treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '510', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', $$See Also From Tracing-Meeting Name$$, $$Tracing for a meeting name reference. It is used in an established heading record or an established heading and subdivision record to trace a see also from reference from an established meeting name to a related established heading.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_511_ind_1', 'MARC 21 authority field 511 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_511_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_511_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_511_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_511_ind_2', 'MARC 21 authority field 511 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_511_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'a', $$Meeting name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'd', $$Date of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'e', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'j', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'q', $$Name of meeting following jurisdiction name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '511', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', $$See Also From Tracing-Uniform Title$$, $$Tracing for a uniform title reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_530_ind_1', 'MARC 21 authority field 530 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_530_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_530_ind_2', 'MARC 21 authority field 530 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_530_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_530_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_530_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_530_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_530_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_530_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_530_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_530_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_530_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_530_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'a', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'd', $$Date of treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '530', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '548', $$See Also From Tracing-Chronological Term$$, $$Tracing for a chronological term reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_548_ind_1', 'MARC 21 authority field 548 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_548_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_548_ind_2', 'MARC 21 authority field 548 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_548_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '548', 'a', $$Chronological term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '548', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '548', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '548', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '548', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '548', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '548', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '548', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '548', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '548', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '548', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '548', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '550', $$See Also From Tracing-Topical Term$$, $$Tracing for a topical term reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_550_ind_1', 'MARC 21 authority field 550 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_550_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_550_ind_2', 'MARC 21 authority field 550 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_550_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '550', 'a', $$Topical term or geographic name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '550', 'b', $$Topical term following geographic name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '550', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '550', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '550', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '550', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '550', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '550', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '550', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '550', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '550', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '550', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '550', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '551', $$See Also From Tracing-Geographic Name$$, $$Tracing for a geographic name reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_551_ind_1', 'MARC 21 authority field 551 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_551_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_551_ind_2', 'MARC 21 authority field 551 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_551_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '551', 'a', $$Geographic name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '551', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '551', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '551', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '551', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '551', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '551', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '551', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '551', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '551', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '551', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '551', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '555', $$See Also From Tracing-Genre/Form Term$$, $$Tracing for a genre/form term reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_555_ind_1', 'MARC 21 authority field 555 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_555_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_555_ind_2', 'MARC 21 authority field 555 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_555_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '555', 'a', $$Genre/form term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '555', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '555', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '555', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '555', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '555', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '555', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '555', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '555', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '555', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '555', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '555', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '580', $$See Also From Tracing-General Subdivision$$, $$Tracing for a general subdivision reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_580_ind_1', 'MARC 21 authority field 580 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_580_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_580_ind_2', 'MARC 21 authority field 580 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_580_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '580', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '580', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '580', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '580', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '580', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '580', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '580', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '580', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '580', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '580', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '580', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '581', $$See Also From Tracing-Geographic Subdivision$$, $$Tracing for a geographic subdivision reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_581_ind_1', 'MARC 21 authority field 581 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_581_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_581_ind_2', 'MARC 21 authority field 581 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_581_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '581', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '581', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '581', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '581', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '581', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '581', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '581', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '581', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '581', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '581', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '581', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '582', $$See Also From Tracing-Chronological Subdivision$$, $$Tracing for a chronological subdivision .$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_582_ind_1', 'MARC 21 authority field 582 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_582_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_582_ind_2', 'MARC 21 authority field 582 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_582_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '582', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '582', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '582', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '582', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '582', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '582', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '582', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '582', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '582', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '582', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '582', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '585', $$See Also From Tracing-Form Subdivision$$, $$Tracing for a form subdivision reference.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_585_ind_1', 'MARC 21 authority field 585 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_585_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_585_ind_2', 'MARC 21 authority field 585 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_585_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '585', 'i', $$Relationship information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '585', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '585', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '585', 'x', $$General subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '585', 'y', $$Chronological subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '585', 'z', $$Geographic subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '585', '0', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '585', '4', $$Relationship code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '585', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '585', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '585', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '640', $$Series Dates of Publication and/or Sequential Designation$$, $$Beginning/ending date(s) of publication and/or sequential designations used on items in a series named in the 1XX field of an established heading record for a series. May also contain a citation for the source of the information.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_640_ind_1', 'MARC 21 authority field 640 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_640_ind_1', '0', $$Formatted style$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_640_ind_1', '1', $$Unformatted style$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_640_ind_2', 'MARC 21 authority field 640 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_640_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '640', 'a', $$Dates of publication and/or sequential designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '640', 'z', $$Source of information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '640', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '640', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '641', $$Series Numbering Peculiarities$$, $$Note that describes irregularities in the report year coverage and/or numbering of a series named in the 1XX field of an established heading record for a series. May also contain a citation for the source of the information.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_641_ind_1', 'MARC 21 authority field 641 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_641_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_641_ind_2', 'MARC 21 authority field 641 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_641_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '641', 'a', $$Numbering peculiarities note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '641', 'z', $$Source of information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '641', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '641', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '642', $$Series Numbering Example$$, $$Series numbering example that is to be followed in the sequential designation portion of a series added entry tracing in bibliographic records for individual issues of the series named in the 1XX field of an established heading record for a series. Different ranges of volumes/dates or different series numbering examples for different organizations and/or different copies or sets within the same organization are also contained in separate 642 fields.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_642_ind_1', 'MARC 21 authority field 642 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_642_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_642_ind_2', 'MARC 21 authority field 642 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_642_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '642', 'a', $$Series numbering example$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '642', 'd', $$Volumes/dates to which series numbering example applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '642', '5', $$Institution/copy to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '642', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '642', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '643', $$Series Place and Publisher/Issuing Body$$, $$Place of publication and the name of the publisher/issuing body of the series named in the 1XX field of an established heading record for a series. May also contain the volumes/dates to which the publication information applies.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_643_ind_1', 'MARC 21 authority field 643 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_643_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_643_ind_2', 'MARC 21 authority field 643 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_643_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '643', 'a', $$Place$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '643', 'b', $$Publisher/issuing body$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '643', 'd', $$Volumes/dates to which place and publisher/issuing body apply$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '643', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '643', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '644', $$Series Analysis Practice$$, $$One-character alphabetic code that indicates a specific organization's analysis practice for a series named in the 1XX field of an established heading record for a series. May also contain the volumes/dates and/or the institution/copy identification to which the practice applies.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_644_ind_1', 'MARC 21 authority field 644 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_644_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_644_ind_2', 'MARC 21 authority field 644 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_644_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '644', 'a', $$Series analysis practice$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '644', 'b', $$Exceptions to analysis practice$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '644', 'd', $$Volumes/dates to which analysis practice applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '644', '5', $$Institution/copy to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '644', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '644', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '645', $$Series Tracing Practice$$, $$One-character alphabetic code that indicates a specific organization's tracing practice for a series named in the 1XX field of an established heading record for a series. May also contain the volumes/dates and/or the institution/copy identification to which the tracing practice applies.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_645_ind_1', 'MARC 21 authority field 645 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_645_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_645_ind_2', 'MARC 21 authority field 645 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_645_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '645', 'a', $$Series tracing practice$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '645', 'd', $$Volumes/dates to which tracing practice applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '645', '5', $$Institution/copy to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '645', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '645', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '646', $$Series Classification Practice$$, $$One-character alphabetic code that indicates a specific organization's classification practice for a series named in the 1XX field of an established heading record for a series. May also contain the volumes/dates and/or the institution/copy identification to which the classification practice applies.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_646_ind_1', 'MARC 21 authority field 646 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_646_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_646_ind_2', 'MARC 21 authority field 646 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_646_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '646', 'a', $$Series classification practice$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '646', 'd', $$Volumes/dates to which classification practice applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '646', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '646', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '646', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '663', $$Complex See Also Reference-Name$$, $$and the that are required when relationships exist between an established name and other established names that cannot be adequately conveyed by one or more simple cross references generated from 5XX See Also From Tracing fields.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_663_ind_1', 'MARC 21 authority field 663 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_663_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_663_ind_2', 'MARC 21 authority field 663 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_663_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '663', 'a', $$Explanatory text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '663', 'b', $$Heading referred to$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '663', 't', $$Title referred to$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '663', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '663', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '664', $$Complex See Reference-Name$$, $$and the that are required in a reference record for names when relationships exist between an unestablished name and one or more established names that cannot be adequately conveyed by simple cross references generated from 4XX See From Tracing fields in the established heading records.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_664_ind_1', 'MARC 21 authority field 664 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_664_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_664_ind_2', 'MARC 21 authority field 664 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_664_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '664', 'a', $$Explanatory text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '664', 'b', $$Heading referred to$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '664', 't', $$Title referred to$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '664', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '664', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '665', $$History Reference$$, $$Text for reference notes with historical information for names that is used in an established heading record when more information is needed about the relationships that exist among three or more established names (usually corporate names) than can be adequately conveyed by simple cross references generated from 5XX See Also From Tracing fields in the established heading records.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_665_ind_1', 'MARC 21 authority field 665 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_665_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_665_ind_2', 'MARC 21 authority field 665 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_665_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '665', 'a', $$History reference$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '665', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '665', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '666', $$General Explanatory Reference-Name$$, $$Note in a reference record that explains how names having a common characteristic (e.g., surnames with separately written prefixes) are entered in a file.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_666_ind_1', 'MARC 21 authority field 666 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_666_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_666_ind_2', 'MARC 21 authority field 666 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_666_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '666', 'a', $$General explanatory reference$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '666', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '666', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '667', $$Nonpublic General Note$$, $$Note that provides general information about a 1XX heading for which a specialized note field has not been defined.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_667_ind_1', 'MARC 21 authority field 667 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_667_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_667_ind_2', 'MARC 21 authority field 667 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_667_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '667', 'a', $$Nonpublic general note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '667', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '667', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '667', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '670', $$Source Data Found$$, $$Citation for a consulted source in which information is found about the 1XX heading in an established heading record, an established heading and subdivision record, a subdivision record or a reference record. May also include the information found in the source.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_670_ind_1', 'MARC 21 authority field 670 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_670_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_670_ind_2', 'MARC 21 authority field 670 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_670_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '670', 'a', $$Source citation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '670', 'b', $$Information found$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '670', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '670', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '670', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '675', $$Source Data Not Found$$, $$Citation for a consulted source in which no information is found about the 1XX heading in an established heading record, an established heading and subdivision record, or a subdivision record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_675_ind_1', 'MARC 21 authority field 675 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_675_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_675_ind_2', 'MARC 21 authority field 675 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_675_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '675', 'a', $$Source citation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '675', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '675', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '678', $$Biographical or Historical Data$$, $$Summary of the essential biographical, historical, or other information about the 1XX heading in an established heading record, an established heading and subdivision record, or a subdivision record.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_678_ind_1', 'MARC 21 authority field 678 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_678_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_678_ind_1', '0', $$Biographical sketch$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_678_ind_1', '1', $$Administrative history$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_678_ind_2', 'MARC 21 authority field 678 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_678_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '678', 'a', $$Biographical or historical data$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '678', 'b', $$Expansion$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '678', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '678', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '678', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '680', $$Public General Note$$, $$Note that provides general information about a 1XX heading for which a specialized note field has not been defined. The note is written in a form adequate for public display.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_680_ind_1', 'MARC 21 authority field 680 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_680_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_680_ind_2', 'MARC 21 authority field 680 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_680_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '680', 'a', $$Heading or subdivision term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '680', 'i', $$Explanatory text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '680', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '680', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '680', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '681', $$Subject Example Tracing Note$$, $$Note that documents the use of the 1XX subject or authorized subdivision heading as an example or reference in fields 260 Complex See Reference, 360 Complex See Also Reference, and/or 680 Public General Note in another authority record.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_681_ind_1', 'MARC 21 authority field 681 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_681_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_681_ind_2', 'MARC 21 authority field 681 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_681_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '681', 'a', $$Subject heading or subdivision term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '681', 'i', $$Explanatory text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '681', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '681', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '682', $$Deleted Heading Information$$, $$Explanation for the deletion of an established heading or subdivision record from an authority file. The replacement heading(s) may be contained in subfield(s) $a.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_682_ind_1', 'MARC 21 authority field 682 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_682_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_682_ind_2', 'MARC 21 authority field 682 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_682_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '682', 'a', $$Replacement heading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '682', 'i', $$Explanatory text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '682', '0', $$Replacement authority record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '682', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '682', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '688', $$Application History Note$$, $$Information that documents changes in the application of a 1XX heading.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_688_ind_1', 'MARC 21 authority field 688 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_688_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_688_ind_2', 'MARC 21 authority field 688 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_688_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '688', 'a', $$Application history note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '688', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '688', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '688', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', $$Established Heading Linking Entry-Personal Name$$, $$Personal name heading that is equivalent to the heading contained in the 1XX field or the same record. It links headings within a system or from different thesauri or authority files.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_700_ind_1', 'MARC 21 authority field 700 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_700_ind_1', '0', $$Forename$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_700_ind_1', '1', $$Surname$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_700_ind_1', '3', $$Family name$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_700_ind_2', 'MARC 21 authority field 700 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_700_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_700_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_700_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_700_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_700_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_700_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_700_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_700_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'a', $$Personal name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'b', $$Numeration$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'c', $$Titles and other words associated with a name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'd', $$Dates associated with a name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'j', $$Attribution qualifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'q', $$Fuller form of name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '700', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', $$Established Heading Linking Entry-Corporate Name$$, $$Corporate name that is equivalent to the name contained in the 110 field of the same record. It links headings within a system or from different thesauri or authority files.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_710_ind_1', 'MARC 21 authority field 710 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_710_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_710_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_710_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_710_ind_2', 'MARC 21 authority field 710 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_710_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_710_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_710_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_710_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_710_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_710_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_710_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_710_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'a', $$Corporate name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'b', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'd', $$Date of meeting or treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'e', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '710', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', $$Established Heading Linking Entry-Meeting Name$$, $$Meeting name that is equivalent to the name contained in the 111 field of the same record. It links headings within a system or from different thesauri or authority files.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_711_ind_1', 'MARC 21 authority field 711 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_711_ind_1', '0', $$Inverted name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_711_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_711_ind_1', '2', $$Name in direct order$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_711_ind_2', 'MARC 21 authority field 711 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_711_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_711_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_711_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_711_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_711_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_711_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_711_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_711_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 'a', $$Meeting name or jurisdiction name as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 'c', $$Location of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 'd', $$Date of meeting$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 'e', $$Subordinate unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 'j', $$Relator term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 'n', $$Number of part/section/meeting$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 'q', $$Name of meeting following jurisdiction name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '711', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', $$Established Heading Linking Entry-Uniform Title$$, $$Uniform title that is equivalent to the title contained in the 130 field of the same record. It links equivalent headings within a system or from different thesauri or authority files.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_730_ind_1', 'MARC 21 authority field 730 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_730_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_730_ind_2', 'MARC 21 authority field 730 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_730_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_730_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_730_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_730_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_730_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_730_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_730_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_730_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 'a', $$Uniform title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 'd', $$Date of treaty signing$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 'f', $$Date of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 'g', $$Miscellaneous information$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 'h', $$Medium$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 'k', $$Form subheading$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 'l', $$Language of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 'm', $$Medium of performance for music$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 'n', $$Number of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 'o', $$Arranged statement for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 'p', $$Name of part/section of a work$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 'r', $$Key for music$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 's', $$Version$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 't', $$Title of a work$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '730', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '748', $$Established Heading Linking Entry-Chronological Term$$, $$Chronological term that is equivalent to the 148 chronological term or 182 chronological subdivision heading field of the same record. It links headings within a system or from different thesauri or authority files.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_748_ind_1', 'MARC 21 authority field 748 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_748_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_748_ind_2', 'MARC 21 authority field 748 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_748_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_748_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_748_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_748_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_748_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_748_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_748_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_748_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '748', 'a', $$Chronological term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '748', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '748', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '750', $$Established Heading Linking Entry-Topical Term$$, $$Topical term that is equivalent to the 150 topical term or 180 general subdivision heading field of the same record. It links headings within a system or from different thesauri or authority files.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_750_ind_1', 'MARC 21 authority field 750 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_750_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_750_ind_2', 'MARC 21 authority field 750 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_750_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_750_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_750_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_750_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_750_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_750_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_750_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_750_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '750', 'a', $$Topical term or geographic name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '750', 'b', $$Topical term following geographic name entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '750', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '750', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '751', $$Established Heading Linking Entry-Geographic Name$$, $$Geographic name that is equivalent to the 151 geographic name or 181 geographic subdivision field of the same record. It links headings within a system or from different thesauri or authority files.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_751_ind_1', 'MARC 21 authority field 751 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_751_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_751_ind_2', 'MARC 21 authority field 751 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_751_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_751_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_751_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_751_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_751_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_751_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_751_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_751_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '751', 'a', $$Geographic name$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '751', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '751', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '755', $$Established Heading Linking Entry-Genre/Form Term$$, $$Genre/form term that is equivalent to the 155 genre/form term or 185 form subdivision heading field of the same record. It links headings within a system or from different thesauri or authority files.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_755_ind_1', 'MARC 21 authority field 755 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_755_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_755_ind_2', 'MARC 21 authority field 755 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_755_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_755_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_755_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_755_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_755_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_755_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_755_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_755_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '755', 'a', $$Genre/form term as entry element$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '755', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '755', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '780', $$Subdivision Linking Entry-General Subdivision$$, $$General subdivision term that is equivalent to the 150 topical term or 180 general subdivision field of the same record. It links headings within a system or from different thesauri or authority files.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_780_ind_1', 'MARC 21 authority field 780 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_780_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_780_ind_2', 'MARC 21 authority field 780 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_780_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_780_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_780_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_780_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_780_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_780_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_780_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_780_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '780', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '780', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '780', 'a', $$Link not displayed$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '780', 'b', $$Link not displayed, field 788 used$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '780', 'c', $$Link not displayed, non-7XX field used$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '780', 'n', $$Not applicable$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '781', $$Subdivision Linking Entry-Geographic Subdivision$$, $$Geographic subdivision name that is equivalent to the 151 geographic name or 181 geographic subdivision field of the same record. It links headings within a system or from different thesauri or authority files.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_781_ind_1', 'MARC 21 authority field 781 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_781_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_781_ind_2', 'MARC 21 authority field 781 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_781_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_781_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_781_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_781_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_781_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_781_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_781_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_781_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '781', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '781', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '781', 'a', $$Link not displayed$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '781', 'b', $$Link not displayed, field 788 used$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '781', 'c', $$Link not displayed, non-7XX field used$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '781', 'n', $$Not applicable$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '782', $$Subdivision Linking Entry-Chronological Subdivision$$, $$Chronological subdivision term that is equivalent to the 150 topical term or 182 chronological subdivision field of the same record. It links headings within a system or from different thesauri or authority files.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_782_ind_1', 'MARC 21 authority field 782 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_782_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_782_ind_2', 'MARC 21 authority field 782 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_782_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_782_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_782_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_782_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_782_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_782_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_782_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_782_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '782', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '782', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '782', 'a', $$Link not displayed$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '782', 'b', $$Link not displayed, field 788 used$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '782', 'c', $$Link not displayed, non-7XX field used$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '782', 'n', $$Not applicable$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '785', $$Subdivision Linking Entry-Form Subdivision$$, $$Form subdivision term that is equivalent to the 155 genre/form or 185 form subdivision field of the same record. It links headings within a system or from different thesauri or authority files.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_785_ind_1', 'MARC 21 authority field 785 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_785_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_785_ind_2', 'MARC 21 authority field 785 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_785_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_785_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_785_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_785_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_785_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_785_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_785_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_785_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '785', 'v', $$Form subdivision$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '785', 'w', $$Control subfield$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '785', 'a', $$Link not displayed$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '785', 'b', $$Link not displayed, field 788 used$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '785', 'c', $$Link not displayed, non-7XX field used$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '785', 'n', $$Not applicable$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '788', $$Complex Linking Entry Data$$, $$Explanatory text and the headings referred to when the linking relationship between headings from different subject heading systems or thesauri cannot be adequately conveyed by fields 700-785. No subelements of the are separately subfield coded. Adjacent headings referred to may be contained in a single subfield $a. The heading referred to may be an established heading or a subject subdivision that is not equivalent to but is related to the heading in the 1XX field.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_788_ind_1', 'MARC 21 authority field 788 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_788_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_788_ind_2', 'MARC 21 authority field 788 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_788_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_788_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_788_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_788_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_788_ind_2', '4', $$Source not specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_788_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_788_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_788_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '788', 'a', $$Heading referred to$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '788', 'i', $$Explanatory text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '788', '2', $$Source of heading or term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '788', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '788', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '788', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', $$Electronic Location and Access$$, $$Information needed to locate and access electronic information. The field may be used in an authority record to provide supplementary information available electronically about the entity for which the record was created.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_856_ind_1', 'MARC 21 authority field 856 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_856_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_856_ind_1', '0', $$Email$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_856_ind_1', '1', $$FTP$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_856_ind_1', '2', $$Remote login (Telnet)$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_856_ind_1', '3', $$Dial-up$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_856_ind_1', '4', $$HTTP$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_856_ind_1', '7', $$Method specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_authority_856_ind_2', 'MARC 21 authority field 856 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_856_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_856_ind_2', '0', $$Resource$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_856_ind_2', '1', $$Version of resource$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_856_ind_2', '2', $$Related resource$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_856_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'a', $$Host name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'b', $$Access number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'c', $$Compression information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'd', $$Path$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'f', $$Electronic name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'h', $$Processor of request$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'i', $$Instruction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'j', $$Bits per second$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'k', $$Password$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'l', $$Logon$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'm', $$Contact for access assistance$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'n', $$Name of location of host$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'o', $$Operating system$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'p', $$Port$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'q', $$Electronic format type$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'r', $$Settings$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 's', $$File size$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 't', $$Terminal emulation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'v', $$Hours access method available$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'y', $$Link text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', '2', $$Access method$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '856', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'authority', '880', $$Alternate Graphic Representation$$, $$Full content-designated representation, in a different script, of another field in the same record. Field 880 is linked to the associated regular field by subfield $6 (Linkage). A subfield $6 in the associated field also links that field to the 880 field. The data in field 880 may be in more than one script.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'authority', '880', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '001', $$Control Number$$, $$System control number assigned to a separate holdings record. For interchange purposes, documentation of the structure of the control number and input conventions are provided to exchange partners by the organization initiating the interchange.$$, +TRUE, FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '003', $$Control Number Identifier$$, $$MARC code for the agency whose system control number is present in field 001 (Control Number).$$, +TRUE, FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '004', $$Control Number for Related Bibliographic Record$$, $$System control number of the MARC bibliographic record for which a separate holdings record was created.$$, +TRUE, FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '005', $$Date and Time of Latest Transaction$$, $$Sixteen characters that specify the date and time of the latest record transaction and serve as a version identifier for the record. They are recorded according to (ISO 8601). The date requires 8 numeric characters in the pattern (4 for the year, 2 for the month, and 2 for the day). The time requires 8 numeric characters in the pattern (2 for the hour, 2 for the minute, 2 for the second, and 2 for a decimal fraction of the second, including the decimal point)expressed in terms of the 24-hour (00-23) clock.$$, +TRUE, FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '007', $$Physical Description Fixed Field$$, $$Codes that describe the physical characteristics of the copy of the bibliographic item for which holdings are recorded. See the description of in the for complete character position definitions and the content designators defined for this field. The Category of material code (007/00) may be described textually in field 842 (Textual Physical Form Designator).$$, +TRUE, FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '008', $$Fixed-Length Data Elements-General Information$$, $$Thirty-two character positions (00-31) that contain data elements that provide coded information about the record. The data elements are positionally defined. Each defined character position must contain either a defined code or a fill character ( | ). The fill character is used when no attempt is made to supply a defined code for a specific character position.$$, +TRUE, FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '010', $$Library of Congress Control Number$$, $$Control number, assigned by the Library of Congress, of the related MARC bibliographic record for which a separate holdings record is made.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_010_ind_1', 'MARC 21 serial field 010 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_010_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_010_ind_2', 'MARC 21 serial field 010 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_010_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '010', 'a', $$LC control number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '010', 'b', $$NUCMC control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '010', 'z', $$Canceled or invalid LC control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '010', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '014', $$Linkage Number$$, $$Control number, assigned by a bibliographic network, of a separate holdings record or its related bibliographic record for which a separate holdings record is made.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_014_ind_1', 'MARC 21 serial field 014 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_014_ind_1', '0', $$Holdings record number$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_014_ind_1', '1', $$Bibliographic record number$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_014_ind_2', 'MARC 21 serial field 014 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_014_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '014', 'a', $$Linkage number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '014', 'b', $$Source of number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '014', 'z', $$Canceled or invalid linkage number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '014', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '016', $$National Bibliographic Agency Control Number$$, $$Control number, assigned by a national bibliographic agency other than the Library of Congress, of the related bibliographic record for which a separate holdings record is made.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_016_ind_1', 'MARC 21 serial field 016 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_016_ind_1', '#', $$Library and Archives Canada$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_016_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_016_ind_2', 'MARC 21 serial field 016 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_016_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '016', 'a', $$Record control number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '016', 'z', $$Canceled or invalid control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '016', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '016', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '017', $$Copyright or Legal Deposit Number$$, $$Copyright registration or legal deposit number for an item that was acquired by copyright or legal deposit.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_017_ind_1', 'MARC 21 serial field 017 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_017_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_017_ind_2', 'MARC 21 serial field 017 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_017_ind_2', '#', $$Copyright or legal deposit number$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_017_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '017', 'a', $$Copyright or legal deposit number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '017', 'b', $$Assigning agency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '017', 'd', $$Date$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '017', 'i', $$Display text$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '017', 'z', $$Canceled/invalid copyright or legal deposit number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '017', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '017', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '017', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '020', $$International Standard Book Number$$, $$International Standard Book Number (ISBN) copied from subfield $a of field 020 (International Standard Book Number) of the MARC bibliographic record that represents the description of the item for which a separate holdings record is created.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_020_ind_1', 'MARC 21 serial field 020 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_020_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_020_ind_2', 'MARC 21 serial field 020 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_020_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '020', 'a', $$International Standard Book Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '020', 'c', $$Terms of availability$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '020', 'z', $$Canceled/invalid ISBN$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '020', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '020', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '022', $$International Standard Serial Number$$, $$International Standard Serial Number (ISSN) copied from subfield $a of field 022 (International Standard Serial Number) of the MARC bibliographic record that represents the description of the item for which a separate holdings record is created.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_022_ind_1', 'MARC 21 serial field 022 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_022_ind_1', '#', $$No level specified$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_022_ind_1', '0', $$Continuing resource of international interest$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_022_ind_1', '1', $$Continuing resource not of international interest$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_022_ind_2', 'MARC 21 serial field 022 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_022_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '022', 'a', $$International Standard Serial Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '022', 'l', $$ISSN-L$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '022', 'm', $$Canceled ISSN-L$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '022', 'y', $$Incorrect ISSN$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '022', 'z', $$Canceled ISSN$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '022', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '022', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '024', $$Other Standard Identifier$$, $$Standard number or code published on an item which cannot be accommodated in another field (e.g., field 020 (International Standard Book Number), 022 (International Standard Serial Number), 027 (Standard Technical Report Number)). The type of standard number or code is identified in the first indicator position or in subfield $2 (Source of number or code).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_024_ind_1', 'MARC 21 serial field 024 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_024_ind_1', '0', $$International Standard Recording Code$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_024_ind_1', '1', $$Universal Product Code$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_024_ind_1', '2', $$International Standard Music Number$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_024_ind_1', '3', $$International Article Number$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_024_ind_1', '4', $$Serial Item and Contribution Identifier$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_024_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_024_ind_1', '8', $$Unspecified type of standard number or code$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_024_ind_2', 'MARC 21 serial field 024 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_024_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_024_ind_2', '0', $$No difference$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_024_ind_2', '1', $$Difference$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '024', 'a', $$Standard number or code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '024', 'c', $$Terms of availability$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '024', 'd', $$Additional codes following the standard number or code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '024', 'z', $$Canceled/invalid standard number or code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '024', '2', $$Source of number or code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '024', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '024', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '027', $$Standard Technical Report Number$$, $$International Standard Technical Report number (ISRN) or a Standard Technical Report Number (STRN) copied from subfield $a of field 027 of the MARC bibliographic record that represents the description of the item for which a separate holdings record is created.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_027_ind_1', 'MARC 21 serial field 027 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_027_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_027_ind_2', 'MARC 21 serial field 027 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_027_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '027', 'a', $$Standard Technical Report Number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '027', 'z', $$Canceled/invalid STRN$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '027', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '027', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '030', $$CODEN Designation$$, $$CODEN designation, a unique identifier for scientific and technical periodical titles, copied from field 030 of the MARC bibliographic record that represents the description of the item for which a separate holdings record is created.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_030_ind_1', 'MARC 21 serial field 030 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_030_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_030_ind_2', 'MARC 21 serial field 030 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_030_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '030', 'a', $$CODEN$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '030', 'z', $$Canceled/invalid CODEN$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '030', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '030', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '035', $$System Control Number$$, $$Control number, assigned by any agency, of a holdings record or a related bibliographic record for which a separate holdings record is made.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_035_ind_1', 'MARC 21 serial field 035 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_035_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_035_ind_2', 'MARC 21 serial field 035 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_035_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '035', 'a', $$System control number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '035', 'z', $$Canceled or invalid control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '035', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '035', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '040', $$Record Source$$, $$MARC code for or the name of the organization(s) that created the original, assigned MARC content designation and transcribed the record into machine-readable form, or modified an existing MARC record. These data and the code in 008/39 (Cataloging source) specify the parties responsible for the content, content designation, and transcription of the bibliographic record.$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_040_ind_1', 'MARC 21 serial field 040 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_040_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_040_ind_2', 'MARC 21 serial field 040 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_040_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '040', 'a', $$Original cataloging agency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '040', 'b', $$Language of cataloging$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '040', 'c', $$Transcribing agency$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '040', 'd', $$Modifying agency$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '040', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '040', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '066', $$Character Sets Present$$, $$Used in records encoded with characters from sets other than ISO 10646 (or Unicode) to specify the character sets for data content that are present in the record. A detailed description of the standard escape sequences used in MARC records is provided in .$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_066_ind_1', 'MARC 21 serial field 066 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_066_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_066_ind_2', 'MARC 21 serial field 066 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_066_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '066', 'a', $$Primary G0 character set$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '066', 'b', $$Primary G1 character set$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '066', 'c', $$Alternate G0 or G1 character set$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '337', $$Media Type$$, $$Media type reflects the general type of intermediation device required to view, play, run, etc., the content of a resource. Used as an alternative to or in addition to the coded expression of Media type in field 007/00 (Category of material). Field 337 information enables indication of more specific media types and media types from various lists.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_337_ind_1', 'MARC 21 serial field 337 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_337_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_337_ind_2', 'MARC 21 serial field 337 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_337_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '337', 'a', $$Media type term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '337', 'b', $$Media type code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '337', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '337', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '337', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '337', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '338', $$Carrier Type$$, $$Carrier type reflects the format of the storage medium and housing of a carrier in combination with the media type (which indicates the intermediation device required to view, play, run, etc., the content of a resource). Used as an alternative to or in addition to the coded expression of carrier type in field 007/01 (Specific material designation). Field 338 information enables indication of more specific carrier types and carrier types from various lists.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_338_ind_1', 'MARC 21 serial field 338 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_338_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_338_ind_2', 'MARC 21 serial field 338 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_338_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '338', 'a', $$Carrier type term$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '338', '2', $$Source$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '338', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '338', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '338', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '506', $$Restrictions on Access Note$$, $$Information about restrictions imposed on access to the described materials.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_506_ind_1', 'MARC 21 serial field 506 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_506_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_506_ind_1', '0', $$No restrictions$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_506_ind_1', '1', $$Restrictions apply$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_506_ind_2', 'MARC 21 serial field 506 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_506_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '506', 'a', $$Terms governing access$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '506', 'b', $$Jurisdiction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '506', 'c', $$Physical access provisions$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '506', 'd', $$Authorized users$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '506', 'e', $$Authorization$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '506', 'f', $$Standardized terminology for access restriction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '506', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '506', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '506', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '506', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '506', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '506', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '538', $$System Details Note$$, $$Technical information about an item, such as the presence or absence of certain kinds of codes; or the physical characteristics of a computer file, such as recording densities, parity, blocking factors, mode of access, software programming language, computer requirements, peripheral requirements, trade name or recording systems, number of lines of resolution, and modulation frequency. For sound and videorecordings, information about the trade name or recording system(s) (e.g., VHS), modulation frequency and number of lines of resolution may be included.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_538_ind_1', 'MARC 21 serial field 538 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_538_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_538_ind_2', 'MARC 21 serial field 538 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_538_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '538', 'a', $$System details note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '538', 'i', $$Display text$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '538', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '538', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '538', '5', $$Institution to which field applies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '538', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '538', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '541', $$Immediate Source of Acquisition Note$$, $$Information on the immediate source of acquisition of the described materials. Used primarily for original or historical items or other archival collections.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_541_ind_1', 'MARC 21 serial field 541 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_541_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_541_ind_1', '0', $$Private$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_541_ind_1', '1', $$Not private$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_541_ind_2', 'MARC 21 serial field 541 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_541_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '541', 'a', $$Source of acquisition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '541', 'b', $$Address$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '541', 'c', $$Method of acquisition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '541', 'd', $$Date of acquisition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '541', 'e', $$Accession number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '541', 'f', $$Owner$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '541', 'h', $$Purchase price$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '541', 'n', $$Extent$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '541', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '541', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '541', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '541', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '541', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '561', $$Ownership and Custodial History$$, $$Information concerning the ownership and custodial history of the described materials from the time of their creation to the time of their accessioning, including the time at which individual items or group of items were first brought together in their current arrangement or collation.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_561_ind_1', 'MARC 21 serial field 561 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_561_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_561_ind_1', '0', $$Private$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_561_ind_1', '1', $$Not private$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_561_ind_2', 'MARC 21 serial field 561 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_561_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '561', 'a', $$History$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '561', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '561', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '561', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '561', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '562', $$Copy and Version Identification Note$$, $$Information that distinguishes the copy(s) or version(s) of materials held by an archive or manuscript repository when more than one copy or version exists or could exist.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_562_ind_1', 'MARC 21 serial field 562 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_562_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_562_ind_2', 'MARC 21 serial field 562 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_562_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '562', 'a', $$Identifying markings$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '562', 'b', $$Copy identification$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '562', 'c', $$Version identification$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '562', 'd', $$Presentation format$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '562', 'e', $$Number of copies$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '562', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '562', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '562', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '562', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '563', $$Binding Information$$, $$Binding information intended primarily for use with antiquarian materials, rare books, and other special collections.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_563_ind_1', 'MARC 21 serial field 563 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_563_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_563_ind_2', 'MARC 21 serial field 563 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_563_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '563', 'a', $$Binding note$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '563', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '563', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '563', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '563', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '563', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', $$Action Note$$, $$Information about processing and reference or preservation actions related to the bibliographic item for which a separate holdings record is created. For those using the field to record preservation activities, a list of may be used and the authority for the terminology may be indicated in subfield $2.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_583_ind_1', 'MARC 21 serial field 583 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_583_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_583_ind_1', '0', $$Private$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_583_ind_1', '1', $$Not private$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_583_ind_2', 'MARC 21 serial field 583 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_583_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'a', $$Action$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'b', $$Action identification$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'c', $$Time/date of action$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'd', $$Action interval$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'e', $$Contingency for action$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'f', $$Authorization$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'h', $$Jurisdiction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'i', $$Method of action$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'j', $$Site of action$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'k', $$Action agent$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'l', $$Status$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'n', $$Extent$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', '2', $$Source of term$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '583', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '841', $$Holdings Coded Data Values$$, $$When holdings data are embedded in a bibliographic record, this field contains certain coded information that would apply to the holdings information if it were in a separate holdings record in field 008 (Fixed-Length Data Elements).$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_841_ind_1', 'MARC 21 serial field 841 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_841_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_841_ind_2', 'MARC 21 serial field 841 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_841_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '841', 'a', $$Type of record$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '841', 'b', $$Fixed-length data elements$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '841', 'e', $$Encoding level$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '842', $$Textual Physical Form Designator$$, $$Designation in textual form of the physical form of the item. The physical form designator specifies the physical medium or form, or type of material of the unit held. The general physical form designator in coded form is recorded in field 007 (Physical Description Fixed Field).$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_842_ind_1', 'MARC 21 serial field 842 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_842_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_842_ind_2', 'MARC 21 serial field 842 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_842_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '842', 'a', $$Textual physical form designator$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '842', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '842', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '843', $$Reproduction Note$$, $$Description of an item that is a reproduction of original materials. Used when an institution chooses to have the main portion of the bibliographic record description reflect the original and the notes in field 843 reflect information about the copy.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_843_ind_1', 'MARC 21 serial field 843 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_843_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_843_ind_2', 'MARC 21 serial field 843 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_843_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '843', 'a', $$Type of reproduction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '843', 'b', $$Place of reproduction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '843', 'c', $$Agency responsible for reproduction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '843', 'd', $$Date of reproduction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '843', 'e', $$Physical description of reproduction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '843', 'f', $$Series statement of reproduction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '843', 'm', $$Dates of publication and/or sequential designation of issues reproduced$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '843', 'n', $$Note about reproduction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '843', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '843', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '843', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '843', '7', $$Fixed-length data elements of reproduction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '843', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '844', $$Name of Unit$$, $$Bibliographic title or a supplied designation describing a basic bibliographic unit, supplementary material, or an index. A supplement or index designation used as a caption is contained in fields 853-855 (Captions and Pattern), subfield $a-$h (Enumeration captions).$$, +FALSE, FALSE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_844_ind_1', 'MARC 21 serial field 844 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_844_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_844_ind_2', 'MARC 21 serial field 844 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_844_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '844', 'a', $$Name of unit$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '844', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '844', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '845', $$Terms Governing Use and Reproduction Note$$, $$Terms governing the use and reproduction of a bibliographic item when the holding organization will lend (008/20, Lending policy, code a) and reproduce (008/21, Reproduction policy, code a) the item.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_845_ind_1', 'MARC 21 serial field 845 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_845_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_845_ind_2', 'MARC 21 serial field 845 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_845_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '845', 'a', $$Terms governing use and reproduction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '845', 'b', $$Jurisdiction$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '845', 'c', $$Authorization$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '845', 'd', $$Authorized users$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '845', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '845', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '845', '5', $$Institution to which field applies$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '845', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '845', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', $$Location$$, $$Organization holding the item or from which it is available. May also contain detailed information about how to locate the item in a collection.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_852_ind_1', 'MARC 21 serial field 852 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_852_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_852_ind_1', '0', $$Library of Congress classification$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_852_ind_1', '1', $$Dewey Decimal classification$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_852_ind_1', '2', $$National Library of Medicine classification$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_852_ind_1', '3', $$Superintendent of Documents classification$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_852_ind_1', '4', $$Shelving control number$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_852_ind_1', '5', $$Title$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_852_ind_1', '6', $$Shelved separately$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_852_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_852_ind_1', '8', $$Other scheme$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_852_ind_2', 'MARC 21 serial field 852 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_852_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_852_ind_2', '0', $$Not enumeration$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_852_ind_2', '1', $$Primary enumeration$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_852_ind_2', '2', $$Alternative enumeration$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'a', $$Location$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'b', $$Sublocation or collection$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'c', $$Shelving location$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'd', $$Former shelving location$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'e', $$Address$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'f', $$Coded location qualifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'g', $$Non-coded location qualifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'h', $$Classification part$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'i', $$Item part$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'j', $$Shelving control number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'k', $$Call number prefix$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'l', $$Shelving form of title$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'm', $$Call number suffix$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'n', $$Country code$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'p', $$Piece designation$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'q', $$Piece physical condition$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 's', $$Copyright article-fee code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 't', $$Copy number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', '2', $$Source of classification or shelving scheme$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '852', '8', $$Sequence number$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', $$Captions and Pattern - Basic Bibliographic Unit$$, $$Captions that identify the enumeration and chronology levels and codes that define the publication pattern of the holdings described in the 863-865 Enumeration and Chronology fields. Any related 853-855 and 863-865 fields are linked by a number in subfield $8 (Field link and sequence number).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_853_ind_1', 'MARC 21 serial field 853 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_853_ind_1', '0', $$Cannot compress or expand$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_853_ind_1', '1', $$Can compress but not expand$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_853_ind_1', '2', $$Can compress or expand$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_853_ind_1', '3', $$Unknown$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_853_ind_2', 'MARC 21 serial field 853 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_853_ind_2', '0', $$Captions verified; all levels present$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_853_ind_2', '1', $$Captions verified; all levels may not be present$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_853_ind_2', '2', $$Captions unverified; all levels present$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_853_ind_2', '3', $$Captions unverified; all levels may not be present$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'a', $$First level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'b', $$Second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'c', $$Third level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'd', $$Fourth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'e', $$Fifth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'f', $$Sixth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'g', $$Alternative numbering scheme, first level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'h', $$Alternative numbering scheme, second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'i', $$First level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'j', $$Second level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'k', $$Third level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'l', $$Fourth level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'm', $$Alternative numbering scheme, chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'n', $$Pattern note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'p', $$Number of pieces per issuance$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 't', $$Copy$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'u', $$Bibliographic units per next higher level$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'v', $$Numbering continuity$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'w', $$Frequency$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'x', $$Calendar change$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'y', $$Regularity pattern$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', 'z', $$Numbering scheme$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', '2', $$Source of caption abbreviation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', '3', $$Materials specified$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '853', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', $$Captions and Pattern - Supplementary Material$$, $$Captions that identify the enumeration and chronology levels and codes that define the publication pattern of the holdings described in the 863-865 Enumeration and Chronology fields. Any related 853-855 and 863-865 fields are linked by a number in subfield $8 (Field link and sequence number).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_854_ind_1', 'MARC 21 serial field 854 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_854_ind_1', '0', $$Cannot compress or expand$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_854_ind_1', '1', $$Can compress but not expand$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_854_ind_1', '2', $$Can compress or expand$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_854_ind_1', '3', $$Unknown$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_854_ind_2', 'MARC 21 serial field 854 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_854_ind_2', '0', $$Captions verified; all levels present$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_854_ind_2', '1', $$Captions verified; all levels may not be present$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_854_ind_2', '2', $$Captions unverified; all levels present$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_854_ind_2', '3', $$Captions unverified; all levels may not be present$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'a', $$First level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'b', $$Second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'c', $$Third level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'd', $$Fourth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'e', $$Fifth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'f', $$Sixth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'g', $$Alternative numbering scheme, first level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'h', $$Alternative numbering scheme, second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'i', $$First level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'j', $$Second level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'k', $$Third level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'l', $$Fourth level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'm', $$Alternative numbering scheme, chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'n', $$Pattern note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'p', $$Number of pieces per issuance$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 't', $$Copy$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'u', $$Bibliographic units per next higher level$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'v', $$Numbering continuity$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'w', $$Frequency$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'x', $$Calendar change$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'y', $$Regularity pattern$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', 'z', $$Numbering scheme$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', '2', $$Source of caption abbreviation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', '3', $$Materials specified$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '854', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', $$Captions and Pattern - Indexes$$, $$Captions that identify the enumeration and chronology levels and codes that define the publication pattern of the holdings described in the 863-865 Enumeration and Chronology fields. Any related 853-855 and 863-865 fields are linked by a number in subfield $8 (Field link and sequence number).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_855_ind_1', 'MARC 21 serial field 855 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_855_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_855_ind_2', 'MARC 21 serial field 855 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_855_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'a', $$First level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'b', $$Second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'c', $$Third level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'd', $$Fourth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'e', $$Fifth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'f', $$Sixth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'g', $$Alternative numbering scheme, first level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'h', $$Alternative numbering scheme, second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'i', $$First level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'j', $$Second level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'k', $$Third level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'l', $$Fourth level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'm', $$Alternative numbering scheme, chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'n', $$Pattern note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'p', $$Number of pieces per issuance$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 't', $$Copy$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'u', $$Bibliographic units per next higher level$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'v', $$Numbering continuity$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'w', $$Frequency$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'x', $$Calendar change$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'y', $$Regularity pattern$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', 'z', $$Numbering scheme$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', '2', $$Source of caption abbreviation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', '3', $$Materials specified$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '855', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', $$Electronic Location and Access$$, $$Information required to locate an electronic resource. The information identifies the electronic location containing the resource or from which it is available. It also contains information needed to retrieve the resource by the access method identified in the first indicator position. The relationship of the electronic location and access information in field 856 to the resource identified by the record as a whole is identified by the second indicator. The information contained in this field is sufficient to allow for the electronic transfer of a file, subscription to an electronic journal, or logon to an electronic resource. In some cases, only unique data elements are recorded which allow the user to access a locator table on a remote host containing the remaining information needed to access the resource.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_856_ind_1', 'MARC 21 serial field 856 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_856_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_856_ind_1', '0', $$Email$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_856_ind_1', '1', $$FTP$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_856_ind_1', '2', $$Remote login (Telnet)$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_856_ind_1', '3', $$Dial-up$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_856_ind_1', '4', $$HTTP$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_856_ind_1', '7', $$Method specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_856_ind_2', 'MARC 21 serial field 856 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_856_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_856_ind_2', '0', $$Resource$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_856_ind_2', '1', $$Version of resource$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_856_ind_2', '2', $$Related resource$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_856_ind_2', '8', $$No display constant generated$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'a', $$Host name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'b', $$Access number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'c', $$Compression information$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'd', $$Path$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'f', $$Electronic name$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'h', $$Processor of request$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'i', $$Instruction$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'j', $$Bits per second$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'k', $$Password$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'l', $$Logon$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'm', $$Contact for access assistance$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'n', $$Name of location of host$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'o', $$Operating system$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'p', $$Port$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'q', $$Electronic format type$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'r', $$Settings$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 's', $$File size$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 't', $$Terminal emulation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'u', $$Uniform Resource Identifier$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'v', $$Hours access method available$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'w', $$Record control number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'y', $$Link text$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', '2', $$Access method$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', '3', $$Materials specified$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', '6', $$Linkage$$, +FALSE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '856', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', $$Enumeration and Chronology - Basic Bibliographic Unit$$, $$Description of the holdings of a bibliographic item in the collections of the reporting organization. The captions that identify the enumeration and chronology levels and the codes that define the publication pattern of the holdings are contained in the Captions and Pattern fields (853-855) that are linked to the 863-865 fields by a number in subfield $8 (Field link and sequence number).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_863_ind_1', 'MARC 21 serial field 863 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_863_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_863_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_863_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_863_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_863_ind_2', 'MARC 21 serial field 863 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_863_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_863_ind_2', '0', $$Compressed$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_863_ind_2', '1', $$Uncompressed$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_863_ind_2', '2', $$Compressed, use textual display$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_863_ind_2', '3', $$Uncompressed, use textual display$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_863_ind_2', '4', $$Item(s) not published$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'a', $$First level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'b', $$Second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'c', $$Third level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'd', $$Fourth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'e', $$Fifth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'f', $$Sixth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'g', $$Alternative numbering scheme, first level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'h', $$Alternative numbering scheme, second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'i', $$First level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'j', $$Second level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'k', $$Third level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'l', $$Fourth level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'm', $$Alternative numbering scheme, chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'n', $$Converted Gregorian year$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'p', $$Piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'q', $$Piece physical condition$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 's', $$Copyright article-fee code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 't', $$Copy number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'v', $$Issuing date$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'w', $$Break indicator$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '863', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', $$Enumeration and Chronology - Supplementary Material$$, $$Description of the holdings of a bibliographic item in the collections of the reporting organization. The captions that identify the enumeration and chronology levels and the codes that define the publication pattern of the holdings are contained in the Captions and Pattern fields (853-855) that are linked to the 863-865 fields by a number in subfield $8 (Field link and sequence number).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_864_ind_1', 'MARC 21 serial field 864 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_864_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_864_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_864_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_864_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_864_ind_2', 'MARC 21 serial field 864 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_864_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_864_ind_2', '0', $$Compressed$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_864_ind_2', '1', $$Uncompressed$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_864_ind_2', '2', $$Compressed, use textual display$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_864_ind_2', '3', $$Uncompressed, use textual display$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_864_ind_2', '4', $$Item(s) not published$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'a', $$First level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'b', $$Second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'c', $$Third level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'd', $$Fourth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'e', $$Fifth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'f', $$Sixth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'g', $$Alternative numbering scheme, first level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'h', $$Alternative numbering scheme, second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'i', $$First level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'j', $$Second level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'k', $$Third level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'l', $$Fourth level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'm', $$Alternative numbering scheme, chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'n', $$Converted Gregorian year$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'p', $$Piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'q', $$Piece physical condition$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 's', $$Copyright article-fee code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 't', $$Copy number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'v', $$Issuing date$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'w', $$Break indicator$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '864', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', $$Enumeration and Chronology - Indexes$$, $$Description of the holdings of a bibliographic item in the collections of the reporting organization. The captions that identify the enumeration and chronology levels and the codes that define the publication pattern of the holdings are contained in the Captions and Pattern fields (853-855) that are linked to the 863-865 fields by a number in subfield $8 (Field link and sequence number).$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_865_ind_1', 'MARC 21 serial field 865 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_865_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_865_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_865_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_865_ind_2', 'MARC 21 serial field 865 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_865_ind_2', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_865_ind_2', '1', $$Uncompressed$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_865_ind_2', '3', $$Uncompressed, use textual display$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'a', $$First level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'b', $$Second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'c', $$Third level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'd', $$Fourth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'e', $$Fifth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'f', $$Sixth level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'g', $$Alternative numbering scheme, first level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'h', $$Alternative numbering scheme, second level of enumeration$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'i', $$First level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'j', $$Second level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'k', $$Third level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'l', $$Fourth level of chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'm', $$Alternative numbering scheme, chronology$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'n', $$Converted Gregorian year$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'o', $$Type of unit$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'p', $$Piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'q', $$Piece physical condition$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 's', $$Copyright article-fee code$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 't', $$Copy number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'v', $$Issuing date$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'w', $$Break indicator$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '865', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '866', $$Textual Holdings - Basic Bibliographic Unit$$, $$Textual description which may include both the captions and enumeration and chronology for the holdings of a bibliographic item in the collections of the reporting organization. These fields are normally not used in holdings for single-part items. They may be used the coded 853-855 Captions and Pattern and 863-865 Enumeration and Chronology fields for multipart and serial items when those fields cannot be used adequately to describe the holdings. The 866-868 fields may also be used an Enumeration and Chronology field and any related Captions and Pattern field to record and generate an alternative display for all or part of the enumeration and chronology and captions and pattern fields.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_866_ind_1', 'MARC 21 serial field 866 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_866_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_866_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_866_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_866_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_866_ind_2', 'MARC 21 serial field 866 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_866_ind_2', '0', $$Non-standard$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_866_ind_2', '1', $$ANSI/NISO Z39.71 or ISO 10324$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_866_ind_2', '2', $$ANSI Z39.42$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_866_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '866', 'a', $$Textual holdings$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '866', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '866', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '866', '2', $$Source of notation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '866', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '866', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '867', $$Textual Holdings - Supplementary Material$$, $$Textual description which may include both the captions and enumeration and chronology for the holdings of a bibliographic item in the collections of the reporting organization. These fields are normally not used in holdings for single-part items. They may be used the coded 853-855 Captions and Pattern and 863-865 Enumeration and Chronology fields for multipart and serial items when those fields cannot be used adequately to describe the holdings. The 866-868 fields may also be used an Enumeration and Chronology field and any related Captions and Pattern field to record and generate an alternative display for all or part of the enumeration and chronology and captions and pattern fields.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_867_ind_1', 'MARC 21 serial field 867 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_867_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_867_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_867_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_867_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_867_ind_2', 'MARC 21 serial field 867 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_867_ind_2', '0', $$Non-standard$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_867_ind_2', '1', $$ANSI/NISO Z39.71 or ISO 10324$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_867_ind_2', '2', $$ANSI Z39.42$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_867_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '867', 'a', $$Textual holdings$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '867', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '867', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '867', '2', $$Source of notation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '867', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '867', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '868', $$Textual Holdings - Indexes$$, $$Textual description which may include both the captions and enumeration and chronology for the holdings of a bibliographic item in the collections of the reporting organization. These fields are normally not used in holdings for single-part items. They may be used the coded 853-855 Captions and Pattern and 863-865 Enumeration and Chronology fields for multipart and serial items when those fields cannot be used adequately to describe the holdings. The 866-868 fields may also be used an Enumeration and Chronology field and any related Captions and Pattern field to record and generate an alternative display for all or part of the enumeration and chronology and captions and pattern fields.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_868_ind_1', 'MARC 21 serial field 868 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_868_ind_1', '#', $$No information provided$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_868_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_868_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_868_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_868_ind_2', 'MARC 21 serial field 868 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_868_ind_2', '0', $$Non-standard$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_868_ind_2', '1', $$ANSI/NISO Z39.71 or ISO 10324$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_868_ind_2', '2', $$ANSI Z39.42$$, FALSE, TRUE); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_868_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '868', 'a', $$Textual holdings$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '868', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '868', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '868', '2', $$Source of notation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '868', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '868', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', $$Item Information - Basic Bibliographic Unit$$, $$Item level information about the pieces to the item specified in the holdings record. They contain various data elements that it may be desirable to record for specific items for use in acquisition or circulation applications, among others.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_876_ind_1', 'MARC 21 serial field 876 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_876_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_876_ind_2', 'MARC 21 serial field 876 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_876_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', 'a', $$Internal item number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', 'b', $$Invalid or canceled internal item number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', 'c', $$Cost$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', 'd', $$Date acquired$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', 'e', $$Source of acquisition$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', 'h', $$Use restrictions$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', 'j', $$Item status$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', 'l', $$Temporary location$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', 'p', $$Piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', 'r', $$Invalid or canceled piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', 't', $$Copy number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', '3', $$Materials specified$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '876', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', $$Item Information - Supplementary Material$$, $$Item level information about the pieces to the item specified in the holdings record. They contain various data elements that it may be desirable to record for specific items for use in acquisition or circulation applications, among others.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_877_ind_1', 'MARC 21 serial field 877 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_877_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_877_ind_2', 'MARC 21 serial field 877 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_877_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', 'a', $$Internal item number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', 'b', $$Invalid or canceled internal item number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', 'c', $$Cost$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', 'd', $$Date acquired$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', 'e', $$Source of acquisition$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', 'h', $$Use restrictions$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', 'j', $$Item status$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', 'l', $$Temporary location$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', 'p', $$Piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', 'r', $$Invalid or canceled piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', 't', $$Copy number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', '3', $$Materials specified$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '877', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', $$Item Information - Indexes$$, $$Item level information about the pieces to the item specified in the holdings record. They contain various data elements that it may be desirable to record for specific items for use in acquisition or circulation applications, among others.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_878_ind_1', 'MARC 21 serial field 878 indicator position 1'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_878_ind_1', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.record_attr_definition(name, label) +VALUES ('marc21_serial_878_ind_2', 'MARC 21 serial field 878 indicator position 2'); +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_878_ind_2', '#', $$Undefined$$, FALSE, TRUE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', 'a', $$Internal item number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', 'b', $$Invalid or canceled internal item number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', 'c', $$Cost$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', 'd', $$Date acquired$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', 'e', $$Source of acquisition$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', 'h', $$Use restrictions$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', 'j', $$Item status$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', 'l', $$Temporary location$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', 'p', $$Piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', 'r', $$Invalid or canceled piece designation$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', 't', $$Copy number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', 'x', $$Nonpublic note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', 'z', $$Public note$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', '3', $$Materials specified$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', '6', $$Linkage$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '878', '8', $$Field link and sequence number$$, +TRUE, FALSE, FALSE); +INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden) +VALUES (1, 'serial', '880', $$Alternate Graphic Representation$$, $$Fully content-designated, alternate graphic representation of another field in the same record. Field 880 is linked to the associated regular field by subfield $6 (Linkage). A subfield $6 in the associated field links that field to the 880 field. When an associated field does not exist in the record, field 880 is constructed as if it did and a reserved occurrence number (00) is used to indicate the special situation. The data in field 880 may be in more than one script.$$, +FALSE, TRUE, FALSE, FALSE); +INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden) +VALUES (1, 'serial', '880', '6', $$Linkage$$, +FALSE, FALSE, FALSE); + +-- link RDA 33x record attributes to tag table +UPDATE config.marc_subfield set value_ctype = 'content_type' +WHERE tag = '336' AND code = 'a' AND marc_record_type = 'biblio'; +UPDATE config.marc_subfield set value_ctype = 'media_type' +WHERE tag = '337' AND code = 'a' AND marc_record_type = 'biblio'; +UPDATE config.marc_subfield set value_ctype = 'carrier_type' +WHERE tag = '338' AND code = 'a' AND marc_record_type = 'biblio'; + + + +COMMIT; diff --git a/Open-ILS/src/sql/schema/deploy/schema.base.sql b/Open-ILS/src/sql/schema/deploy/schema.base.sql new file mode 100644 index 0000000000..8b08a1ff51 --- /dev/null +++ b/Open-ILS/src/sql/schema/deploy/schema.base.sql @@ -0,0 +1,57144 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 9.5.2 +-- Dumped by pg_dump version 9.5.2 + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SET check_function_bodies = false; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Name: acq; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA acq; + + +ALTER SCHEMA acq OWNER TO evergreen; + +-- +-- Name: action; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA action; + + +ALTER SCHEMA action OWNER TO evergreen; + +-- +-- Name: action_trigger; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA action_trigger; + + +ALTER SCHEMA action_trigger OWNER TO evergreen; + +-- +-- Name: actor; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA actor; + + +ALTER SCHEMA actor OWNER TO evergreen; + +-- +-- Name: SCHEMA actor; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON SCHEMA actor IS ' +Holds all tables pertaining to users and libraries (org units). +'; + + +-- +-- Name: asset; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA asset; + + +ALTER SCHEMA asset OWNER TO evergreen; + +-- +-- Name: auditor; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA auditor; + + +ALTER SCHEMA auditor OWNER TO evergreen; + +-- +-- Name: authority; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA authority; + + +ALTER SCHEMA authority OWNER TO evergreen; + +-- +-- Name: biblio; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA biblio; + + +ALTER SCHEMA biblio OWNER TO evergreen; + +-- +-- Name: booking; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA booking; + + +ALTER SCHEMA booking OWNER TO evergreen; + +-- +-- Name: config; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA config; + + +ALTER SCHEMA config OWNER TO evergreen; + +-- +-- Name: SCHEMA config; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON SCHEMA config IS ' +The config schema holds static configuration data for the +Evergreen installation. +'; + + +-- +-- Name: container; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA container; + + +ALTER SCHEMA container OWNER TO evergreen; + +-- +-- Name: evergreen; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA evergreen; + + +ALTER SCHEMA evergreen OWNER TO evergreen; + +-- +-- Name: extend_reporter; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA extend_reporter; + + +ALTER SCHEMA extend_reporter OWNER TO evergreen; + +-- +-- Name: metabib; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA metabib; + + +ALTER SCHEMA metabib OWNER TO evergreen; + +-- +-- Name: money; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA money; + + +ALTER SCHEMA money OWNER TO evergreen; + +-- +-- Name: offline; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA offline; + + +ALTER SCHEMA offline OWNER TO evergreen; + +-- +-- Name: permission; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA permission; + + +ALTER SCHEMA permission OWNER TO evergreen; + +-- +-- Name: query; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA query; + + +ALTER SCHEMA query OWNER TO evergreen; + +-- +-- Name: SCHEMA query; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON SCHEMA query IS ' +Contains tables designed to represent user-defined queries for +reports and the like. +'; + + +-- +-- Name: reporter; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA reporter; + + +ALTER SCHEMA reporter OWNER TO evergreen; + +-- +-- Name: search; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA search; + + +ALTER SCHEMA search OWNER TO evergreen; + +-- +-- Name: serial; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA serial; + + +ALTER SCHEMA serial OWNER TO evergreen; + +-- +-- Name: staging; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA staging; + + +ALTER SCHEMA staging OWNER TO evergreen; + +-- +-- Name: stats; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA stats; + + +ALTER SCHEMA stats OWNER TO evergreen; + +-- +-- Name: unapi; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA unapi; + + +ALTER SCHEMA unapi OWNER TO evergreen; + +-- +-- Name: url_verify; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA url_verify; + + +ALTER SCHEMA url_verify OWNER TO evergreen; + +-- +-- Name: vandelay; Type: SCHEMA; Schema: -; Owner: evergreen +-- + +CREATE SCHEMA vandelay; + + +ALTER SCHEMA vandelay OWNER TO evergreen; + +-- +-- Name: plperlu; Type: PROCEDURAL LANGUAGE; Schema: -; Owner: evergreen +-- + +CREATE OR REPLACE PROCEDURAL LANGUAGE plperlu; + + +ALTER PROCEDURAL LANGUAGE plperlu OWNER TO evergreen; + +-- +-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: +-- + +CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; + + +-- +-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: +-- + +COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; + + +-- +-- Name: hstore; Type: EXTENSION; Schema: -; Owner: +-- + +CREATE EXTENSION IF NOT EXISTS hstore WITH SCHEMA public; + + +-- +-- Name: EXTENSION hstore; Type: COMMENT; Schema: -; Owner: +-- + +COMMENT ON EXTENSION hstore IS 'data type for storing sets of (key, value) pairs'; + + +-- +-- Name: intarray; Type: EXTENSION; Schema: -; Owner: +-- + +CREATE EXTENSION IF NOT EXISTS intarray WITH SCHEMA public; + + +-- +-- Name: EXTENSION intarray; Type: COMMENT; Schema: -; Owner: +-- + +COMMENT ON EXTENSION intarray IS 'functions, operators, and index support for 1-D arrays of integers'; + + +-- +-- Name: pgcrypto; Type: EXTENSION; Schema: -; Owner: +-- + +CREATE EXTENSION IF NOT EXISTS pgcrypto WITH SCHEMA public; + + +-- +-- Name: EXTENSION pgcrypto; Type: COMMENT; Schema: -; Owner: +-- + +COMMENT ON EXTENSION pgcrypto IS 'cryptographic functions'; + + +-- +-- Name: tablefunc; Type: EXTENSION; Schema: -; Owner: +-- + +CREATE EXTENSION IF NOT EXISTS tablefunc WITH SCHEMA public; + + +-- +-- Name: EXTENSION tablefunc; Type: COMMENT; Schema: -; Owner: +-- + +COMMENT ON EXTENSION tablefunc IS 'functions that manipulate whole tables, including crosstab'; + + +-- +-- Name: xml2; Type: EXTENSION; Schema: -; Owner: +-- + +CREATE EXTENSION IF NOT EXISTS xml2 WITH SCHEMA public; + + +-- +-- Name: EXTENSION xml2; Type: COMMENT; Schema: -; Owner: +-- + +COMMENT ON EXTENSION xml2 IS 'XPath querying and XSLT'; + + +SET search_path = acq, pg_catalog; + +-- +-- Name: flat_lineitem_detail; Type: TYPE; Schema: acq; Owner: evergreen +-- + +CREATE TYPE flat_lineitem_detail AS ( + lineitem integer, + holding integer, + attr text, + data text +); + + +ALTER TYPE flat_lineitem_detail OWNER TO evergreen; + +-- +-- Name: flat_lineitem_holding_subfield; Type: TYPE; Schema: acq; Owner: evergreen +-- + +CREATE TYPE flat_lineitem_holding_subfield AS ( + lineitem integer, + holding integer, + subfield text, + data text +); + + +ALTER TYPE flat_lineitem_holding_subfield OWNER TO evergreen; + +SET search_path = action, pg_catalog; + +-- +-- Name: circ_chain_summary; Type: TYPE; Schema: action; Owner: evergreen +-- + +CREATE TYPE circ_chain_summary AS ( + num_circs integer, + start_time timestamp with time zone, + checkout_workstation text, + last_renewal_time timestamp with time zone, + last_stop_fines text, + last_stop_fines_time timestamp with time zone, + last_renewal_workstation text, + last_checkin_workstation text, + last_checkin_time timestamp with time zone, + last_checkin_scan_time timestamp with time zone +); + + +ALTER TYPE circ_chain_summary OWNER TO evergreen; + +-- +-- Name: circ_matrix_test_result; Type: TYPE; Schema: action; Owner: evergreen +-- + +CREATE TYPE circ_matrix_test_result AS ( + success boolean, + fail_part text, + buildrows integer[], + matchpoint integer, + circulate boolean, + duration_rule integer, + recurring_fine_rule integer, + max_fine_rule integer, + hard_due_date integer, + renewals integer, + grace_period interval, + limit_groups integer[] +); + + +ALTER TYPE circ_matrix_test_result OWNER TO evergreen; + +SET search_path = config, pg_catalog; + +SET default_tablespace = ''; + +SET default_with_oids = false; + +-- +-- Name: circ_matrix_matchpoint; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE circ_matrix_matchpoint ( + id integer NOT NULL, + active boolean DEFAULT true NOT NULL, + org_unit integer NOT NULL, + grp integer NOT NULL, + circ_modifier text, + copy_location integer, + marc_type text, + marc_form text, + marc_bib_level text, + marc_vr_format text, + copy_circ_lib integer, + copy_owning_lib integer, + user_home_ou integer, + ref_flag boolean, + juvenile_flag boolean, + is_renewal boolean, + usr_age_lower_bound interval, + usr_age_upper_bound interval, + item_age interval, + circulate boolean, + duration_rule integer, + recurring_fine_rule integer, + max_fine_rule integer, + hard_due_date integer, + renewals integer, + grace_period interval, + script_test text, + total_copy_hold_ratio double precision, + available_copy_hold_ratio double precision +); + + +ALTER TABLE circ_matrix_matchpoint OWNER TO evergreen; + +SET search_path = action, pg_catalog; + +-- +-- Name: found_circ_matrix_matchpoint; Type: TYPE; Schema: action; Owner: evergreen +-- + +CREATE TYPE found_circ_matrix_matchpoint AS ( + success boolean, + matchpoint config.circ_matrix_matchpoint, + buildrows integer[] +); + + +ALTER TYPE found_circ_matrix_matchpoint OWNER TO evergreen; + +-- +-- Name: hold_stats; Type: TYPE; Schema: action; Owner: evergreen +-- + +CREATE TYPE hold_stats AS ( + hold_count integer, + copy_count integer, + available_count integer, + total_copy_ratio double precision, + available_copy_ratio double precision +); + + +ALTER TYPE hold_stats OWNER TO evergreen; + +-- +-- Name: matrix_test_result; Type: TYPE; Schema: action; Owner: evergreen +-- + +CREATE TYPE matrix_test_result AS ( + success boolean, + matchpoint integer, + fail_part text +); + + +ALTER TYPE matrix_test_result OWNER TO evergreen; + +SET search_path = actor, pg_catalog; + +-- +-- Name: org_unit_custom_tree_purpose; Type: TYPE; Schema: actor; Owner: evergreen +-- + +CREATE TYPE org_unit_custom_tree_purpose AS ENUM ( + 'opac' +); + + +ALTER TYPE org_unit_custom_tree_purpose OWNER TO evergreen; + +SET search_path = biblio, pg_catalog; + +-- +-- Name: marc21_physical_characteristics; Type: TYPE; Schema: biblio; Owner: evergreen +-- + +CREATE TYPE marc21_physical_characteristics AS ( + id integer, + record bigint, + ptype text, + subfield integer, + value integer +); + + +ALTER TYPE marc21_physical_characteristics OWNER TO evergreen; + +-- +-- Name: record_ff_map; Type: TYPE; Schema: biblio; Owner: evergreen +-- + +CREATE TYPE record_ff_map AS ( + record bigint, + ff_name text, + ff_value text +); + + +ALTER TYPE record_ff_map OWNER TO evergreen; + +SET search_path = config, pg_catalog; + +-- +-- Name: marc_record_type; Type: TYPE; Schema: config; Owner: evergreen +-- + +CREATE TYPE marc_record_type AS ENUM ( + 'biblio', + 'authority', + 'serial' +); + + +ALTER TYPE marc_record_type OWNER TO evergreen; + +-- +-- Name: usr_activity_group; Type: TYPE; Schema: config; Owner: evergreen +-- + +CREATE TYPE usr_activity_group AS ENUM ( + 'authen', + 'authz', + 'circ', + 'hold', + 'search' +); + + +ALTER TYPE usr_activity_group OWNER TO evergreen; + +SET search_path = evergreen, pg_catalog; + +-- +-- Name: barcode_set; Type: TYPE; Schema: evergreen; Owner: evergreen +-- + +CREATE TYPE barcode_set AS ( + type text, + id bigint, + barcode text +); + + +ALTER TYPE barcode_set OWNER TO evergreen; + +-- +-- Name: patch; Type: TYPE; Schema: evergreen; Owner: evergreen +-- + +CREATE TYPE patch AS ( + patch text +); + + +ALTER TYPE patch OWNER TO evergreen; + +SET search_path = metabib, pg_catalog; + +-- +-- Name: field_entry_template; Type: TYPE; Schema: metabib; Owner: evergreen +-- + +CREATE TYPE field_entry_template AS ( + field_class text, + field integer, + facet_field boolean, + search_field boolean, + browse_field boolean, + source bigint, + value text, + authority bigint, + sort_value text +); + + +ALTER TYPE field_entry_template OWNER TO evergreen; + +-- +-- Name: flat_browse_entry_appearance; Type: TYPE; Schema: metabib; Owner: evergreen +-- + +CREATE TYPE flat_browse_entry_appearance AS ( + browse_entry bigint, + value text, + fields text, + authorities text, + sees text, + sources integer, + asources integer, + row_number integer, + accurate boolean, + aaccurate boolean, + pivot_point bigint +); + + +ALTER TYPE flat_browse_entry_appearance OWNER TO evergreen; + +-- +-- Name: rec_desc_type; Type: TYPE; Schema: metabib; Owner: evergreen +-- + +CREATE TYPE rec_desc_type AS ( + item_type text, + item_form text, + bib_level text, + control_type text, + char_encoding text, + enc_level text, + audience text, + lit_form text, + type_mat text, + cat_form text, + pub_status text, + item_lang text, + vr_format text, + date1 text, + date2 text +); + + +ALTER TYPE rec_desc_type OWNER TO evergreen; + +-- +-- Name: record_attr_type; Type: TYPE; Schema: metabib; Owner: evergreen +-- + +CREATE TYPE record_attr_type AS ( + id bigint, + attrs public.hstore +); + + +ALTER TYPE record_attr_type OWNER TO evergreen; + +SET search_path = search, pg_catalog; + +-- +-- Name: search_args; Type: TYPE; Schema: search; Owner: evergreen +-- + +CREATE TYPE search_args AS ( + id integer, + field_class text, + field_name text, + table_alias text, + term text, + term_type text +); + + +ALTER TYPE search_args OWNER TO evergreen; + +-- +-- Name: search_result; Type: TYPE; Schema: search; Owner: evergreen +-- + +CREATE TYPE search_result AS ( + id bigint, + rel numeric, + record integer, + total integer, + checked integer, + visible integer, + deleted integer, + excluded integer +); + + +ALTER TYPE search_result OWNER TO evergreen; + +SET search_path = vandelay, pg_catalog; + +-- +-- Name: authority_queue_queue_type; Type: TYPE; Schema: vandelay; Owner: evergreen +-- + +CREATE TYPE authority_queue_queue_type AS ENUM ( + 'authority' +); + + +ALTER TYPE authority_queue_queue_type OWNER TO evergreen; + +-- +-- Name: bib_queue_queue_type; Type: TYPE; Schema: vandelay; Owner: evergreen +-- + +CREATE TYPE bib_queue_queue_type AS ENUM ( + 'bib', + 'acq' +); + + +ALTER TYPE bib_queue_queue_type OWNER TO evergreen; + +-- +-- Name: compile_profile; Type: TYPE; Schema: vandelay; Owner: evergreen +-- + +CREATE TYPE compile_profile AS ( + add_rule text, + replace_rule text, + preserve_rule text, + strip_rule text +); + + +ALTER TYPE compile_profile OWNER TO evergreen; + +-- +-- Name: flat_marc; Type: TYPE; Schema: vandelay; Owner: evergreen +-- + +CREATE TYPE flat_marc AS ( + tag character(3), + ind1 text, + ind2 text, + subfield text, + value text +); + + +ALTER TYPE flat_marc OWNER TO evergreen; + +-- +-- Name: match_set_test_result; Type: TYPE; Schema: vandelay; Owner: evergreen +-- + +CREATE TYPE match_set_test_result AS ( + record bigint, + quality integer +); + + +ALTER TYPE match_set_test_result OWNER TO evergreen; + +-- +-- Name: tcn_data; Type: TYPE; Schema: vandelay; Owner: evergreen +-- + +CREATE TYPE tcn_data AS ( + tcn text, + tcn_source text, + used boolean +); + + +ALTER TYPE tcn_data OWNER TO evergreen; + +SET search_path = acq, pg_catalog; + +-- +-- Name: attribute_debits(); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION attribute_debits() RETURNS void + LANGUAGE plpgsql + AS $$ +/* +Function to attribute expenditures and encumbrances to funding source credits, +and thereby to funding sources. + +Read the debits in chonological order, attributing each one to one or +more funding source credits. Constraints: + +1. Don't attribute more to a credit than the amount of the credit. + +2. For a given fund, don't attribute more to a funding source than the +source has allocated to that fund. + +3. Attribute debits to credits with deadlines before attributing them to +credits without deadlines. Otherwise attribute to the earliest credits +first, based on the deadline date when present, or on the effective date +when there is no deadline. Use funding_source_credit.id as a tie-breaker. +This ordering is defined by an ORDER BY clause on the view +acq.ordered_funding_source_credit. + +Start by truncating the table acq.debit_attribution. Then insert a row +into that table for each attribution. If a debit cannot be fully +attributed, insert a row for the unattributable balance, with the +funding_source_credit and credit_amount columns NULL. +*/ +DECLARE + curr_fund_source_bal RECORD; + seqno INT; -- sequence num for credits applicable to a fund + fund_credit RECORD; -- current row in temp t_fund_credit table + fc RECORD; -- used for loading t_fund_credit table + sc RECORD; -- used for loading t_fund_credit table + -- + -- Used exclusively in the main loop: + -- + deb RECORD; -- current row from acq.fund_debit table + curr_credit_bal RECORD; -- current row from temp t_credit table + debit_balance NUMERIC; -- amount left to attribute for current debit + conv_debit_balance NUMERIC; -- debit balance in currency of the fund + attr_amount NUMERIC; -- amount being attributed, in currency of debit + conv_attr_amount NUMERIC; -- amount being attributed, in currency of source + conv_cred_balance NUMERIC; -- credit_balance in the currency of the fund + conv_alloc_balance NUMERIC; -- allocated balance in the currency of the fund + attrib_count INT; -- populates id of acq.debit_attribution +BEGIN + -- + -- Load a temporary table. For each combination of fund and funding source, + -- load an entry with the total amount allocated to that fund by that source. + -- This sum may reflect transfers as well as original allocations. We will + -- reduce this balance whenever we attribute debits to it. + -- + CREATE TEMP TABLE t_fund_source_bal + ON COMMIT DROP AS + SELECT + fund AS fund, + funding_source AS source, + sum( amount ) AS balance + FROM + acq.fund_allocation + GROUP BY + fund, + funding_source + HAVING + sum( amount ) > 0; + -- + CREATE INDEX t_fund_source_bal_idx + ON t_fund_source_bal( fund, source ); + ------------------------------------------------------------------------------- + -- + -- Load another temporary table. For each fund, load zero or more + -- funding source credits from which that fund can get money. + -- + CREATE TEMP TABLE t_fund_credit ( + fund INT, + seq INT, + credit INT + ) ON COMMIT DROP; + -- + FOR fc IN + SELECT DISTINCT fund + FROM acq.fund_allocation + ORDER BY fund + LOOP -- Loop over the funds + seqno := 1; + FOR sc IN + SELECT + ofsc.id + FROM + acq.ordered_funding_source_credit AS ofsc + WHERE + ofsc.funding_source IN + ( + SELECT funding_source + FROM acq.fund_allocation + WHERE fund = fc.fund + ) + ORDER BY + ofsc.sort_priority, + ofsc.sort_date, + ofsc.id + LOOP -- Add each credit to the list + INSERT INTO t_fund_credit ( + fund, + seq, + credit + ) VALUES ( + fc.fund, + seqno, + sc.id + ); + --RAISE NOTICE 'Fund % credit %', fc.fund, sc.id; + seqno := seqno + 1; + END LOOP; -- Loop over credits for a given fund + END LOOP; -- Loop over funds + -- + CREATE INDEX t_fund_credit_idx + ON t_fund_credit( fund, seq ); + ------------------------------------------------------------------------------- + -- + -- Load yet another temporary table. This one is a list of funding source + -- credits, with their balances. We shall reduce those balances as we + -- attribute debits to them. + -- + CREATE TEMP TABLE t_credit + ON COMMIT DROP AS + SELECT + fsc.id AS credit, + fsc.funding_source AS source, + fsc.amount AS balance, + fs.currency_type AS currency_type + FROM + acq.funding_source_credit AS fsc, + acq.funding_source fs + WHERE + fsc.funding_source = fs.id + AND fsc.amount > 0; + -- + CREATE INDEX t_credit_idx + ON t_credit( credit ); + -- + ------------------------------------------------------------------------------- + -- + -- Now that we have loaded the lookup tables: loop through the debits, + -- attributing each one to one or more funding source credits. + -- + truncate table acq.debit_attribution; + -- + attrib_count := 0; + FOR deb in + SELECT + fd.id, + fd.fund, + fd.amount, + f.currency_type, + fd.encumbrance + FROM + acq.fund_debit fd, + acq.fund f + WHERE + fd.fund = f.id + ORDER BY + fd.id + LOOP + --RAISE NOTICE 'Debit %, fund %', deb.id, deb.fund; + -- + debit_balance := deb.amount; + -- + -- Loop over the funding source credits that are eligible + -- to pay for this debit + -- + FOR fund_credit IN + SELECT + credit + FROM + t_fund_credit + WHERE + fund = deb.fund + ORDER BY + seq + LOOP + --RAISE NOTICE ' Examining credit %', fund_credit.credit; + -- + -- Look up the balance for this credit. If it's zero, then + -- it's not useful, so treat it as if you didn't find it. + -- (Actually there shouldn't be any zero balances in the table, + -- but we check just to make sure.) + -- + SELECT * + INTO curr_credit_bal + FROM t_credit + WHERE + credit = fund_credit.credit + AND balance > 0; + -- + IF curr_credit_bal IS NULL THEN + -- + -- This credit is exhausted; try the next one. + -- + CONTINUE; + END IF; + -- + -- + -- At this point we have an applicable credit with some money left. + -- Now see if the relevant funding_source has any money left. + -- + -- Look up the balance of the allocation for this combination of + -- fund and source. If you find such an entry, but it has a zero + -- balance, then it's not useful, so treat it as unfound. + -- (Actually there shouldn't be any zero balances in the table, + -- but we check just to make sure.) + -- + SELECT * + INTO curr_fund_source_bal + FROM t_fund_source_bal + WHERE + fund = deb.fund + AND source = curr_credit_bal.source + AND balance > 0; + -- + IF curr_fund_source_bal IS NULL THEN + -- + -- This fund/source doesn't exist or is already exhausted, + -- so we can't use this credit. Go on to the next one. + -- + CONTINUE; + END IF; + -- + -- Convert the available balances to the currency of the fund + -- + conv_alloc_balance := curr_fund_source_bal.balance * acq.exchange_ratio( + curr_credit_bal.currency_type, deb.currency_type ); + conv_cred_balance := curr_credit_bal.balance * acq.exchange_ratio( + curr_credit_bal.currency_type, deb.currency_type ); + -- + -- Determine how much we can attribute to this credit: the minimum + -- of the debit amount, the fund/source balance, and the + -- credit balance + -- + --RAISE NOTICE ' deb bal %', debit_balance; + --RAISE NOTICE ' source % balance %', curr_credit_bal.source, conv_alloc_balance; + --RAISE NOTICE ' credit % balance %', curr_credit_bal.credit, conv_cred_balance; + -- + conv_attr_amount := NULL; + attr_amount := debit_balance; + -- + IF attr_amount > conv_alloc_balance THEN + attr_amount := conv_alloc_balance; + conv_attr_amount := curr_fund_source_bal.balance; + END IF; + IF attr_amount > conv_cred_balance THEN + attr_amount := conv_cred_balance; + conv_attr_amount := curr_credit_bal.balance; + END IF; + -- + -- If we're attributing all of one of the balances, then that's how + -- much we will deduct from the balances, and we already captured + -- that amount above. Otherwise we must convert the amount of the + -- attribution from the currency of the fund back to the currency of + -- the funding source. + -- + IF conv_attr_amount IS NULL THEN + conv_attr_amount := attr_amount * acq.exchange_ratio( + deb.currency_type, curr_credit_bal.currency_type ); + END IF; + -- + -- Insert a row to record the attribution + -- + attrib_count := attrib_count + 1; + INSERT INTO acq.debit_attribution ( + id, + fund_debit, + debit_amount, + funding_source_credit, + credit_amount + ) VALUES ( + attrib_count, + deb.id, + attr_amount, + curr_credit_bal.credit, + conv_attr_amount + ); + -- + -- Subtract the attributed amount from the various balances + -- + debit_balance := debit_balance - attr_amount; + curr_fund_source_bal.balance := curr_fund_source_bal.balance - conv_attr_amount; + -- + IF curr_fund_source_bal.balance <= 0 THEN + -- + -- This allocation is exhausted. Delete it so + -- that we don't waste time looking at it again. + -- + DELETE FROM t_fund_source_bal + WHERE + fund = curr_fund_source_bal.fund + AND source = curr_fund_source_bal.source; + ELSE + UPDATE t_fund_source_bal + SET balance = balance - conv_attr_amount + WHERE + fund = curr_fund_source_bal.fund + AND source = curr_fund_source_bal.source; + END IF; + -- + IF curr_credit_bal.balance <= 0 THEN + -- + -- This funding source credit is exhausted. Delete it + -- so that we don't waste time looking at it again. + -- + --DELETE FROM t_credit + --WHERE + -- credit = curr_credit_bal.credit; + -- + DELETE FROM t_fund_credit + WHERE + credit = curr_credit_bal.credit; + ELSE + UPDATE t_credit + SET balance = curr_credit_bal.balance + WHERE + credit = curr_credit_bal.credit; + END IF; + -- + -- Are we done with this debit yet? + -- + IF debit_balance <= 0 THEN + EXIT; -- We've fully attributed this debit; stop looking at credits. + END IF; + END LOOP; -- End loop over credits + -- + IF debit_balance <> 0 THEN + -- + -- We weren't able to attribute this debit, or at least not + -- all of it. Insert a row for the unattributed balance. + -- + attrib_count := attrib_count + 1; + INSERT INTO acq.debit_attribution ( + id, + fund_debit, + debit_amount, + funding_source_credit, + credit_amount + ) VALUES ( + attrib_count, + deb.id, + debit_balance, + NULL, + NULL + ); + END IF; + END LOOP; -- End of loop over debits +END; +$$; + + +ALTER FUNCTION acq.attribute_debits() OWNER TO evergreen; + +-- +-- Name: audit_acq_lineitem_func(); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION audit_acq_lineitem_func() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + INSERT INTO acq.acq_lineitem_history + SELECT nextval('acq.acq_lineitem_pkey_seq'), + now(), + SUBSTR(TG_OP,1,1), + OLD.*; + RETURN NULL; + END; + $$; + + +ALTER FUNCTION acq.audit_acq_lineitem_func() OWNER TO evergreen; + +-- +-- Name: audit_acq_purchase_order_func(); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION audit_acq_purchase_order_func() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + INSERT INTO acq.acq_purchase_order_history + SELECT nextval('acq.acq_purchase_order_pkey_seq'), + now(), + SUBSTR(TG_OP,1,1), + OLD.*; + RETURN NULL; + END; + $$; + + +ALTER FUNCTION acq.audit_acq_purchase_order_func() OWNER TO evergreen; + +-- +-- Name: copy_fund_tags(integer, integer); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION copy_fund_tags(old_fund_id integer, new_fund_id integer) RETURNS void + LANGUAGE plpgsql + AS $$ +DECLARE +fund_tag_rec RECORD; +BEGIN + + FOR fund_tag_rec IN SELECT * FROM acq.fund_tag_map WHERE fund=old_fund_id LOOP + BEGIN + INSERT INTO acq.fund_tag_map(fund, tag) VALUES(new_fund_id, fund_tag_rec.tag); + EXCEPTION + WHEN unique_violation THEN + -- RAISE NOTICE 'Fund tag already propagated', old_fund.id; + CONTINUE; + END; + END LOOP; + RETURN; +END; +$$; + + +ALTER FUNCTION acq.copy_fund_tags(old_fund_id integer, new_fund_id integer) OWNER TO evergreen; + +-- +-- Name: create_acq_auditor(text, text); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION create_acq_auditor(sch text, tbl text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +BEGIN + PERFORM acq.create_acq_seq(sch, tbl); + PERFORM acq.create_acq_history(sch, tbl); + PERFORM acq.create_acq_func(sch, tbl); + PERFORM acq.create_acq_update_trigger(sch, tbl); + PERFORM acq.create_acq_lifecycle(sch, tbl); + RETURN TRUE; +END; +$$; + + +ALTER FUNCTION acq.create_acq_auditor(sch text, tbl text) OWNER TO evergreen; + +-- +-- Name: create_acq_func(text, text); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION create_acq_func(sch text, tbl text) RETURNS boolean + LANGUAGE plpgsql + AS $_X$ +BEGIN + EXECUTE $$ + CREATE OR REPLACE FUNCTION acq.audit_$$ || sch || $$_$$ || tbl || $$_func () + RETURNS TRIGGER AS $func$ + BEGIN + INSERT INTO acq.$$ || sch || $$_$$ || tbl || $$_history + SELECT nextval('acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq'), + now(), + SUBSTR(TG_OP,1,1), + OLD.*; + RETURN NULL; + END; + $func$ LANGUAGE 'plpgsql'; + $$; + RETURN TRUE; +END; +$_X$; + + +ALTER FUNCTION acq.create_acq_func(sch text, tbl text) OWNER TO evergreen; + +-- +-- Name: create_acq_history(text, text); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION create_acq_history(sch text, tbl text) RETURNS boolean + LANGUAGE plpgsql + AS $_X$ +BEGIN + EXECUTE $$ + CREATE TABLE acq.$$ || sch || $$_$$ || tbl || $$_history ( + audit_id BIGINT PRIMARY KEY, + audit_time TIMESTAMP WITH TIME ZONE NOT NULL, + audit_action TEXT NOT NULL, + LIKE $$ || sch || $$.$$ || tbl || $$ + ); + $$; + RETURN TRUE; +END; +$_X$; + + +ALTER FUNCTION acq.create_acq_history(sch text, tbl text) OWNER TO evergreen; + +-- +-- Name: create_acq_lifecycle(text, text); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION create_acq_lifecycle(sch text, tbl text) RETURNS boolean + LANGUAGE plpgsql + AS $_X$ +BEGIN + EXECUTE $$ + CREATE OR REPLACE VIEW acq.$$ || sch || $$_$$ || tbl || $$_lifecycle AS + SELECT -1, now() as audit_time, '-' as audit_action, * + FROM $$ || sch || $$.$$ || tbl || $$ + UNION ALL + SELECT * + FROM acq.$$ || sch || $$_$$ || tbl || $$_history; + $$; + RETURN TRUE; +END; +$_X$; + + +ALTER FUNCTION acq.create_acq_lifecycle(sch text, tbl text) OWNER TO evergreen; + +-- +-- Name: create_acq_seq(text, text); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION create_acq_seq(sch text, tbl text) RETURNS boolean + LANGUAGE plpgsql + AS $_X$ +BEGIN + EXECUTE $$ + CREATE SEQUENCE acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq; + $$; + RETURN TRUE; +END; +$_X$; + + +ALTER FUNCTION acq.create_acq_seq(sch text, tbl text) OWNER TO evergreen; + +-- +-- Name: create_acq_update_trigger(text, text); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION create_acq_update_trigger(sch text, tbl text) RETURNS boolean + LANGUAGE plpgsql + AS $_X$ +BEGIN + EXECUTE $$ + CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger + AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW + EXECUTE PROCEDURE acq.audit_$$ || sch || $$_$$ || tbl || $$_func (); + $$; + RETURN TRUE; +END; +$_X$; + + +ALTER FUNCTION acq.create_acq_update_trigger(sch text, tbl text) OWNER TO evergreen; + +-- +-- Name: exchange_ratio(text, text); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION exchange_ratio(from_ex text, to_ex text) RETURNS numeric + LANGUAGE plpgsql + AS $$ +DECLARE + rat NUMERIC; +BEGIN + IF from_ex = to_ex THEN + RETURN 1.0; + END IF; + + SELECT ratio INTO rat FROM acq.exchange_rate WHERE from_currency = from_ex AND to_currency = to_ex; + + IF FOUND THEN + RETURN rat; + ELSE + SELECT ratio INTO rat FROM acq.exchange_rate WHERE from_currency = to_ex AND to_currency = from_ex; + IF FOUND THEN + RETURN 1.0/rat; + END IF; + END IF; + + RETURN NULL; + +END; +$$; + + +ALTER FUNCTION acq.exchange_ratio(from_ex text, to_ex text) OWNER TO evergreen; + +-- +-- Name: exchange_ratio(text, text, numeric); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION exchange_ratio(text, text, numeric) RETURNS numeric + LANGUAGE sql + AS $_$ + SELECT $3 * acq.exchange_ratio($1, $2); +$_$; + + +ALTER FUNCTION acq.exchange_ratio(text, text, numeric) OWNER TO evergreen; + +-- +-- Name: extract_holding_attr_table(integer, text); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION extract_holding_attr_table(lineitem integer, tag text) RETURNS SETOF flat_lineitem_holding_subfield + LANGUAGE plpgsql + AS $$ +DECLARE + counter INT; + lida acq.flat_lineitem_holding_subfield%ROWTYPE; +BEGIN + + SELECT COUNT(*) INTO counter + FROM oils_xpath_table( + 'id', + 'marc', + 'acq.lineitem', + '//*[@tag="' || tag || '"]', + 'id=' || lineitem + ) as t(i int,c text); + + FOR i IN 1 .. counter LOOP + FOR lida IN + SELECT * + FROM ( SELECT id,i,t,v + FROM oils_xpath_table( + 'id', + 'marc', + 'acq.lineitem', + '//*[@tag="' || tag || '"][position()=' || i || ']/*/@code|' || + '//*[@tag="' || tag || '"][position()=' || i || ']/*[@code]', + 'id=' || lineitem + ) as t(id int,t text,v text) + )x + LOOP + RETURN NEXT lida; + END LOOP; + END LOOP; + + RETURN; +END; +$$; + + +ALTER FUNCTION acq.extract_holding_attr_table(lineitem integer, tag text) OWNER TO evergreen; + +-- +-- Name: extract_provider_holding_data(integer); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION extract_provider_holding_data(lineitem_i integer) RETURNS SETOF flat_lineitem_detail + LANGUAGE plpgsql + AS $$ +DECLARE + prov_i INT; + tag_t TEXT; + lida acq.flat_lineitem_detail%ROWTYPE; +BEGIN + SELECT provider INTO prov_i FROM acq.lineitem WHERE id = lineitem_i; + IF NOT FOUND THEN RETURN; END IF; + + SELECT holding_tag INTO tag_t FROM acq.provider WHERE id = prov_i; + IF NOT FOUND OR tag_t IS NULL THEN RETURN; END IF; + + FOR lida IN + SELECT lineitem_i, + h.holding, + a.name, + h.data + FROM acq.extract_holding_attr_table( lineitem_i, tag_t ) h + JOIN acq.provider_holding_subfield_map a USING (subfield) + WHERE a.provider = prov_i + LOOP + RETURN NEXT lida; + END LOOP; + + RETURN; +END; +$$; + + +ALTER FUNCTION acq.extract_provider_holding_data(lineitem_i integer) OWNER TO evergreen; + +-- +-- Name: fap_limit_100(); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION fap_limit_100() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE +-- +total_percent numeric; +-- +BEGIN + SELECT + sum( percent ) + INTO + total_percent + FROM + acq.fund_allocation_percent AS fap + WHERE + fap.funding_source = NEW.funding_source; + -- + IF total_percent > 100 THEN + RAISE EXCEPTION 'Total percentages exceed 100 for funding_source %', + NEW.funding_source; + ELSE + RETURN NEW; + END IF; +END; +$$; + + +ALTER FUNCTION acq.fap_limit_100() OWNER TO evergreen; + +-- +-- Name: find_bad_fy(); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION find_bad_fy() RETURNS SETOF record + LANGUAGE plpgsql + AS $$ +DECLARE + first_row BOOLEAN; + curr_year RECORD; + prev_year RECORD; + return_rec RECORD; +BEGIN + first_row := true; + FOR curr_year in + SELECT + id, + calendar, + year, + year_begin, + year_end + FROM + acq.fiscal_year + ORDER BY + calendar, + year_begin + LOOP + -- + IF first_row THEN + first_row := FALSE; + ELSIF curr_year.calendar = prev_year.calendar THEN + IF curr_year.year_begin > prev_year.year_end THEN + -- This ugly kludge works around the fact that older + -- versions of PostgreSQL don't support RETURN QUERY SELECT + FOR return_rec IN SELECT + prev_year.id, + prev_year.year, + 'Gap between fiscal years'::TEXT + LOOP + RETURN NEXT return_rec; + END LOOP; + ELSIF curr_year.year_begin < prev_year.year_end THEN + FOR return_rec IN SELECT + prev_year.id, + prev_year.year, + 'Overlapping fiscal years'::TEXT + LOOP + RETURN NEXT return_rec; + END LOOP; + ELSIF curr_year.year < prev_year.year THEN + FOR return_rec IN SELECT + prev_year.id, + prev_year.year, + 'Fiscal years out of order'::TEXT + LOOP + RETURN NEXT return_rec; + END LOOP; + END IF; + END IF; + -- + prev_year := curr_year; + END LOOP; + -- + RETURN; +END; +$$; + + +ALTER FUNCTION acq.find_bad_fy() OWNER TO evergreen; + +-- +-- Name: fund_alloc_percent_val(); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION fund_alloc_percent_val() RETURNS trigger + LANGUAGE plpgsql + AS $$ +-- +DECLARE +-- +dummy int := 0; +-- +BEGIN + SELECT + 1 + INTO + dummy + FROM + acq.fund + WHERE + org = NEW.org + AND code = NEW.fund_code + LIMIT 1; + -- + IF dummy = 1 then + RETURN NEW; + ELSE + RAISE EXCEPTION 'No fund exists for org % and code %', NEW.org, NEW.fund_code; + END IF; +END; +$$; + + +ALTER FUNCTION acq.fund_alloc_percent_val() OWNER TO evergreen; + +-- +-- Name: po_org_name_date_unique(); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION po_org_name_date_unique() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + collision INT; +BEGIN + -- + -- If order_date is not null, then make sure we don't have a collision + -- on order_date (truncated to day), org, and name + -- + IF NEW.order_date IS NULL THEN + RETURN NEW; + END IF; + -- + -- In the WHERE clause, we compare the order_dates without regard to time of day. + -- We use a pair of inequalities instead of comparing truncated dates so that the + -- query can do an indexed range scan. + -- + SELECT 1 INTO collision + FROM acq.purchase_order + WHERE + ordering_agency = NEW.ordering_agency + AND name = NEW.name + AND order_date >= date_trunc( 'day', NEW.order_date ) + AND order_date < date_trunc( 'day', NEW.order_date ) + '1 day'::INTERVAL + AND id <> NEW.id; + -- + IF collision IS NULL THEN + -- okay, no collision + RETURN NEW; + ELSE + -- collision; nip it in the bud + RAISE EXCEPTION 'Colliding purchase orders: ordering_agency %, date %, name ''%''', + NEW.ordering_agency, NEW.order_date, NEW.name; + END IF; +END; +$$; + + +ALTER FUNCTION acq.po_org_name_date_unique() OWNER TO evergreen; + +-- +-- Name: propagate_funds_by_org_tree(integer, integer, integer, boolean); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION propagate_funds_by_org_tree(old_year integer, user_id integer, org_unit_id integer, include_desc boolean DEFAULT true) RETURNS void + LANGUAGE plpgsql + AS $$ +DECLARE +-- +new_id INT; +old_fund RECORD; +org_found BOOLEAN; +-- +BEGIN + -- + -- Sanity checks + -- + IF old_year IS NULL THEN + RAISE EXCEPTION 'Input year argument is NULL'; + ELSIF old_year NOT BETWEEN 2008 and 2200 THEN + RAISE EXCEPTION 'Input year is out of range'; + END IF; + -- + IF user_id IS NULL THEN + RAISE EXCEPTION 'Input user id argument is NULL'; + END IF; + -- + IF org_unit_id IS NULL THEN + RAISE EXCEPTION 'Org unit id argument is NULL'; + ELSE + SELECT TRUE INTO org_found + FROM actor.org_unit + WHERE id = org_unit_id; + -- + IF org_found IS NULL THEN + RAISE EXCEPTION 'Org unit id is invalid'; + END IF; + END IF; + -- + -- Loop over the applicable funds + -- + FOR old_fund in SELECT * FROM acq.fund + WHERE + year = old_year + AND propagate + AND ( ( include_desc AND org IN ( SELECT id FROM actor.org_unit_descendants( org_unit_id ) ) ) + OR (NOT include_desc AND org = org_unit_id ) ) + + LOOP + BEGIN + INSERT INTO acq.fund ( + org, + name, + year, + currency_type, + code, + rollover, + propagate, + balance_warning_percent, + balance_stop_percent + ) VALUES ( + old_fund.org, + old_fund.name, + old_year + 1, + old_fund.currency_type, + old_fund.code, + old_fund.rollover, + true, + old_fund.balance_warning_percent, + old_fund.balance_stop_percent + ) + RETURNING id INTO new_id; + EXCEPTION + WHEN unique_violation THEN + --RAISE NOTICE 'Fund % already propagated', old_fund.id; + CONTINUE; + END; + + PERFORM acq.copy_fund_tags(old_fund.id,new_id); + + --RAISE NOTICE 'Propagating fund % to fund %', + -- old_fund.code, new_id; + END LOOP; +END; +$$; + + +ALTER FUNCTION acq.propagate_funds_by_org_tree(old_year integer, user_id integer, org_unit_id integer, include_desc boolean) OWNER TO evergreen; + +-- +-- Name: propagate_funds_by_org_unit(integer, integer, integer); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION propagate_funds_by_org_unit(old_year integer, user_id integer, org_unit_id integer) RETURNS void + LANGUAGE sql + AS $_$ + SELECT acq.propagate_funds_by_org_tree( $1, $2, $3, FALSE ); +$_$; + + +ALTER FUNCTION acq.propagate_funds_by_org_unit(old_year integer, user_id integer, org_unit_id integer) OWNER TO evergreen; + +-- +-- Name: purchase_order_name_default(); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION purchase_order_name_default() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + IF NEW.name IS NULL THEN + NEW.name := NEW.id::TEXT; + END IF; + + RETURN NEW; +END; +$$; + + +ALTER FUNCTION acq.purchase_order_name_default() OWNER TO evergreen; + +-- +-- Name: rollover_funds_by_org_tree(integer, integer, integer, boolean, boolean); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION rollover_funds_by_org_tree(old_year integer, user_id integer, org_unit_id integer, encumb_only boolean DEFAULT false, include_desc boolean DEFAULT true) RETURNS void + LANGUAGE plpgsql + AS $$ +DECLARE +-- +new_fund INT; +new_year INT := old_year + 1; +org_found BOOL; +perm_ous BOOL; +xfer_amount NUMERIC := 0; +roll_fund RECORD; +deb RECORD; +detail RECORD; +roll_distrib_forms BOOL; +-- +BEGIN + -- + -- Sanity checks + -- + IF old_year IS NULL THEN + RAISE EXCEPTION 'Input year argument is NULL'; + ELSIF old_year NOT BETWEEN 2008 and 2200 THEN + RAISE EXCEPTION 'Input year is out of range'; + END IF; + -- + IF user_id IS NULL THEN + RAISE EXCEPTION 'Input user id argument is NULL'; + END IF; + -- + IF org_unit_id IS NULL THEN + RAISE EXCEPTION 'Org unit id argument is NULL'; + ELSE + -- + -- Validate the org unit + -- + SELECT TRUE + INTO org_found + FROM actor.org_unit + WHERE id = org_unit_id; + -- + IF org_found IS NULL THEN + RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id; + ELSIF encumb_only THEN + SELECT INTO perm_ous value::BOOL FROM + actor.org_unit_ancestor_setting( + 'acq.fund.allow_rollover_without_money', org_unit_id + ); + IF NOT FOUND OR NOT perm_ous THEN + RAISE EXCEPTION 'Encumbrance-only rollover not permitted at org %', org_unit_id; + END IF; + END IF; + END IF; + -- + -- Loop over the propagable funds to identify the details + -- from the old fund plus the id of the new one, if it exists. + -- + FOR roll_fund in + SELECT + oldf.id AS old_fund, + oldf.org, + oldf.name, + oldf.currency_type, + oldf.code, + oldf.rollover, + newf.id AS new_fund_id + FROM + acq.fund AS oldf + LEFT JOIN acq.fund AS newf + ON ( oldf.code = newf.code ) + WHERE + oldf.year = old_year + AND oldf.propagate + AND newf.year = new_year + AND ( ( include_desc AND oldf.org IN ( SELECT id FROM actor.org_unit_descendants( org_unit_id ) ) ) + OR (NOT include_desc AND oldf.org = org_unit_id ) ) + LOOP + --RAISE NOTICE 'Processing fund %', roll_fund.old_fund; + -- + IF roll_fund.new_fund_id IS NULL THEN + -- + -- The old fund hasn't been propagated yet. Propagate it now. + -- + INSERT INTO acq.fund ( + org, + name, + year, + currency_type, + code, + rollover, + propagate, + balance_warning_percent, + balance_stop_percent + ) VALUES ( + roll_fund.org, + roll_fund.name, + new_year, + roll_fund.currency_type, + roll_fund.code, + true, + true, + roll_fund.balance_warning_percent, + roll_fund.balance_stop_percent + ) + RETURNING id INTO new_fund; + + PERFORM acq.copy_fund_tags(roll_fund.id,new_fund); + + ELSE + new_fund = roll_fund.new_fund_id; + END IF; + -- + -- Determine the amount to transfer + -- + SELECT amount + INTO xfer_amount + FROM acq.fund_spent_balance + WHERE fund = roll_fund.old_fund; + -- + IF xfer_amount <> 0 THEN + IF NOT encumb_only AND roll_fund.rollover THEN + -- + -- Transfer balance from old fund to new + -- + --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund; + -- + PERFORM acq.transfer_fund( + roll_fund.old_fund, + xfer_amount, + new_fund, + xfer_amount, + user_id, + 'Rollover' + ); + ELSE + -- + -- Transfer balance from old fund to the void + -- + -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund; + -- + PERFORM acq.transfer_fund( + roll_fund.old_fund, + xfer_amount, + NULL, + NULL, + user_id, + 'Rollover into the void' + ); + END IF; + END IF; + -- + IF roll_fund.rollover THEN + -- + -- Move any lineitems from the old fund to the new one + -- where the associated debit is an encumbrance. + -- + -- Any other tables tying expenditure details to funds should + -- receive similar treatment. At this writing there are none. + -- + UPDATE acq.lineitem_detail + SET fund = new_fund + WHERE + fund = roll_fund.old_fund -- this condition may be redundant + AND fund_debit in + ( + SELECT id + FROM acq.fund_debit + WHERE + fund = roll_fund.old_fund + AND encumbrance + ); + -- + -- Move encumbrance debits from the old fund to the new fund + -- + UPDATE acq.fund_debit + SET fund = new_fund + wHERE + fund = roll_fund.old_fund + AND encumbrance; + END IF; + + -- Rollover distribution formulae funds + SELECT INTO roll_distrib_forms value::BOOL FROM + actor.org_unit_ancestor_setting( + 'acq.fund.rollover_distrib_forms', org_unit_id + ); + + IF roll_distrib_forms THEN + UPDATE acq.distribution_formula_entry + SET fund = roll_fund.new_fund_id + WHERE fund = roll_fund.old_fund; + END IF; + + -- + -- Mark old fund as inactive, now that we've closed it + -- + UPDATE acq.fund + SET active = FALSE + WHERE id = roll_fund.old_fund; + END LOOP; +END; +$$; + + +ALTER FUNCTION acq.rollover_funds_by_org_tree(old_year integer, user_id integer, org_unit_id integer, encumb_only boolean, include_desc boolean) OWNER TO evergreen; + +-- +-- Name: rollover_funds_by_org_unit(integer, integer, integer, boolean); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION rollover_funds_by_org_unit(old_year integer, user_id integer, org_unit_id integer, encumb_only boolean DEFAULT false) RETURNS void + LANGUAGE sql + AS $_$ + SELECT acq.rollover_funds_by_org_tree( $1, $2, $3, $4, FALSE ); +$_$; + + +ALTER FUNCTION acq.rollover_funds_by_org_unit(old_year integer, user_id integer, org_unit_id integer, encumb_only boolean) OWNER TO evergreen; + +-- +-- Name: transfer_fund(integer, numeric, integer, numeric, integer, text); Type: FUNCTION; Schema: acq; Owner: evergreen +-- + +CREATE FUNCTION transfer_fund(old_fund integer, old_amount numeric, new_fund integer, new_amount numeric, user_id integer, xfer_note text) RETURNS void + LANGUAGE plpgsql + AS $$ +/* ------------------------------------------------------------------------------- + +Function to transfer money from one fund to another. + +A transfer is represented as a pair of entries in acq.fund_allocation, with a +negative amount for the old (losing) fund and a positive amount for the new +(gaining) fund. In some cases there may be more than one such pair of entries +in order to pull the money from different funding sources, or more specifically +from different funding source credits. For each such pair there is also an +entry in acq.fund_transfer. + +Since funding_source is a non-nullable column in acq.fund_allocation, we must +choose a funding source for the transferred money to come from. This choice +must meet two constraints, so far as possible: + +1. The amount transferred from a given funding source must not exceed the +amount allocated to the old fund by the funding source. To that end we +compare the amount being transferred to the amount allocated. + +2. We shouldn't transfer money that has already been spent or encumbered, as +defined by the funding attribution process. We attribute expenses to the +oldest funding source credits first. In order to avoid transferring that +attributed money, we reverse the priority, transferring from the newest funding +source credits first. There can be no guarantee that this approach will +avoid overcommitting a fund, but no other approach can do any better. + +In this context the age of a funding source credit is defined by the +deadline_date for credits with deadline_dates, and by the effective_date for +credits without deadline_dates, with the proviso that credits with deadline_dates +are all considered "older" than those without. + +---------- + +In the signature for this function, there is one last parameter commented out, +named "funding_source_in". Correspondingly, the WHERE clause for the query +driving the main loop has an OR clause commented out, which references the +funding_source_in parameter. + +If these lines are uncommented, this function will allow the user optionally to +restrict a fund transfer to a specified funding source. If the source +parameter is left NULL, then there will be no such restriction. + +------------------------------------------------------------------------------- */ +DECLARE + same_currency BOOLEAN; + currency_ratio NUMERIC; + old_fund_currency TEXT; + old_remaining NUMERIC; -- in currency of old fund + new_fund_currency TEXT; + new_fund_active BOOLEAN; + new_remaining NUMERIC; -- in currency of new fund + curr_old_amt NUMERIC; -- in currency of old fund + curr_new_amt NUMERIC; -- in currency of new fund + source_addition NUMERIC; -- in currency of funding source + source_deduction NUMERIC; -- in currency of funding source + orig_allocated_amt NUMERIC; -- in currency of funding source + allocated_amt NUMERIC; -- in currency of fund + source RECORD; +BEGIN + -- + -- Sanity checks + -- + IF old_fund IS NULL THEN + RAISE EXCEPTION 'acq.transfer_fund: old fund id is NULL'; + END IF; + -- + IF old_amount IS NULL THEN + RAISE EXCEPTION 'acq.transfer_fund: amount to transfer is NULL'; + END IF; + -- + -- The new fund and its amount must be both NULL or both not NULL. + -- + IF new_fund IS NOT NULL AND new_amount IS NULL THEN + RAISE EXCEPTION 'acq.transfer_fund: amount to transfer to receiving fund is NULL'; + END IF; + -- + IF new_fund IS NULL AND new_amount IS NOT NULL THEN + RAISE EXCEPTION 'acq.transfer_fund: receiving fund is NULL, its amount is not NULL'; + END IF; + -- + IF user_id IS NULL THEN + RAISE EXCEPTION 'acq.transfer_fund: user id is NULL'; + END IF; + -- + -- Initialize the amounts to be transferred, each denominated + -- in the currency of its respective fund. They will be + -- reduced on each iteration of the loop. + -- + old_remaining := old_amount; + new_remaining := new_amount; + -- + -- RAISE NOTICE 'Transferring % in fund % to % in fund %', + -- old_amount, old_fund, new_amount, new_fund; + -- + -- Get the currency types of the old and new funds. + -- + SELECT + currency_type + INTO + old_fund_currency + FROM + acq.fund + WHERE + id = old_fund; + -- + IF old_fund_currency IS NULL THEN + RAISE EXCEPTION 'acq.transfer_fund: old fund id % is not defined', old_fund; + END IF; + -- + IF new_fund IS NOT NULL THEN + SELECT + currency_type, + active + INTO + new_fund_currency, + new_fund_active + FROM + acq.fund + WHERE + id = new_fund; + -- + IF new_fund_currency IS NULL THEN + RAISE EXCEPTION 'acq.transfer_fund: new fund id % is not defined', new_fund; + ELSIF NOT new_fund_active THEN + -- + -- No point in putting money into a fund from whence you can't spend it + -- + RAISE EXCEPTION 'acq.transfer_fund: new fund id % is inactive', new_fund; + END IF; + -- + IF new_amount = old_amount THEN + same_currency := true; + currency_ratio := 1; + ELSE + -- + -- We'll have to translate currency between funds. We presume that + -- the calling code has already applied an appropriate exchange rate, + -- so we'll apply the same conversion to each sub-transfer. + -- + same_currency := false; + currency_ratio := new_amount / old_amount; + END IF; + END IF; + -- + -- Identify the funding source(s) from which we want to transfer the money. + -- The principle is that we want to transfer the newest money first, because + -- we spend the oldest money first. The priority for spending is defined + -- by a sort of the view acq.ordered_funding_source_credit. + -- + FOR source in + SELECT + ofsc.id, + ofsc.funding_source, + ofsc.amount, + ofsc.amount * acq.exchange_ratio( fs.currency_type, old_fund_currency ) + AS converted_amt, + fs.currency_type + FROM + acq.ordered_funding_source_credit AS ofsc, + acq.funding_source fs + WHERE + ofsc.funding_source = fs.id + and ofsc.funding_source IN + ( + SELECT funding_source + FROM acq.fund_allocation + WHERE fund = old_fund + ) + -- and + -- ( + -- ofsc.funding_source = funding_source_in + -- OR funding_source_in IS NULL + -- ) + ORDER BY + ofsc.sort_priority desc, + ofsc.sort_date desc, + ofsc.id desc + LOOP + -- + -- Determine how much money the old fund got from this funding source, + -- denominated in the currency types of the source and of the fund. + -- This result may reflect transfers from previous iterations. + -- + SELECT + COALESCE( sum( amount ), 0 ), + COALESCE( sum( amount ) + * acq.exchange_ratio( source.currency_type, old_fund_currency ), 0 ) + INTO + orig_allocated_amt, -- in currency of the source + allocated_amt -- in currency of the old fund + FROM + acq.fund_allocation + WHERE + fund = old_fund + and funding_source = source.funding_source; + -- + -- Determine how much to transfer from this credit, in the currency + -- of the fund. Begin with the amount remaining to be attributed: + -- + curr_old_amt := old_remaining; + -- + -- Can't attribute more than was allocated from the fund: + -- + IF curr_old_amt > allocated_amt THEN + curr_old_amt := allocated_amt; + END IF; + -- + -- Can't attribute more than the amount of the current credit: + -- + IF curr_old_amt > source.converted_amt THEN + curr_old_amt := source.converted_amt; + END IF; + -- + curr_old_amt := trunc( curr_old_amt, 2 ); + -- + old_remaining := old_remaining - curr_old_amt; + -- + -- Determine the amount to be deducted, if any, + -- from the old allocation. + -- + IF old_remaining > 0 THEN + -- + -- In this case we're using the whole allocation, so use that + -- amount directly instead of applying a currency translation + -- and thereby inviting round-off errors. + -- + source_deduction := - curr_old_amt; + ELSE + source_deduction := trunc( + ( - curr_old_amt ) * + acq.exchange_ratio( old_fund_currency, source.currency_type ), + 2 ); + END IF; + -- + IF source_deduction <> 0 THEN + -- + -- Insert negative allocation for old fund in fund_allocation, + -- converted into the currency of the funding source + -- + INSERT INTO acq.fund_allocation ( + funding_source, + fund, + amount, + allocator, + note + ) VALUES ( + source.funding_source, + old_fund, + source_deduction, + user_id, + 'Transfer to fund ' || new_fund + ); + END IF; + -- + IF new_fund IS NOT NULL THEN + -- + -- Determine how much to add to the new fund, in + -- its currency, and how much remains to be added: + -- + IF same_currency THEN + curr_new_amt := curr_old_amt; + ELSE + IF old_remaining = 0 THEN + -- + -- This is the last iteration, so nothing should be left + -- + curr_new_amt := new_remaining; + new_remaining := 0; + ELSE + curr_new_amt := trunc( curr_old_amt * currency_ratio, 2 ); + new_remaining := new_remaining - curr_new_amt; + END IF; + END IF; + -- + -- Determine how much to add, if any, + -- to the new fund's allocation. + -- + IF old_remaining > 0 THEN + -- + -- In this case we're using the whole allocation, so use that amount + -- amount directly instead of applying a currency translation and + -- thereby inviting round-off errors. + -- + source_addition := curr_new_amt; + ELSIF source.currency_type = old_fund_currency THEN + -- + -- In this case we don't need a round trip currency translation, + -- thereby inviting round-off errors: + -- + source_addition := curr_old_amt; + ELSE + source_addition := trunc( + curr_new_amt * + acq.exchange_ratio( new_fund_currency, source.currency_type ), + 2 ); + END IF; + -- + IF source_addition <> 0 THEN + -- + -- Insert positive allocation for new fund in fund_allocation, + -- converted to the currency of the founding source + -- + INSERT INTO acq.fund_allocation ( + funding_source, + fund, + amount, + allocator, + note + ) VALUES ( + source.funding_source, + new_fund, + source_addition, + user_id, + 'Transfer from fund ' || old_fund + ); + END IF; + END IF; + -- + IF trunc( curr_old_amt, 2 ) <> 0 + OR trunc( curr_new_amt, 2 ) <> 0 THEN + -- + -- Insert row in fund_transfer, using amounts in the currency of the funds + -- + INSERT INTO acq.fund_transfer ( + src_fund, + src_amount, + dest_fund, + dest_amount, + transfer_user, + note, + funding_source_credit + ) VALUES ( + old_fund, + trunc( curr_old_amt, 2 ), + new_fund, + trunc( curr_new_amt, 2 ), + user_id, + xfer_note, + source.id + ); + END IF; + -- + if old_remaining <= 0 THEN + EXIT; -- Nothing more to be transferred + END IF; + END LOOP; +END; +$$; + + +ALTER FUNCTION acq.transfer_fund(old_fund integer, old_amount numeric, new_fund integer, new_amount numeric, user_id integer, xfer_note text) OWNER TO evergreen; + +SET search_path = action, pg_catalog; + +-- +-- Name: age_circ_on_delete(); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION age_circ_on_delete() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE +found char := 'N'; +BEGIN + + -- If there are any renewals for this circulation, don't archive or delete + -- it yet. We'll do so later, when we archive and delete the renewals. + + SELECT 'Y' INTO found + FROM action.circulation + WHERE parent_circ = OLD.id + LIMIT 1; + + IF found = 'Y' THEN + RETURN NULL; -- don't delete + END IF; + + -- Archive a copy of the old row to action.aged_circulation + + INSERT INTO action.aged_circulation + (id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location, + copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy, + circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, grace_period, due_date, + stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine, + max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule, + max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ) + SELECT + id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location, + copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy, + circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, grace_period, due_date, + stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine, + max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule, + max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ + FROM action.all_circulation WHERE id = OLD.id; + + RETURN OLD; +END; +$$; + + +ALTER FUNCTION action.age_circ_on_delete() OWNER TO evergreen; + +-- +-- Name: age_hold_on_delete(); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION age_hold_on_delete() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE +BEGIN + -- Archive a copy of the old row to action.aged_hold_request + + INSERT INTO action.aged_hold_request + (usr_post_code, + usr_home_ou, + usr_profile, + usr_birth_year, + staff_placed, + id, + request_time, + capture_time, + fulfillment_time, + checkin_time, + return_time, + prev_check_time, + expire_time, + cancel_time, + cancel_cause, + cancel_note, + target, + current_copy, + fulfillment_staff, + fulfillment_lib, + request_lib, + selection_ou, + selection_depth, + pickup_lib, + hold_type, + holdable_formats, + phone_notify, + email_notify, + sms_notify, + frozen, + thaw_date, + shelf_time, + cut_in_line, + mint_condition, + shelf_expire_time, + current_shelf_lib, + behind_desk) + SELECT + usr_post_code, + usr_home_ou, + usr_profile, + usr_birth_year, + staff_placed, + id, + request_time, + capture_time, + fulfillment_time, + checkin_time, + return_time, + prev_check_time, + expire_time, + cancel_time, + cancel_cause, + cancel_note, + target, + current_copy, + fulfillment_staff, + fulfillment_lib, + request_lib, + selection_ou, + selection_depth, + pickup_lib, + hold_type, + holdable_formats, + phone_notify, + email_notify, + sms_notify, + frozen, + thaw_date, + shelf_time, + cut_in_line, + mint_condition, + shelf_expire_time, + current_shelf_lib, + behind_desk + FROM action.all_hold_request WHERE id = OLD.id; + + RETURN OLD; +END; +$$; + + +ALTER FUNCTION action.age_hold_on_delete() OWNER TO evergreen; + +-- +-- Name: age_parent_circ_on_delete(); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION age_parent_circ_on_delete() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + + -- Having deleted a renewal, we can delete the original circulation (or a previous + -- renewal, if that's what parent_circ is pointing to). That deletion will trigger + -- deletion of any prior parents, etc. recursively. + + IF OLD.parent_circ IS NOT NULL THEN + DELETE FROM action.circulation + WHERE id = OLD.parent_circ; + END IF; + + RETURN OLD; +END; +$$; + + +ALTER FUNCTION action.age_parent_circ_on_delete() OWNER TO evergreen; + +-- +-- Name: apply_fieldset(integer, text, text, text); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION apply_fieldset(fieldset_id integer, table_name text, pkey_name text, query text) RETURNS text + LANGUAGE plpgsql + AS $$ +DECLARE + statement TEXT; + fs_status TEXT; + fs_pkey_value TEXT; + fs_query TEXT; + sep CHAR; + status_code TEXT; + msg TEXT; + update_count INT; + cv RECORD; +BEGIN + -- Sanity checks + IF fieldset_id IS NULL THEN + RETURN 'Fieldset ID parameter is NULL'; + END IF; + IF table_name IS NULL THEN + RETURN 'Table name parameter is NULL'; + END IF; + IF pkey_name IS NULL THEN + RETURN 'Primary key name parameter is NULL'; + END IF; + -- + statement := 'UPDATE ' || table_name || ' SET'; + -- + SELECT + status, + quote_literal( pkey_value ) + INTO + fs_status, + fs_pkey_value + FROM + action.fieldset + WHERE + id = fieldset_id; + -- + IF fs_status IS NULL THEN + RETURN 'No fieldset found for id = ' || fieldset_id; + ELSIF fs_status = 'APPLIED' THEN + RETURN 'Fieldset ' || fieldset_id || ' has already been applied'; + END IF; + -- + sep := ''; + FOR cv IN + SELECT col, + val + FROM action.fieldset_col_val + WHERE fieldset = fieldset_id + LOOP + statement := statement || sep || ' ' || cv.col + || ' = ' || coalesce( quote_literal( cv.val ), 'NULL' ); + sep := ','; + END LOOP; + -- + IF sep = '' THEN + RETURN 'Fieldset ' || fieldset_id || ' has no column values defined'; + END IF; + -- + -- Add the WHERE clause. This differs according to whether it's a + -- single-row fieldset or a query-based fieldset. + -- + IF query IS NULL AND fs_pkey_value IS NULL THEN + RETURN 'Incomplete fieldset: neither a primary key nor a query available'; + ELSIF query IS NOT NULL AND fs_pkey_value IS NULL THEN + fs_query := rtrim( query, ';' ); + statement := statement || ' WHERE ' || pkey_name || ' IN ( ' + || fs_query || ' );'; + ELSIF query IS NULL AND fs_pkey_value IS NOT NULL THEN + statement := statement || ' WHERE ' || pkey_name || ' = ' + || fs_pkey_value || ';'; + ELSE -- both are not null + RETURN 'Ambiguous fieldset: both a primary key and a query provided'; + END IF; + -- + -- Execute the update + -- + BEGIN + EXECUTE statement; + GET DIAGNOSTICS update_count = ROW_COUNT; + -- + IF UPDATE_COUNT > 0 THEN + status_code := 'APPLIED'; + msg := NULL; + ELSE + status_code := 'ERROR'; + msg := 'No eligible rows found for fieldset ' || fieldset_id; + END IF; + EXCEPTION WHEN OTHERS THEN + status_code := 'ERROR'; + msg := 'Unable to apply fieldset ' || fieldset_id + || ': ' || sqlerrm; + END; + -- + -- Update fieldset status + -- + UPDATE action.fieldset + SET status = status_code, + applied_time = now() + WHERE id = fieldset_id; + -- + RETURN msg; +END; +$$; + + +ALTER FUNCTION action.apply_fieldset(fieldset_id integer, table_name text, pkey_name text, query text) OWNER TO evergreen; + +-- +-- Name: FUNCTION apply_fieldset(fieldset_id integer, table_name text, pkey_name text, query text); Type: COMMENT; Schema: action; Owner: evergreen +-- + +COMMENT ON FUNCTION apply_fieldset(fieldset_id integer, table_name text, pkey_name text, query text) IS ' +Applies a specified fieldset, using a supplied table name and primary +key name. The query parameter should be non-null only for +query-based fieldsets. + +Returns NULL if successful, or an error message if not. +'; + + +-- +-- Name: archive_stat_cats(); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION archive_stat_cats() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + INSERT INTO action.archive_actor_stat_cat(xact, stat_cat, value) + SELECT NEW.id, asceum.stat_cat, asceum.stat_cat_entry + FROM actor.stat_cat_entry_usr_map asceum + JOIN actor.stat_cat sc ON asceum.stat_cat = sc.id + WHERE NEW.usr = asceum.target_usr AND sc.checkout_archive; + INSERT INTO action.archive_asset_stat_cat(xact, stat_cat, value) + SELECT NEW.id, ascecm.stat_cat, asce.value + FROM asset.stat_cat_entry_copy_map ascecm + JOIN asset.stat_cat sc ON ascecm.stat_cat = sc.id + JOIN asset.stat_cat_entry asce ON ascecm.stat_cat_entry = asce.id + WHERE NEW.target_copy = ascecm.owning_copy AND sc.checkout_archive; + RETURN NULL; +END; +$$; + + +ALTER FUNCTION action.archive_stat_cats() OWNER TO evergreen; + +SET search_path = money, pg_catalog; + +-- +-- Name: billable_xact; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE billable_xact ( + id bigint NOT NULL, + usr integer NOT NULL, + xact_start timestamp with time zone DEFAULT now() NOT NULL, + xact_finish timestamp with time zone, + unrecovered boolean +); + + +ALTER TABLE billable_xact OWNER TO evergreen; + +SET search_path = action, pg_catalog; + +-- +-- Name: circulation; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE circulation ( + target_copy bigint NOT NULL, + circ_lib integer NOT NULL, + circ_staff integer NOT NULL, + checkin_staff integer, + checkin_lib integer, + renewal_remaining integer NOT NULL, + grace_period interval NOT NULL, + due_date timestamp with time zone, + stop_fines_time timestamp with time zone, + checkin_time timestamp with time zone, + create_time timestamp with time zone DEFAULT now() NOT NULL, + duration interval, + fine_interval interval DEFAULT '1 day'::interval NOT NULL, + recurring_fine numeric(6,2), + max_fine numeric(6,2), + phone_renewal boolean DEFAULT false NOT NULL, + desk_renewal boolean DEFAULT false NOT NULL, + opac_renewal boolean DEFAULT false NOT NULL, + duration_rule text NOT NULL, + recurring_fine_rule text NOT NULL, + max_fine_rule text NOT NULL, + stop_fines text, + workstation integer, + checkin_workstation integer, + copy_location integer DEFAULT 1 NOT NULL, + checkin_scan_time timestamp with time zone, + parent_circ bigint, + CONSTRAINT circulation_stop_fines_check CHECK ((stop_fines = ANY (ARRAY['CHECKIN'::text, 'CLAIMSRETURNED'::text, 'LOST'::text, 'MAXFINES'::text, 'RENEW'::text, 'LONGOVERDUE'::text, 'CLAIMSNEVERCHECKEDOUT'::text]))) +) +INHERITS (money.billable_xact); + + +ALTER TABLE circulation OWNER TO evergreen; + +-- +-- Name: circ_chain(bigint); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION circ_chain(ctx_circ_id bigint) RETURNS SETOF circulation + LANGUAGE plpgsql + AS $$ +DECLARE + tmp_circ action.circulation%ROWTYPE; + circ_0 action.circulation%ROWTYPE; +BEGIN + + SELECT INTO tmp_circ * FROM action.circulation WHERE id = ctx_circ_id; + + IF tmp_circ IS NULL THEN + RETURN NEXT tmp_circ; + END IF; + circ_0 := tmp_circ; + + -- find the front of the chain + WHILE TRUE LOOP + SELECT INTO tmp_circ * FROM action.circulation WHERE id = tmp_circ.parent_circ; + IF tmp_circ IS NULL THEN + EXIT; + END IF; + circ_0 := tmp_circ; + END LOOP; + + -- now send the circs to the caller, oldest to newest + tmp_circ := circ_0; + WHILE TRUE LOOP + IF tmp_circ IS NULL THEN + EXIT; + END IF; + RETURN NEXT tmp_circ; + SELECT INTO tmp_circ * FROM action.circulation WHERE parent_circ = tmp_circ.id; + END LOOP; + +END; +$$; + + +ALTER FUNCTION action.circ_chain(ctx_circ_id bigint) OWNER TO evergreen; + +-- +-- Name: circulation_claims_returned(); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION circulation_claims_returned() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + IF OLD.stop_fines IS NULL OR OLD.stop_fines <> NEW.stop_fines THEN + IF NEW.stop_fines = 'CLAIMSRETURNED' THEN + UPDATE actor.usr SET claims_returned_count = claims_returned_count + 1 WHERE id = NEW.usr; + END IF; + IF NEW.stop_fines = 'CLAIMSNEVERCHECKEDOUT' THEN + UPDATE actor.usr SET claims_never_checked_out_count = claims_never_checked_out_count + 1 WHERE id = NEW.usr; + END IF; + IF NEW.stop_fines = 'LOST' THEN + UPDATE asset.copy SET status = 3 WHERE id = NEW.target_copy; + END IF; + END IF; + RETURN NEW; +END; +$$; + + +ALTER FUNCTION action.circulation_claims_returned() OWNER TO evergreen; + +-- +-- Name: copy_related_hold_stats(bigint); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION copy_related_hold_stats(copy_id bigint) RETURNS hold_stats + LANGUAGE plpgsql + AS $$ +DECLARE + output action.hold_stats%ROWTYPE; + hold_count INT := 0; + copy_count INT := 0; + available_count INT := 0; + hold_map_data RECORD; +BEGIN + + output.hold_count := 0; + output.copy_count := 0; + output.available_count := 0; + + SELECT COUNT( DISTINCT m.hold ) INTO hold_count + FROM action.hold_copy_map m + JOIN action.hold_request h ON (m.hold = h.id) + WHERE m.target_copy = copy_id + AND NOT h.frozen; + + output.hold_count := hold_count; + + IF output.hold_count > 0 THEN + FOR hold_map_data IN + SELECT DISTINCT m.target_copy, + acp.status + FROM action.hold_copy_map m + JOIN asset.copy acp ON (m.target_copy = acp.id) + JOIN action.hold_request h ON (m.hold = h.id) + WHERE m.hold IN ( SELECT DISTINCT hold FROM action.hold_copy_map WHERE target_copy = copy_id ) AND NOT h.frozen + LOOP + output.copy_count := output.copy_count + 1; + IF hold_map_data.status IN (0,7,12) THEN + output.available_count := output.available_count + 1; + END IF; + END LOOP; + output.total_copy_ratio = output.copy_count::FLOAT / output.hold_count::FLOAT; + output.available_copy_ratio = output.available_count::FLOAT / output.hold_count::FLOAT; + + END IF; + + RETURN output; + +END; +$$; + + +ALTER FUNCTION action.copy_related_hold_stats(copy_id bigint) OWNER TO evergreen; + +-- +-- Name: fill_circ_copy_location(); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION fill_circ_copy_location() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + SELECT INTO NEW.copy_location location FROM asset.copy WHERE id = NEW.target_copy; + RETURN NEW; +END; +$$; + + +ALTER FUNCTION action.fill_circ_copy_location() OWNER TO evergreen; + +SET search_path = actor, pg_catalog; + +-- +-- Name: usr; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE usr ( + id integer NOT NULL, + card integer, + profile integer NOT NULL, + usrname text NOT NULL, + email text, + passwd text NOT NULL, + standing integer DEFAULT 1 NOT NULL, + ident_type integer NOT NULL, + ident_value text, + ident_type2 integer, + ident_value2 text, + net_access_level integer DEFAULT 1 NOT NULL, + photo_url text, + prefix text, + first_given_name text NOT NULL, + second_given_name text, + family_name text NOT NULL, + suffix text, + alias text, + day_phone text, + evening_phone text, + other_phone text, + mailing_address integer, + billing_address integer, + home_ou integer NOT NULL, + dob date, + active boolean DEFAULT true NOT NULL, + master_account boolean DEFAULT false NOT NULL, + super_user boolean DEFAULT false NOT NULL, + barred boolean DEFAULT false NOT NULL, + deleted boolean DEFAULT false NOT NULL, + juvenile boolean DEFAULT false NOT NULL, + usrgroup integer NOT NULL, + claims_returned_count integer DEFAULT 0 NOT NULL, + credit_forward_balance numeric(6,2) DEFAULT 0.00 NOT NULL, + last_xact_id text DEFAULT 'none'::text NOT NULL, + alert_message text, + create_date timestamp with time zone DEFAULT now() NOT NULL, + expire_date timestamp with time zone DEFAULT (now() + '3 years'::interval) NOT NULL, + claims_never_checked_out_count integer DEFAULT 0 NOT NULL, + last_update_time timestamp with time zone +); + + +ALTER TABLE usr OWNER TO evergreen; + +-- +-- Name: TABLE usr; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON TABLE usr IS ' +User objects + +This table contains the core User objects that describe both +staff members and patrons. The difference between the two +types of users is based on the user''s permissions. +'; + + +SET search_path = asset, pg_catalog; + +-- +-- Name: copy; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE copy ( + id bigint NOT NULL, + circ_lib integer NOT NULL, + creator bigint NOT NULL, + call_number bigint NOT NULL, + editor bigint NOT NULL, + create_date timestamp with time zone DEFAULT now(), + edit_date timestamp with time zone DEFAULT now(), + copy_number integer, + status integer DEFAULT 0 NOT NULL, + location integer DEFAULT 1 NOT NULL, + loan_duration integer NOT NULL, + fine_level integer NOT NULL, + age_protect integer, + circulate boolean DEFAULT true NOT NULL, + deposit boolean DEFAULT false NOT NULL, + ref boolean DEFAULT false NOT NULL, + holdable boolean DEFAULT true NOT NULL, + deposit_amount numeric(6,2) DEFAULT 0.00 NOT NULL, + price numeric(8,2), + barcode text NOT NULL, + circ_modifier text, + circ_as_type text, + dummy_title text, + dummy_author text, + alert_message text, + opac_visible boolean DEFAULT true NOT NULL, + deleted boolean DEFAULT false NOT NULL, + floating integer, + dummy_isbn text, + status_changed_time timestamp with time zone, + active_date timestamp with time zone, + mint_condition boolean DEFAULT true NOT NULL, + cost numeric(8,2), + CONSTRAINT copy_fine_level_check CHECK ((fine_level = ANY (ARRAY[1, 2, 3]))), + CONSTRAINT copy_loan_duration_check CHECK ((loan_duration = ANY (ARRAY[1, 2, 3]))) +); + + +ALTER TABLE copy OWNER TO evergreen; + +SET search_path = action, pg_catalog; + +-- +-- Name: find_circ_matrix_matchpoint(integer, asset.copy, actor.usr, boolean); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION find_circ_matrix_matchpoint(context_ou integer, item_object asset.copy, user_object actor.usr, renewal boolean) RETURNS found_circ_matrix_matchpoint + LANGUAGE plpgsql + AS $$ +DECLARE + cn_object asset.call_number%ROWTYPE; + rec_descriptor metabib.rec_descriptor%ROWTYPE; + cur_matchpoint config.circ_matrix_matchpoint%ROWTYPE; + matchpoint config.circ_matrix_matchpoint%ROWTYPE; + weights config.circ_matrix_weights%ROWTYPE; + user_age INTERVAL; + my_item_age INTERVAL; + denominator NUMERIC(6,2); + row_list INT[]; + result action.found_circ_matrix_matchpoint; +BEGIN + -- Assume failure + result.success = false; + + -- Fetch useful data + SELECT INTO cn_object * FROM asset.call_number WHERE id = item_object.call_number; + SELECT INTO rec_descriptor * FROM metabib.rec_descriptor WHERE record = cn_object.record; + + -- Pre-generate this so we only calc it once + IF user_object.dob IS NOT NULL THEN + SELECT INTO user_age age(user_object.dob); + END IF; + + -- Ditto + SELECT INTO my_item_age age(coalesce(item_object.active_date, now())); + + -- Grab the closest set circ weight setting. + SELECT INTO weights cw.* + FROM config.weight_assoc wa + JOIN config.circ_matrix_weights cw ON (cw.id = wa.circ_weights) + JOIN actor.org_unit_ancestors_distance( context_ou ) d ON (wa.org_unit = d.id) + WHERE active + ORDER BY d.distance + LIMIT 1; + + -- No weights? Bad admin! Defaults to handle that anyway. + IF weights.id IS NULL THEN + weights.grp := 11.0; + weights.org_unit := 10.0; + weights.circ_modifier := 5.0; + weights.copy_location := 5.0; + weights.marc_type := 4.0; + weights.marc_form := 3.0; + weights.marc_bib_level := 2.0; + weights.marc_vr_format := 2.0; + weights.copy_circ_lib := 8.0; + weights.copy_owning_lib := 8.0; + weights.user_home_ou := 8.0; + weights.ref_flag := 1.0; + weights.juvenile_flag := 6.0; + weights.is_renewal := 7.0; + weights.usr_age_lower_bound := 0.0; + weights.usr_age_upper_bound := 0.0; + weights.item_age := 0.0; + END IF; + + -- Determine the max (expected) depth (+1) of the org tree and max depth of the permisson tree + -- If you break your org tree with funky parenting this may be wrong + -- Note: This CTE is duplicated in the find_hold_matrix_matchpoint function, and it may be a good idea to split it off to a function + -- We use one denominator for all tree-based checks for when permission groups and org units have the same weighting + WITH all_distance(distance) AS ( + SELECT depth AS distance FROM actor.org_unit_type + UNION + SELECT distance AS distance FROM permission.grp_ancestors_distance((SELECT id FROM permission.grp_tree WHERE parent IS NULL)) + ) + SELECT INTO denominator MAX(distance) + 1 FROM all_distance; + + -- Loop over all the potential matchpoints + FOR cur_matchpoint IN + SELECT m.* + FROM config.circ_matrix_matchpoint m + /*LEFT*/ JOIN permission.grp_ancestors_distance( user_object.profile ) upgad ON m.grp = upgad.id + /*LEFT*/ JOIN actor.org_unit_ancestors_distance( context_ou ) ctoua ON m.org_unit = ctoua.id + LEFT JOIN actor.org_unit_ancestors_distance( cn_object.owning_lib ) cnoua ON m.copy_owning_lib = cnoua.id + LEFT JOIN actor.org_unit_ancestors_distance( item_object.circ_lib ) iooua ON m.copy_circ_lib = iooua.id + LEFT JOIN actor.org_unit_ancestors_distance( user_object.home_ou ) uhoua ON m.user_home_ou = uhoua.id + WHERE m.active + -- Permission Groups + -- AND (m.grp IS NULL OR upgad.id IS NOT NULL) -- Optional Permission Group? + -- Org Units + -- AND (m.org_unit IS NULL OR ctoua.id IS NOT NULL) -- Optional Org Unit? + AND (m.copy_owning_lib IS NULL OR cnoua.id IS NOT NULL) + AND (m.copy_circ_lib IS NULL OR iooua.id IS NOT NULL) + AND (m.user_home_ou IS NULL OR uhoua.id IS NOT NULL) + -- Circ Type + AND (m.is_renewal IS NULL OR m.is_renewal = renewal) + -- Static User Checks + AND (m.juvenile_flag IS NULL OR m.juvenile_flag = user_object.juvenile) + AND (m.usr_age_lower_bound IS NULL OR (user_age IS NOT NULL AND m.usr_age_lower_bound < user_age)) + AND (m.usr_age_upper_bound IS NULL OR (user_age IS NOT NULL AND m.usr_age_upper_bound > user_age)) + -- Static Item Checks + AND (m.circ_modifier IS NULL OR m.circ_modifier = item_object.circ_modifier) + AND (m.copy_location IS NULL OR m.copy_location = item_object.location) + AND (m.marc_type IS NULL OR m.marc_type = COALESCE(item_object.circ_as_type, rec_descriptor.item_type)) + AND (m.marc_form IS NULL OR m.marc_form = rec_descriptor.item_form) + AND (m.marc_bib_level IS NULL OR m.marc_bib_level = rec_descriptor.bib_level) + AND (m.marc_vr_format IS NULL OR m.marc_vr_format = rec_descriptor.vr_format) + AND (m.ref_flag IS NULL OR m.ref_flag = item_object.ref) + AND (m.item_age IS NULL OR (my_item_age IS NOT NULL AND m.item_age > my_item_age)) + ORDER BY + -- Permission Groups + CASE WHEN upgad.distance IS NOT NULL THEN 2^(2*weights.grp - (upgad.distance/denominator)) ELSE 0.0 END + + -- Org Units + CASE WHEN ctoua.distance IS NOT NULL THEN 2^(2*weights.org_unit - (ctoua.distance/denominator)) ELSE 0.0 END + + CASE WHEN cnoua.distance IS NOT NULL THEN 2^(2*weights.copy_owning_lib - (cnoua.distance/denominator)) ELSE 0.0 END + + CASE WHEN iooua.distance IS NOT NULL THEN 2^(2*weights.copy_circ_lib - (iooua.distance/denominator)) ELSE 0.0 END + + CASE WHEN uhoua.distance IS NOT NULL THEN 2^(2*weights.user_home_ou - (uhoua.distance/denominator)) ELSE 0.0 END + + -- Circ Type -- Note: 4^x is equiv to 2^(2*x) + CASE WHEN m.is_renewal IS NOT NULL THEN 4^weights.is_renewal ELSE 0.0 END + + -- Static User Checks + CASE WHEN m.juvenile_flag IS NOT NULL THEN 4^weights.juvenile_flag ELSE 0.0 END + + CASE WHEN m.usr_age_lower_bound IS NOT NULL THEN 4^weights.usr_age_lower_bound ELSE 0.0 END + + CASE WHEN m.usr_age_upper_bound IS NOT NULL THEN 4^weights.usr_age_upper_bound ELSE 0.0 END + + -- Static Item Checks + CASE WHEN m.circ_modifier IS NOT NULL THEN 4^weights.circ_modifier ELSE 0.0 END + + CASE WHEN m.copy_location IS NOT NULL THEN 4^weights.copy_location ELSE 0.0 END + + CASE WHEN m.marc_type IS NOT NULL THEN 4^weights.marc_type ELSE 0.0 END + + CASE WHEN m.marc_form IS NOT NULL THEN 4^weights.marc_form ELSE 0.0 END + + CASE WHEN m.marc_vr_format IS NOT NULL THEN 4^weights.marc_vr_format ELSE 0.0 END + + CASE WHEN m.ref_flag IS NOT NULL THEN 4^weights.ref_flag ELSE 0.0 END + + -- Item age has a slight adjustment to weight based on value. + -- This should ensure that a shorter age limit comes first when all else is equal. + -- NOTE: This assumes that intervals will normally be in days. + CASE WHEN m.item_age IS NOT NULL THEN 4^weights.item_age - 1 + 86400/EXTRACT(EPOCH FROM m.item_age) ELSE 0.0 END DESC, + -- Final sort on id, so that if two rules have the same sorting in the previous sort they have a defined order + -- This prevents "we changed the table order by updating a rule, and we started getting different results" + m.id LOOP + + -- Record the full matching row list + row_list := row_list || cur_matchpoint.id; + + -- No matchpoint yet? + IF matchpoint.id IS NULL THEN + -- Take the entire matchpoint as a starting point + matchpoint := cur_matchpoint; + CONTINUE; -- No need to look at this row any more. + END IF; + + -- Incomplete matchpoint? + IF matchpoint.circulate IS NULL THEN + matchpoint.circulate := cur_matchpoint.circulate; + END IF; + IF matchpoint.duration_rule IS NULL THEN + matchpoint.duration_rule := cur_matchpoint.duration_rule; + END IF; + IF matchpoint.recurring_fine_rule IS NULL THEN + matchpoint.recurring_fine_rule := cur_matchpoint.recurring_fine_rule; + END IF; + IF matchpoint.max_fine_rule IS NULL THEN + matchpoint.max_fine_rule := cur_matchpoint.max_fine_rule; + END IF; + IF matchpoint.hard_due_date IS NULL THEN + matchpoint.hard_due_date := cur_matchpoint.hard_due_date; + END IF; + IF matchpoint.total_copy_hold_ratio IS NULL THEN + matchpoint.total_copy_hold_ratio := cur_matchpoint.total_copy_hold_ratio; + END IF; + IF matchpoint.available_copy_hold_ratio IS NULL THEN + matchpoint.available_copy_hold_ratio := cur_matchpoint.available_copy_hold_ratio; + END IF; + IF matchpoint.renewals IS NULL THEN + matchpoint.renewals := cur_matchpoint.renewals; + END IF; + IF matchpoint.grace_period IS NULL THEN + matchpoint.grace_period := cur_matchpoint.grace_period; + END IF; + END LOOP; + + -- Check required fields + IF matchpoint.circulate IS NOT NULL AND + matchpoint.duration_rule IS NOT NULL AND + matchpoint.recurring_fine_rule IS NOT NULL AND + matchpoint.max_fine_rule IS NOT NULL THEN + -- All there? We have a completed match. + result.success := true; + END IF; + + -- Include the assembled matchpoint, even if it isn't complete + result.matchpoint := matchpoint; + + -- Include (for debugging) the full list of matching rows + result.buildrows := row_list; + + -- Hand the result back to caller + RETURN result; +END; +$$; + + +ALTER FUNCTION action.find_circ_matrix_matchpoint(context_ou integer, item_object asset.copy, user_object actor.usr, renewal boolean) OWNER TO evergreen; + +-- +-- Name: find_circ_matrix_matchpoint(integer, bigint, integer, boolean); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION find_circ_matrix_matchpoint(context_ou integer, match_item bigint, match_user integer, renewal boolean) RETURNS SETOF found_circ_matrix_matchpoint + LANGUAGE plpgsql + AS $$ +DECLARE + item_object asset.copy%ROWTYPE; + user_object actor.usr%ROWTYPE; +BEGIN + SELECT INTO item_object * FROM asset.copy WHERE id = match_item; + SELECT INTO user_object * FROM actor.usr WHERE id = match_user; + + RETURN QUERY SELECT * FROM action.find_circ_matrix_matchpoint( context_ou, item_object, user_object, renewal ); +END; +$$; + + +ALTER FUNCTION action.find_circ_matrix_matchpoint(context_ou integer, match_item bigint, match_user integer, renewal boolean) OWNER TO evergreen; + +-- +-- Name: find_hold_matrix_matchpoint(integer, integer, bigint, integer, integer); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION find_hold_matrix_matchpoint(pickup_ou integer, request_ou integer, match_item bigint, match_user integer, match_requestor integer) RETURNS integer + LANGUAGE plpgsql + AS $$ +DECLARE + requestor_object actor.usr%ROWTYPE; + user_object actor.usr%ROWTYPE; + item_object asset.copy%ROWTYPE; + item_cn_object asset.call_number%ROWTYPE; + my_item_age INTERVAL; + rec_descriptor metabib.rec_descriptor%ROWTYPE; + matchpoint config.hold_matrix_matchpoint%ROWTYPE; + weights config.hold_matrix_weights%ROWTYPE; + denominator NUMERIC(6,2); + v_pickup_ou ALIAS FOR pickup_ou; + v_request_ou ALIAS FOR request_ou; +BEGIN + SELECT INTO user_object * FROM actor.usr WHERE id = match_user; + SELECT INTO requestor_object * FROM actor.usr WHERE id = match_requestor; + SELECT INTO item_object * FROM asset.copy WHERE id = match_item; + SELECT INTO item_cn_object * FROM asset.call_number WHERE id = item_object.call_number; + SELECT INTO rec_descriptor * FROM metabib.rec_descriptor WHERE record = item_cn_object.record; + + SELECT INTO my_item_age age(coalesce(item_object.active_date, now())); + + -- The item's owner should probably be the one determining if the item is holdable + -- How to decide that is debatable. Decided to default to the circ library (where the item lives) + -- This flag will allow for setting it to the owning library (where the call number "lives") + PERFORM * FROM config.internal_flag WHERE name = 'circ.holds.weight_owner_not_circ' AND enabled; + + -- Grab the closest set circ weight setting. + IF NOT FOUND THEN + -- Default to circ library + SELECT INTO weights hw.* + FROM config.weight_assoc wa + JOIN config.hold_matrix_weights hw ON (hw.id = wa.hold_weights) + JOIN actor.org_unit_ancestors_distance( item_object.circ_lib ) d ON (wa.org_unit = d.id) + WHERE active + ORDER BY d.distance + LIMIT 1; + ELSE + -- Flag is set, use owning library + SELECT INTO weights hw.* + FROM config.weight_assoc wa + JOIN config.hold_matrix_weights hw ON (hw.id = wa.hold_weights) + JOIN actor.org_unit_ancestors_distance( item_cn_object.owning_lib ) d ON (wa.org_unit = d.id) + WHERE active + ORDER BY d.distance + LIMIT 1; + END IF; + + -- No weights? Bad admin! Defaults to handle that anyway. + IF weights.id IS NULL THEN + weights.user_home_ou := 5.0; + weights.request_ou := 5.0; + weights.pickup_ou := 5.0; + weights.item_owning_ou := 5.0; + weights.item_circ_ou := 5.0; + weights.usr_grp := 7.0; + weights.requestor_grp := 8.0; + weights.circ_modifier := 4.0; + weights.marc_type := 3.0; + weights.marc_form := 2.0; + weights.marc_bib_level := 1.0; + weights.marc_vr_format := 1.0; + weights.juvenile_flag := 4.0; + weights.ref_flag := 0.0; + weights.item_age := 0.0; + END IF; + + -- Determine the max (expected) depth (+1) of the org tree and max depth of the permisson tree + -- If you break your org tree with funky parenting this may be wrong + -- Note: This CTE is duplicated in the find_circ_matrix_matchpoint function, and it may be a good idea to split it off to a function + -- We use one denominator for all tree-based checks for when permission groups and org units have the same weighting + WITH all_distance(distance) AS ( + SELECT depth AS distance FROM actor.org_unit_type + UNION + SELECT distance AS distance FROM permission.grp_ancestors_distance((SELECT id FROM permission.grp_tree WHERE parent IS NULL)) + ) + SELECT INTO denominator MAX(distance) + 1 FROM all_distance; + + -- To ATTEMPT to make this work like it used to, make it reverse the user/requestor profile ids. + -- This may be better implemented as part of the upgrade script? + -- Set usr_grp = requestor_grp, requestor_grp = 1 or something when this flag is already set + -- Then remove this flag, of course. + PERFORM * FROM config.internal_flag WHERE name = 'circ.holds.usr_not_requestor' AND enabled; + + IF FOUND THEN + -- Note: This, to me, is REALLY hacky. I put it in anyway. + -- If you can't tell, this is a single call swap on two variables. + SELECT INTO user_object.profile, requestor_object.profile + requestor_object.profile, user_object.profile; + END IF; + + -- Select the winning matchpoint into the matchpoint variable for returning + SELECT INTO matchpoint m.* + FROM config.hold_matrix_matchpoint m + /*LEFT*/ JOIN permission.grp_ancestors_distance( requestor_object.profile ) rpgad ON m.requestor_grp = rpgad.id + LEFT JOIN permission.grp_ancestors_distance( user_object.profile ) upgad ON m.usr_grp = upgad.id + LEFT JOIN actor.org_unit_ancestors_distance( v_pickup_ou ) puoua ON m.pickup_ou = puoua.id + LEFT JOIN actor.org_unit_ancestors_distance( v_request_ou ) rqoua ON m.request_ou = rqoua.id + LEFT JOIN actor.org_unit_ancestors_distance( item_cn_object.owning_lib ) cnoua ON m.item_owning_ou = cnoua.id + LEFT JOIN actor.org_unit_ancestors_distance( item_object.circ_lib ) iooua ON m.item_circ_ou = iooua.id + LEFT JOIN actor.org_unit_ancestors_distance( user_object.home_ou ) uhoua ON m.user_home_ou = uhoua.id + WHERE m.active + -- Permission Groups + -- AND (m.requestor_grp IS NULL OR upgad.id IS NOT NULL) -- Optional Requestor Group? + AND (m.usr_grp IS NULL OR upgad.id IS NOT NULL) + -- Org Units + AND (m.pickup_ou IS NULL OR (puoua.id IS NOT NULL AND (puoua.distance = 0 OR NOT m.strict_ou_match))) + AND (m.request_ou IS NULL OR (rqoua.id IS NOT NULL AND (rqoua.distance = 0 OR NOT m.strict_ou_match))) + AND (m.item_owning_ou IS NULL OR (cnoua.id IS NOT NULL AND (cnoua.distance = 0 OR NOT m.strict_ou_match))) + AND (m.item_circ_ou IS NULL OR (iooua.id IS NOT NULL AND (iooua.distance = 0 OR NOT m.strict_ou_match))) + AND (m.user_home_ou IS NULL OR (uhoua.id IS NOT NULL AND (uhoua.distance = 0 OR NOT m.strict_ou_match))) + -- Static User Checks + AND (m.juvenile_flag IS NULL OR m.juvenile_flag = user_object.juvenile) + -- Static Item Checks + AND (m.circ_modifier IS NULL OR m.circ_modifier = item_object.circ_modifier) + AND (m.marc_type IS NULL OR m.marc_type = COALESCE(item_object.circ_as_type, rec_descriptor.item_type)) + AND (m.marc_form IS NULL OR m.marc_form = rec_descriptor.item_form) + AND (m.marc_bib_level IS NULL OR m.marc_bib_level = rec_descriptor.bib_level) + AND (m.marc_vr_format IS NULL OR m.marc_vr_format = rec_descriptor.vr_format) + AND (m.ref_flag IS NULL OR m.ref_flag = item_object.ref) + AND (m.item_age IS NULL OR (my_item_age IS NOT NULL AND m.item_age > my_item_age)) + ORDER BY + -- Permission Groups + CASE WHEN rpgad.distance IS NOT NULL THEN 2^(2*weights.requestor_grp - (rpgad.distance/denominator)) ELSE 0.0 END + + CASE WHEN upgad.distance IS NOT NULL THEN 2^(2*weights.usr_grp - (upgad.distance/denominator)) ELSE 0.0 END + + -- Org Units + CASE WHEN puoua.distance IS NOT NULL THEN 2^(2*weights.pickup_ou - (puoua.distance/denominator)) ELSE 0.0 END + + CASE WHEN rqoua.distance IS NOT NULL THEN 2^(2*weights.request_ou - (rqoua.distance/denominator)) ELSE 0.0 END + + CASE WHEN cnoua.distance IS NOT NULL THEN 2^(2*weights.item_owning_ou - (cnoua.distance/denominator)) ELSE 0.0 END + + CASE WHEN iooua.distance IS NOT NULL THEN 2^(2*weights.item_circ_ou - (iooua.distance/denominator)) ELSE 0.0 END + + CASE WHEN uhoua.distance IS NOT NULL THEN 2^(2*weights.user_home_ou - (uhoua.distance/denominator)) ELSE 0.0 END + + -- Static User Checks -- Note: 4^x is equiv to 2^(2*x) + CASE WHEN m.juvenile_flag IS NOT NULL THEN 4^weights.juvenile_flag ELSE 0.0 END + + -- Static Item Checks + CASE WHEN m.circ_modifier IS NOT NULL THEN 4^weights.circ_modifier ELSE 0.0 END + + CASE WHEN m.marc_type IS NOT NULL THEN 4^weights.marc_type ELSE 0.0 END + + CASE WHEN m.marc_form IS NOT NULL THEN 4^weights.marc_form ELSE 0.0 END + + CASE WHEN m.marc_vr_format IS NOT NULL THEN 4^weights.marc_vr_format ELSE 0.0 END + + CASE WHEN m.ref_flag IS NOT NULL THEN 4^weights.ref_flag ELSE 0.0 END + + -- Item age has a slight adjustment to weight based on value. + -- This should ensure that a shorter age limit comes first when all else is equal. + -- NOTE: This assumes that intervals will normally be in days. + CASE WHEN m.item_age IS NOT NULL THEN 4^weights.item_age - 86400/EXTRACT(EPOCH FROM m.item_age) ELSE 0.0 END DESC, + -- Final sort on id, so that if two rules have the same sorting in the previous sort they have a defined order + -- This prevents "we changed the table order by updating a rule, and we started getting different results" + m.id; + + -- Return just the ID for now + RETURN matchpoint.id; +END; +$$; + + +ALTER FUNCTION action.find_hold_matrix_matchpoint(pickup_ou integer, request_ou integer, match_item bigint, match_user integer, match_requestor integer) OWNER TO evergreen; + +-- +-- Name: hold_copy_calculated_proximity(integer, bigint, integer); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION hold_copy_calculated_proximity(ahr_id integer, acp_id bigint, copy_context_ou integer DEFAULT NULL::integer) RETURNS numeric + LANGUAGE plpgsql + AS $$ +DECLARE + aoupa actor.org_unit_proximity_adjustment%ROWTYPE; + ahr action.hold_request%ROWTYPE; + acp asset.copy%ROWTYPE; + acn asset.call_number%ROWTYPE; + acl asset.copy_location%ROWTYPE; + baseline_prox NUMERIC; + + icl_list INT[]; + iol_list INT[]; + isl_list INT[]; + hpl_list INT[]; + hrl_list INT[]; + +BEGIN + + SELECT * INTO ahr FROM action.hold_request WHERE id = ahr_id; + SELECT * INTO acp FROM asset.copy WHERE id = acp_id; + SELECT * INTO acn FROM asset.call_number WHERE id = acp.call_number; + SELECT * INTO acl FROM asset.copy_location WHERE id = acp.location; + + IF copy_context_ou IS NULL THEN + copy_context_ou := acp.circ_lib; + END IF; + + -- First, gather the baseline proximity of "here" to pickup lib + SELECT prox INTO baseline_prox FROM actor.org_unit_proximity WHERE from_org = copy_context_ou AND to_org = ahr.pickup_lib; + + -- Find any absolute adjustments, and set the baseline prox to that + SELECT adj.* INTO aoupa + FROM actor.org_unit_proximity_adjustment adj + LEFT JOIN actor.org_unit_ancestors_distance(copy_context_ou) acp_cl ON (acp_cl.id = adj.item_circ_lib) + LEFT JOIN actor.org_unit_ancestors_distance(acn.owning_lib) acn_ol ON (acn_ol.id = adj.item_owning_lib) + LEFT JOIN actor.org_unit_ancestors_distance(acl.owning_lib) acl_ol ON (acl_ol.id = adj.copy_location) + LEFT JOIN actor.org_unit_ancestors_distance(ahr.pickup_lib) ahr_pl ON (ahr_pl.id = adj.hold_pickup_lib) + LEFT JOIN actor.org_unit_ancestors_distance(ahr.request_lib) ahr_rl ON (ahr_rl.id = adj.hold_request_lib) + WHERE (adj.circ_mod IS NULL OR adj.circ_mod = acp.circ_modifier) AND + (adj.item_circ_lib IS NULL OR adj.item_circ_lib = acp_cl.id) AND + (adj.item_owning_lib IS NULL OR adj.item_owning_lib = acn_ol.id) AND + (adj.copy_location IS NULL OR adj.copy_location = acl_ol.id) AND + (adj.hold_pickup_lib IS NULL OR adj.hold_pickup_lib = ahr_pl.id) AND + (adj.hold_request_lib IS NULL OR adj.hold_request_lib = ahr_rl.id) AND + absolute_adjustment AND + COALESCE(acp_cl.id, acn_ol.id, acl_ol.id, ahr_pl.id, ahr_rl.id) IS NOT NULL + ORDER BY + COALESCE(acp_cl.distance,999) + + COALESCE(acn_ol.distance,999) + + COALESCE(acl_ol.distance,999) + + COALESCE(ahr_pl.distance,999) + + COALESCE(ahr_rl.distance,999), + adj.pos + LIMIT 1; + + IF FOUND THEN + baseline_prox := aoupa.prox_adjustment; + END IF; + + -- Now find any relative adjustments, and change the baseline prox based on them + FOR aoupa IN + SELECT adj.* + FROM actor.org_unit_proximity_adjustment adj + LEFT JOIN actor.org_unit_ancestors_distance(copy_context_ou) acp_cl ON (acp_cl.id = adj.item_circ_lib) + LEFT JOIN actor.org_unit_ancestors_distance(acn.owning_lib) acn_ol ON (acn_ol.id = adj.item_owning_lib) + LEFT JOIN actor.org_unit_ancestors_distance(acl.owning_lib) acl_ol ON (acn_ol.id = adj.copy_location) + LEFT JOIN actor.org_unit_ancestors_distance(ahr.pickup_lib) ahr_pl ON (ahr_pl.id = adj.hold_pickup_lib) + LEFT JOIN actor.org_unit_ancestors_distance(ahr.request_lib) ahr_rl ON (ahr_rl.id = adj.hold_request_lib) + WHERE (adj.circ_mod IS NULL OR adj.circ_mod = acp.circ_modifier) AND + (adj.item_circ_lib IS NULL OR adj.item_circ_lib = acp_cl.id) AND + (adj.item_owning_lib IS NULL OR adj.item_owning_lib = acn_ol.id) AND + (adj.copy_location IS NULL OR adj.copy_location = acl_ol.id) AND + (adj.hold_pickup_lib IS NULL OR adj.hold_pickup_lib = ahr_pl.id) AND + (adj.hold_request_lib IS NULL OR adj.hold_request_lib = ahr_rl.id) AND + NOT absolute_adjustment AND + COALESCE(acp_cl.id, acn_ol.id, acl_ol.id, ahr_pl.id, ahr_rl.id) IS NOT NULL + LOOP + baseline_prox := baseline_prox + aoupa.prox_adjustment; + END LOOP; + + RETURN baseline_prox; +END; +$$; + + +ALTER FUNCTION action.hold_copy_calculated_proximity(ahr_id integer, acp_id bigint, copy_context_ou integer) OWNER TO evergreen; + +-- +-- Name: hold_copy_calculated_proximity_update(); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION hold_copy_calculated_proximity_update() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + NEW.proximity := action.hold_copy_calculated_proximity(NEW.hold,NEW.target_copy); + RETURN NEW; +END; +$$; + + +ALTER FUNCTION action.hold_copy_calculated_proximity_update() OWNER TO evergreen; + +-- +-- Name: hold_request_clear_map(); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION hold_request_clear_map() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + DELETE FROM action.hold_copy_map WHERE hold = NEW.id; + RETURN NEW; +END; +$$; + + +ALTER FUNCTION action.hold_request_clear_map() OWNER TO evergreen; + +-- +-- Name: hold_request_permit_test(integer, integer, bigint, integer, integer); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION hold_request_permit_test(pickup_ou integer, request_ou integer, match_item bigint, match_user integer, match_requestor integer) RETURNS SETOF matrix_test_result + LANGUAGE sql + AS $_$ + SELECT * FROM action.hold_request_permit_test( $1, $2, $3, $4, $5, FALSE ); +$_$; + + +ALTER FUNCTION action.hold_request_permit_test(pickup_ou integer, request_ou integer, match_item bigint, match_user integer, match_requestor integer) OWNER TO evergreen; + +-- +-- Name: hold_request_permit_test(integer, integer, bigint, integer, integer, boolean); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION hold_request_permit_test(pickup_ou integer, request_ou integer, match_item bigint, match_user integer, match_requestor integer, retargetting boolean) RETURNS SETOF matrix_test_result + LANGUAGE plpgsql + AS $$ +DECLARE + matchpoint_id INT; + user_object actor.usr%ROWTYPE; + age_protect_object config.rule_age_hold_protect%ROWTYPE; + standing_penalty config.standing_penalty%ROWTYPE; + transit_range_ou_type actor.org_unit_type%ROWTYPE; + transit_source actor.org_unit%ROWTYPE; + item_object asset.copy%ROWTYPE; + item_cn_object asset.call_number%ROWTYPE; + item_status_object config.copy_status%ROWTYPE; + item_location_object asset.copy_location%ROWTYPE; + ou_skip actor.org_unit_setting%ROWTYPE; + result action.matrix_test_result; + hold_test config.hold_matrix_matchpoint%ROWTYPE; + use_active_date TEXT; + age_protect_date TIMESTAMP WITH TIME ZONE; + hold_count INT; + hold_transit_prox INT; + frozen_hold_count INT; + context_org_list INT[]; + done BOOL := FALSE; + hold_penalty TEXT; + v_pickup_ou ALIAS FOR pickup_ou; + v_request_ou ALIAS FOR request_ou; + item_prox INT; + pickup_prox INT; +BEGIN + SELECT INTO user_object * FROM actor.usr WHERE id = match_user; + SELECT INTO context_org_list ARRAY_AGG(id) FROM actor.org_unit_full_path( v_pickup_ou ); + + result.success := TRUE; + + -- The HOLD penalty block only applies to new holds. + -- The CAPTURE penalty block applies to existing holds. + hold_penalty := 'HOLD'; + IF retargetting THEN + hold_penalty := 'CAPTURE'; + END IF; + + -- Fail if we couldn't find a user + IF user_object.id IS NULL THEN + result.fail_part := 'no_user'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + RETURN; + END IF; + + SELECT INTO item_object * FROM asset.copy WHERE id = match_item; + + -- Fail if we couldn't find a copy + IF item_object.id IS NULL THEN + result.fail_part := 'no_item'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + RETURN; + END IF; + + SELECT INTO matchpoint_id action.find_hold_matrix_matchpoint(v_pickup_ou, v_request_ou, match_item, match_user, match_requestor); + result.matchpoint := matchpoint_id; + + SELECT INTO ou_skip * FROM actor.org_unit_setting WHERE name = 'circ.holds.target_skip_me' AND org_unit = item_object.circ_lib; + + -- Fail if the circ_lib for the item has circ.holds.target_skip_me set to true + IF ou_skip.id IS NOT NULL AND ou_skip.value = 'true' THEN + result.fail_part := 'circ.holds.target_skip_me'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + RETURN; + END IF; + + -- Fail if user is barred + IF user_object.barred IS TRUE THEN + result.fail_part := 'actor.usr.barred'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + RETURN; + END IF; + + SELECT INTO item_cn_object * FROM asset.call_number WHERE id = item_object.call_number; + SELECT INTO item_status_object * FROM config.copy_status WHERE id = item_object.status; + SELECT INTO item_location_object * FROM asset.copy_location WHERE id = item_object.location; + + -- Fail if we couldn't find any matchpoint (requires a default) + IF matchpoint_id IS NULL THEN + result.fail_part := 'no_matchpoint'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + RETURN; + END IF; + + SELECT INTO hold_test * FROM config.hold_matrix_matchpoint WHERE id = matchpoint_id; + + IF hold_test.holdable IS FALSE THEN + result.fail_part := 'config.hold_matrix_test.holdable'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END IF; + + IF item_object.holdable IS FALSE THEN + result.fail_part := 'item.holdable'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END IF; + + IF item_status_object.holdable IS FALSE THEN + result.fail_part := 'status.holdable'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END IF; + + IF item_location_object.holdable IS FALSE THEN + result.fail_part := 'location.holdable'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END IF; + + IF hold_test.transit_range IS NOT NULL THEN + SELECT INTO transit_range_ou_type * FROM actor.org_unit_type WHERE id = hold_test.transit_range; + IF hold_test.distance_is_from_owner THEN + SELECT INTO transit_source ou.* FROM actor.org_unit ou JOIN asset.call_number cn ON (cn.owning_lib = ou.id) WHERE cn.id = item_object.call_number; + ELSE + SELECT INTO transit_source * FROM actor.org_unit WHERE id = item_object.circ_lib; + END IF; + + PERFORM * FROM actor.org_unit_descendants( transit_source.id, transit_range_ou_type.depth ) WHERE id = v_pickup_ou; + + IF NOT FOUND THEN + result.fail_part := 'transit_range'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END IF; + END IF; + + -- Proximity of user's home_ou to the pickup_lib to see if penalty should be ignored. + SELECT INTO pickup_prox prox FROM actor.org_unit_proximity WHERE from_org = user_object.home_ou AND to_org = v_pickup_ou; + -- Proximity of user's home_ou to the items' lib to see if penalty should be ignored. + IF hold_test.distance_is_from_owner THEN + SELECT INTO item_prox prox FROM actor.org_unit_proximity WHERE from_org = user_object.home_ou AND to_org = item_cn_object.owning_lib; + ELSE + SELECT INTO item_prox prox FROM actor.org_unit_proximity WHERE from_org = user_object.home_ou AND to_org = item_object.circ_lib; + END IF; + + FOR standing_penalty IN + SELECT DISTINCT csp.* + FROM actor.usr_standing_penalty usp + JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty) + WHERE usr = match_user + AND usp.org_unit IN ( SELECT * FROM unnest(context_org_list) ) + AND (usp.stop_date IS NULL or usp.stop_date > NOW()) + AND (csp.ignore_proximity IS NULL OR csp.ignore_proximity < item_prox + OR csp.ignore_proximity < pickup_prox) + AND csp.block_list LIKE '%' || hold_penalty || '%' LOOP + + result.fail_part := standing_penalty.name; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END LOOP; + + IF hold_test.stop_blocked_user IS TRUE THEN + FOR standing_penalty IN + SELECT DISTINCT csp.* + FROM actor.usr_standing_penalty usp + JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty) + WHERE usr = match_user + AND usp.org_unit IN ( SELECT * FROM unnest(context_org_list) ) + AND (usp.stop_date IS NULL or usp.stop_date > NOW()) + AND csp.block_list LIKE '%CIRC%' LOOP + + result.fail_part := standing_penalty.name; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END LOOP; + END IF; + + IF hold_test.max_holds IS NOT NULL AND NOT retargetting THEN + SELECT INTO hold_count COUNT(*) + FROM action.hold_request + WHERE usr = match_user + AND fulfillment_time IS NULL + AND cancel_time IS NULL + AND CASE WHEN hold_test.include_frozen_holds THEN TRUE ELSE frozen IS FALSE END; + + IF hold_count >= hold_test.max_holds THEN + result.fail_part := 'config.hold_matrix_test.max_holds'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END IF; + END IF; + + IF item_object.age_protect IS NOT NULL THEN + SELECT INTO age_protect_object * FROM config.rule_age_hold_protect WHERE id = item_object.age_protect; + IF hold_test.distance_is_from_owner THEN + SELECT INTO use_active_date value FROM actor.org_unit_ancestor_setting('circ.holds.age_protect.active_date', item_cn_object.owning_lib); + ELSE + SELECT INTO use_active_date value FROM actor.org_unit_ancestor_setting('circ.holds.age_protect.active_date', item_object.circ_lib); + END IF; + IF use_active_date = 'true' THEN + age_protect_date := COALESCE(item_object.active_date, NOW()); + ELSE + age_protect_date := item_object.create_date; + END IF; + IF age_protect_date + age_protect_object.age > NOW() THEN + IF hold_test.distance_is_from_owner THEN + SELECT INTO item_cn_object * FROM asset.call_number WHERE id = item_object.call_number; + SELECT INTO hold_transit_prox prox FROM actor.org_unit_proximity WHERE from_org = item_cn_object.owning_lib AND to_org = v_pickup_ou; + ELSE + SELECT INTO hold_transit_prox prox FROM actor.org_unit_proximity WHERE from_org = item_object.circ_lib AND to_org = v_pickup_ou; + END IF; + + IF hold_transit_prox > age_protect_object.prox THEN + result.fail_part := 'config.rule_age_hold_protect.prox'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END IF; + END IF; + END IF; + + IF NOT done THEN + RETURN NEXT result; + END IF; + + RETURN; +END; +$$; + + +ALTER FUNCTION action.hold_request_permit_test(pickup_ou integer, request_ou integer, match_item bigint, match_user integer, match_requestor integer, retargetting boolean) OWNER TO evergreen; + +-- +-- Name: hold_retarget_permit_test(integer, integer, bigint, integer, integer); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION hold_retarget_permit_test(pickup_ou integer, request_ou integer, match_item bigint, match_user integer, match_requestor integer) RETURNS SETOF matrix_test_result + LANGUAGE sql + AS $_$ + SELECT * FROM action.hold_request_permit_test( $1, $2, $3, $4, $5, TRUE ); +$_$; + + +ALTER FUNCTION action.hold_retarget_permit_test(pickup_ou integer, request_ou integer, match_item bigint, match_user integer, match_requestor integer) OWNER TO evergreen; + +-- +-- Name: item_user_circ_test(integer, bigint, integer); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION item_user_circ_test(integer, bigint, integer) RETURNS SETOF circ_matrix_test_result + LANGUAGE sql + AS $_$ + SELECT * FROM action.item_user_circ_test( $1, $2, $3, FALSE ); +$_$; + + +ALTER FUNCTION action.item_user_circ_test(integer, bigint, integer) OWNER TO evergreen; + +-- +-- Name: item_user_circ_test(integer, bigint, integer, boolean); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION item_user_circ_test(circ_ou integer, match_item bigint, match_user integer, renewal boolean) RETURNS SETOF circ_matrix_test_result + LANGUAGE plpgsql + AS $$ +DECLARE + user_object actor.usr%ROWTYPE; + standing_penalty config.standing_penalty%ROWTYPE; + item_object asset.copy%ROWTYPE; + item_status_object config.copy_status%ROWTYPE; + item_location_object asset.copy_location%ROWTYPE; + result action.circ_matrix_test_result; + circ_test action.found_circ_matrix_matchpoint; + circ_matchpoint config.circ_matrix_matchpoint%ROWTYPE; + circ_limit_set config.circ_limit_set%ROWTYPE; + hold_ratio action.hold_stats%ROWTYPE; + penalty_type TEXT; + items_out INT; + context_org_list INT[]; + done BOOL := FALSE; + item_prox INT; + home_prox INT; +BEGIN + -- Assume success unless we hit a failure condition + result.success := TRUE; + + -- Need user info to look up matchpoints + SELECT INTO user_object * FROM actor.usr WHERE id = match_user AND NOT deleted; + + -- (Insta)Fail if we couldn't find the user + IF user_object.id IS NULL THEN + result.fail_part := 'no_user'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + RETURN; + END IF; + + -- Need item info to look up matchpoints + SELECT INTO item_object * FROM asset.copy WHERE id = match_item AND NOT deleted; + + -- (Insta)Fail if we couldn't find the item + IF item_object.id IS NULL THEN + result.fail_part := 'no_item'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + RETURN; + END IF; + + SELECT INTO circ_test * FROM action.find_circ_matrix_matchpoint(circ_ou, item_object, user_object, renewal); + + circ_matchpoint := circ_test.matchpoint; + result.matchpoint := circ_matchpoint.id; + result.circulate := circ_matchpoint.circulate; + result.duration_rule := circ_matchpoint.duration_rule; + result.recurring_fine_rule := circ_matchpoint.recurring_fine_rule; + result.max_fine_rule := circ_matchpoint.max_fine_rule; + result.hard_due_date := circ_matchpoint.hard_due_date; + result.renewals := circ_matchpoint.renewals; + result.grace_period := circ_matchpoint.grace_period; + result.buildrows := circ_test.buildrows; + + -- (Insta)Fail if we couldn't find a matchpoint + IF circ_test.success = false THEN + result.fail_part := 'no_matchpoint'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + RETURN; + END IF; + + -- All failures before this point are non-recoverable + -- Below this point are possibly overridable failures + + -- Fail if the user is barred + IF user_object.barred IS TRUE THEN + result.fail_part := 'actor.usr.barred'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END IF; + + -- Fail if the item can't circulate + IF item_object.circulate IS FALSE THEN + result.fail_part := 'asset.copy.circulate'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END IF; + + -- Fail if the item isn't in a circulateable status on a non-renewal + IF NOT renewal AND item_object.status NOT IN ( 0, 7, 8 ) THEN + result.fail_part := 'asset.copy.status'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + -- Alternately, fail if the item isn't checked out on a renewal + ELSIF renewal AND item_object.status <> 1 THEN + result.fail_part := 'asset.copy.status'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END IF; + + -- Fail if the item can't circulate because of the shelving location + SELECT INTO item_location_object * FROM asset.copy_location WHERE id = item_object.location; + IF item_location_object.circulate IS FALSE THEN + result.fail_part := 'asset.copy_location.circulate'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END IF; + + -- Use Circ OU for penalties and such + SELECT INTO context_org_list ARRAY_AGG(id) FROM actor.org_unit_full_path( circ_ou ); + + -- Proximity of user's home_ou to circ_ou to see if penalties should be ignored. + SELECT INTO home_prox prox FROM actor.org_unit_proximity WHERE from_org = user_object.home_ou AND to_org = circ_ou; + + -- Proximity of user's home_ou to item circ_lib to see if penalties should be ignored. + SELECT INTO item_prox prox FROM actor.org_unit_proximity WHERE from_org = user_object.home_ou AND to_org = item_object.circ_lib; + + IF renewal THEN + penalty_type = '%RENEW%'; + ELSE + penalty_type = '%CIRC%'; + END IF; + + FOR standing_penalty IN + SELECT DISTINCT csp.* + FROM actor.usr_standing_penalty usp + JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty) + WHERE usr = match_user + AND usp.org_unit IN ( SELECT * FROM unnest(context_org_list) ) + AND (usp.stop_date IS NULL or usp.stop_date > NOW()) + AND (csp.ignore_proximity IS NULL + OR csp.ignore_proximity < home_prox + OR csp.ignore_proximity < item_prox) + AND csp.block_list LIKE penalty_type LOOP + + result.fail_part := standing_penalty.name; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END LOOP; + + -- Fail if the test is set to hard non-circulating + IF circ_matchpoint.circulate IS FALSE THEN + result.fail_part := 'config.circ_matrix_test.circulate'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END IF; + + -- Fail if the total copy-hold ratio is too low + IF circ_matchpoint.total_copy_hold_ratio IS NOT NULL THEN + SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item); + IF hold_ratio.total_copy_ratio IS NOT NULL AND hold_ratio.total_copy_ratio < circ_matchpoint.total_copy_hold_ratio THEN + result.fail_part := 'config.circ_matrix_test.total_copy_hold_ratio'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END IF; + END IF; + + -- Fail if the available copy-hold ratio is too low + IF circ_matchpoint.available_copy_hold_ratio IS NOT NULL THEN + IF hold_ratio.hold_count IS NULL THEN + SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item); + END IF; + IF hold_ratio.available_copy_ratio IS NOT NULL AND hold_ratio.available_copy_ratio < circ_matchpoint.available_copy_hold_ratio THEN + result.fail_part := 'config.circ_matrix_test.available_copy_hold_ratio'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END IF; + END IF; + + -- Fail if the user has too many items out by defined limit sets + FOR circ_limit_set IN SELECT ccls.* FROM config.circ_limit_set ccls + JOIN config.circ_matrix_limit_set_map ccmlsm ON ccmlsm.limit_set = ccls.id + WHERE ccmlsm.active AND ( ccmlsm.matchpoint = circ_matchpoint.id OR + ( ccmlsm.matchpoint IN (SELECT * FROM unnest(result.buildrows)) AND ccmlsm.fallthrough ) + ) LOOP + IF circ_limit_set.items_out > 0 AND NOT renewal THEN + SELECT INTO context_org_list ARRAY_AGG(aou.id) + FROM actor.org_unit_full_path( circ_ou ) aou + JOIN actor.org_unit_type aout ON aou.ou_type = aout.id + WHERE aout.depth >= circ_limit_set.depth; + IF circ_limit_set.global THEN + WITH RECURSIVE descendant_depth AS ( + SELECT ou.id, + ou.parent_ou + FROM actor.org_unit ou + WHERE ou.id IN (SELECT * FROM unnest(context_org_list)) + UNION + SELECT ou.id, + ou.parent_ou + FROM actor.org_unit ou + JOIN descendant_depth ot ON (ot.id = ou.parent_ou) + ) SELECT INTO context_org_list ARRAY_AGG(ou.id) FROM actor.org_unit ou JOIN descendant_depth USING (id); + END IF; + SELECT INTO items_out COUNT(DISTINCT circ.id) + FROM action.circulation circ + JOIN asset.copy copy ON (copy.id = circ.target_copy) + LEFT JOIN action.circulation_limit_group_map aclgm ON (circ.id = aclgm.circ) + WHERE circ.usr = match_user + AND circ.circ_lib IN (SELECT * FROM unnest(context_org_list)) + AND circ.checkin_time IS NULL + AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL) + AND (copy.circ_modifier IN (SELECT circ_mod FROM config.circ_limit_set_circ_mod_map WHERE limit_set = circ_limit_set.id) + OR copy.location IN (SELECT copy_loc FROM config.circ_limit_set_copy_loc_map WHERE limit_set = circ_limit_set.id) + OR aclgm.limit_group IN (SELECT limit_group FROM config.circ_limit_set_group_map WHERE limit_set = circ_limit_set.id) + ); + IF items_out >= circ_limit_set.items_out THEN + result.fail_part := 'config.circ_matrix_circ_mod_test'; + result.success := FALSE; + done := TRUE; + RETURN NEXT result; + END IF; + END IF; + SELECT INTO result.limit_groups result.limit_groups || ARRAY_AGG(limit_group) FROM config.circ_limit_set_group_map WHERE limit_set = circ_limit_set.id AND NOT check_only; + END LOOP; + + -- If we passed everything, return the successful matchpoint + IF NOT done THEN + RETURN NEXT result; + END IF; + + RETURN; +END; +$$; + + +ALTER FUNCTION action.item_user_circ_test(circ_ou integer, match_item bigint, match_user integer, renewal boolean) OWNER TO evergreen; + +-- +-- Name: item_user_renew_test(integer, bigint, integer); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION item_user_renew_test(integer, bigint, integer) RETURNS SETOF circ_matrix_test_result + LANGUAGE sql + AS $_$ + SELECT * FROM action.item_user_circ_test( $1, $2, $3, TRUE ); +$_$; + + +ALTER FUNCTION action.item_user_renew_test(integer, bigint, integer) OWNER TO evergreen; + +-- +-- Name: link_circ_limit_groups(bigint, integer[]); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION link_circ_limit_groups(bigint, integer[]) RETURNS void + LANGUAGE sql + AS $_$ + INSERT INTO action.circulation_limit_group_map(circ, limit_group) SELECT $1, id FROM config.circ_limit_group WHERE id IN (SELECT * FROM UNNEST($2)); +$_$; + + +ALTER FUNCTION action.link_circ_limit_groups(bigint, integer[]) OWNER TO evergreen; + +-- +-- Name: maintain_usr_circ_history(); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION maintain_usr_circ_history() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + cur_circ BIGINT; + first_circ BIGINT; +BEGIN + + -- Any retention value signifies history is enabled. + -- This assumes that clearing these values via external + -- process deletes the action.usr_circ_history rows. + -- TODO: replace these settings w/ a single bool setting? + PERFORM 1 FROM actor.usr_setting + WHERE usr = NEW.usr AND value IS NOT NULL AND name IN ( + 'history.circ.retention_age', + 'history.circ.retention_start' + ); + + IF NOT FOUND THEN + RETURN NEW; + END IF; + + IF TG_OP = 'INSERT' AND NEW.parent_circ IS NULL THEN + -- Starting a new circulation. Insert the history row. + INSERT INTO action.usr_circ_history + (usr, xact_start, target_copy, due_date, source_circ) + VALUES ( + NEW.usr, + NEW.xact_start, + NEW.target_copy, + NEW.due_date, + NEW.id + ); + + RETURN NEW; + END IF; + + -- find the first and last circs in the circ chain + -- for the currently modified circ. + FOR cur_circ IN SELECT id FROM action.circ_chain(NEW.id) LOOP + IF first_circ IS NULL THEN + first_circ := cur_circ; + CONTINUE; + END IF; + -- Allow the loop to continue so that at as the loop + -- completes cur_circ points to the final circulation. + END LOOP; + + IF NEW.id <> cur_circ THEN + -- Modifying an intermediate circ. Ignore it. + RETURN NEW; + END IF; + + -- Update the due_date/checkin_time on the history row if the current + -- circ is the last circ in the chain and an update is warranted. + + UPDATE action.usr_circ_history + SET + due_date = NEW.due_date, + checkin_time = NEW.checkin_time + WHERE + source_circ = first_circ + AND ( + due_date <> NEW.due_date OR ( + (checkin_time IS NULL AND NEW.checkin_time IS NOT NULL) OR + (checkin_time IS NOT NULL AND NEW.checkin_time IS NULL) OR + (checkin_time <> NEW.checkin_time) + ) + ); + RETURN NEW; +END; +$$; + + +ALTER FUNCTION action.maintain_usr_circ_history() OWNER TO evergreen; + +-- +-- Name: purge_circulations(); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION purge_circulations() RETURNS integer + LANGUAGE plpgsql + AS $$ +DECLARE + org_keep_age INTERVAL; + org_use_last BOOL = false; + org_age_is_min BOOL = false; + org_keep_count INT; + + keep_age INTERVAL; + + target_acp RECORD; + circ_chain_head action.circulation%ROWTYPE; + circ_chain_tail action.circulation%ROWTYPE; + + count_purged INT; + num_incomplete INT; + + last_finished TIMESTAMP WITH TIME ZONE; +BEGIN + + count_purged := 0; + + SELECT value::INTERVAL INTO org_keep_age FROM config.global_flag WHERE name = 'history.circ.retention_age' AND enabled; + + SELECT value::INT INTO org_keep_count FROM config.global_flag WHERE name = 'history.circ.retention_count' AND enabled; + IF org_keep_count IS NULL THEN + RETURN count_purged; -- Gimme a count to keep, or I keep them all, forever + END IF; + + SELECT enabled INTO org_use_last FROM config.global_flag WHERE name = 'history.circ.retention_uses_last_finished'; + SELECT enabled INTO org_age_is_min FROM config.global_flag WHERE name = 'history.circ.retention_age_is_min'; + + -- First, find copies with more than keep_count non-renewal circs + FOR target_acp IN + SELECT target_copy, + COUNT(*) AS total_real_circs + FROM action.circulation + WHERE parent_circ IS NULL + AND xact_finish IS NOT NULL + GROUP BY target_copy + HAVING COUNT(*) > org_keep_count + LOOP + -- And, for those, select circs that are finished and older than keep_age + FOR circ_chain_head IN + -- For reference, the subquery uses a window function to order the circs newest to oldest and number them + -- The outer query then uses that information to skip the most recent set the library wants to keep + -- End result is we don't care what order they come out in, as they are all potentials for deletion. + SELECT ac.* FROM action.circulation ac JOIN ( + SELECT rank() OVER (ORDER BY xact_start DESC), ac.id + FROM action.circulation ac + WHERE ac.target_copy = target_acp.target_copy + AND ac.parent_circ IS NULL + ORDER BY ac.xact_start ) ranked USING (id) + WHERE ranked.rank > org_keep_count + LOOP + + SELECT * INTO circ_chain_tail FROM action.circ_chain(circ_chain_head.id) ORDER BY xact_start DESC LIMIT 1; + SELECT COUNT(CASE WHEN xact_finish IS NULL THEN 1 ELSE NULL END), MAX(xact_finish) INTO num_incomplete, last_finished FROM action.circ_chain(circ_chain_head.id); + CONTINUE WHEN circ_chain_tail.xact_finish IS NULL OR num_incomplete > 0; + + IF NOT org_use_last THEN + last_finished := circ_chain_tail.xact_finish; + END IF; + + keep_age := COALESCE( org_keep_age, '2000 years'::INTERVAL ); + + IF org_age_is_min THEN + keep_age := GREATEST( keep_age, org_keep_age ); + END IF; + + CONTINUE WHEN AGE(NOW(), last_finished) < keep_age; + + -- We've passed the purging tests, purge the circ chain starting at the end + -- A trigger should auto-purge the rest of the chain. + DELETE FROM action.circulation WHERE id = circ_chain_tail.id; + + count_purged := count_purged + 1; + + END LOOP; + END LOOP; + + return count_purged; +END; +$$; + + +ALTER FUNCTION action.purge_circulations() OWNER TO evergreen; + +-- +-- Name: purge_holds(); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION purge_holds() RETURNS integer + LANGUAGE plpgsql + AS $$ +DECLARE + current_hold RECORD; + purged_holds INT; + cgf_d INTERVAL; + cgf_f INTERVAL; + cgf_c INTERVAL; + prev_usr INT; + user_start TIMESTAMPTZ; + user_age INTERVAL; + user_count INT; +BEGIN + purged_holds := 0; + SELECT INTO cgf_d value::INTERVAL FROM config.global_flag WHERE name = 'history.hold.retention_age' AND enabled; + SELECT INTO cgf_f value::INTERVAL FROM config.global_flag WHERE name = 'history.hold.retention_age_fulfilled' AND enabled; + SELECT INTO cgf_c value::INTERVAL FROM config.global_flag WHERE name = 'history.hold.retention_age_canceled' AND enabled; + FOR current_hold IN + SELECT + rank() OVER (PARTITION BY usr ORDER BY COALESCE(fulfillment_time, cancel_time) DESC), + cgf_cs.value::INTERVAL as cgf_cs, + ahr.* + FROM + action.hold_request ahr + LEFT JOIN config.global_flag cgf_cs ON (ahr.cancel_cause IS NOT NULL AND cgf_cs.name = 'history.hold.retention_age_canceled_' || ahr.cancel_cause AND cgf_cs.enabled) + WHERE + (fulfillment_time IS NOT NULL OR cancel_time IS NOT NULL) + LOOP + IF prev_usr IS NULL OR prev_usr != current_hold.usr THEN + prev_usr := current_hold.usr; + SELECT INTO user_start oils_json_to_text(value)::TIMESTAMPTZ FROM actor.usr_setting WHERE usr = prev_usr AND name = 'history.hold.retention_start'; + SELECT INTO user_age oils_json_to_text(value)::INTERVAL FROM actor.usr_setting WHERE usr = prev_usr AND name = 'history.hold.retention_age'; + SELECT INTO user_count oils_json_to_text(value)::INT FROM actor.usr_setting WHERE usr = prev_usr AND name = 'history.hold.retention_count'; + IF user_start IS NOT NULL THEN + user_age := LEAST(user_age, AGE(NOW(), user_start)); + END IF; + IF user_count IS NULL THEN + user_count := 1000; -- Assumption based on the user visible holds routine + END IF; + END IF; + -- Library keep age trumps user keep anything, for purposes of being able to hold on to things when staff canceled and such. + IF current_hold.fulfillment_time IS NOT NULL AND current_hold.fulfillment_time > NOW() - COALESCE(cgf_f, cgf_d) THEN + CONTINUE; + END IF; + IF current_hold.cancel_time IS NOT NULL AND current_hold.cancel_time > NOW() - COALESCE(current_hold.cgf_cs, cgf_c, cgf_d) THEN + CONTINUE; + END IF; + + -- User keep age needs combining with count. If too old AND within the count, keep! + IF user_start IS NOT NULL AND COALESCE(current_hold.fulfillment_time, current_hold.cancel_time) > NOW() - user_age AND current_hold.rank <= user_count THEN + CONTINUE; + END IF; + + -- All checks should have passed, delete! + DELETE FROM action.hold_request WHERE id = current_hold.id; + purged_holds := purged_holds + 1; + END LOOP; + RETURN purged_holds; +END; +$$; + + +ALTER FUNCTION action.purge_holds() OWNER TO evergreen; + +-- +-- Name: push_circ_due_time(); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION push_circ_due_time() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + IF (EXTRACT(EPOCH FROM NEW.duration)::INT % EXTRACT(EPOCH FROM '1 day'::INTERVAL)::INT) = 0 THEN + NEW.due_date = (NEW.due_date::DATE + '1 day'::INTERVAL - '1 second'::INTERVAL)::TIMESTAMPTZ; + END IF; + + RETURN NEW; +END; +$$; + + +ALTER FUNCTION action.push_circ_due_time() OWNER TO evergreen; + +-- +-- Name: summarize_circ_chain(bigint); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION summarize_circ_chain(ctx_circ_id bigint) RETURNS circ_chain_summary + LANGUAGE plpgsql + AS $$ + +DECLARE + + -- first circ in the chain + circ_0 action.circulation%ROWTYPE; + + -- last circ in the chain + circ_n action.circulation%ROWTYPE; + + -- circ chain under construction + chain action.circ_chain_summary; + tmp_circ action.circulation%ROWTYPE; + +BEGIN + + chain.num_circs := 0; + FOR tmp_circ IN SELECT * FROM action.circ_chain(ctx_circ_id) LOOP + + IF chain.num_circs = 0 THEN + circ_0 := tmp_circ; + END IF; + + chain.num_circs := chain.num_circs + 1; + circ_n := tmp_circ; + END LOOP; + + chain.start_time := circ_0.xact_start; + chain.last_stop_fines := circ_n.stop_fines; + chain.last_stop_fines_time := circ_n.stop_fines_time; + chain.last_checkin_time := circ_n.checkin_time; + chain.last_checkin_scan_time := circ_n.checkin_scan_time; + SELECT INTO chain.checkout_workstation name FROM actor.workstation WHERE id = circ_0.workstation; + SELECT INTO chain.last_checkin_workstation name FROM actor.workstation WHERE id = circ_n.checkin_workstation; + + IF chain.num_circs > 1 THEN + chain.last_renewal_time := circ_n.xact_start; + SELECT INTO chain.last_renewal_workstation name FROM actor.workstation WHERE id = circ_n.workstation; + END IF; + + RETURN chain; + +END; +$$; + + +ALTER FUNCTION action.summarize_circ_chain(ctx_circ_id bigint) OWNER TO evergreen; + +-- +-- Name: survey_response_answer_date_fixup(); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION survey_response_answer_date_fixup() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + NEW.answer_date := NOW(); + RETURN NEW; +END; +$$; + + +ALTER FUNCTION action.survey_response_answer_date_fixup() OWNER TO evergreen; + +-- +-- Name: hold_request; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE hold_request ( + id integer NOT NULL, + request_time timestamp with time zone DEFAULT now() NOT NULL, + capture_time timestamp with time zone, + fulfillment_time timestamp with time zone, + checkin_time timestamp with time zone, + return_time timestamp with time zone, + prev_check_time timestamp with time zone, + expire_time timestamp with time zone, + cancel_time timestamp with time zone, + cancel_cause integer, + cancel_note text, + target bigint NOT NULL, + current_copy bigint, + fulfillment_staff integer, + fulfillment_lib integer, + request_lib integer NOT NULL, + requestor integer NOT NULL, + usr integer NOT NULL, + selection_ou integer NOT NULL, + selection_depth integer DEFAULT 0 NOT NULL, + pickup_lib integer NOT NULL, + hold_type text NOT NULL, + holdable_formats text, + phone_notify text, + email_notify boolean DEFAULT false NOT NULL, + sms_notify text, + sms_carrier integer, + frozen boolean DEFAULT false NOT NULL, + thaw_date timestamp with time zone, + shelf_time timestamp with time zone, + cut_in_line boolean, + mint_condition boolean DEFAULT true NOT NULL, + shelf_expire_time timestamp with time zone, + current_shelf_lib integer, + behind_desk boolean DEFAULT false NOT NULL, + CONSTRAINT sms_check CHECK (((sms_notify IS NULL) OR (sms_carrier IS NOT NULL))) +); + + +ALTER TABLE hold_request OWNER TO evergreen; + +-- +-- Name: usr_visible_holds(integer); Type: FUNCTION; Schema: action; Owner: evergreen +-- + +CREATE FUNCTION usr_visible_holds(usr_id integer) RETURNS SETOF hold_request + LANGUAGE plpgsql + AS $$ +DECLARE + h action.hold_request%ROWTYPE; + view_age INTERVAL; + view_count INT; + usr_view_count actor.usr_setting%ROWTYPE; + usr_view_age actor.usr_setting%ROWTYPE; + usr_view_start actor.usr_setting%ROWTYPE; +BEGIN + SELECT * INTO usr_view_count FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_count'; + SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_age'; + SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_start'; + + FOR h IN + SELECT * + FROM action.hold_request + WHERE usr = usr_id + AND fulfillment_time IS NULL + AND cancel_time IS NULL + ORDER BY request_time DESC + LOOP + RETURN NEXT h; + END LOOP; + + IF usr_view_start.value IS NULL THEN + RETURN; + END IF; + + IF usr_view_age.value IS NOT NULL THEN + -- User opted in and supplied a retention age + IF oils_json_to_text(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ) THEN + view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ); + ELSE + view_age := oils_json_to_text(usr_view_age.value)::INTERVAL; + END IF; + ELSE + -- User opted in + view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ); + END IF; + + IF usr_view_count.value IS NOT NULL THEN + view_count := oils_json_to_text(usr_view_count.value)::INT; + ELSE + view_count := 1000; + END IF; + + -- show some fulfilled/canceled holds + FOR h IN + SELECT * + FROM action.hold_request + WHERE usr = usr_id + AND ( fulfillment_time IS NOT NULL OR cancel_time IS NOT NULL ) + AND COALESCE(fulfillment_time, cancel_time) > NOW() - view_age + ORDER BY COALESCE(fulfillment_time, cancel_time) DESC + LIMIT view_count + LOOP + RETURN NEXT h; + END LOOP; + + RETURN; +END; +$$; + + +ALTER FUNCTION action.usr_visible_holds(usr_id integer) OWNER TO evergreen; + +SET search_path = actor, pg_catalog; + +-- +-- Name: address_alert; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE address_alert ( + id integer NOT NULL, + owner integer NOT NULL, + active boolean DEFAULT true NOT NULL, + match_all boolean DEFAULT true NOT NULL, + alert_message text NOT NULL, + street1 text, + street2 text, + city text, + county text, + state text, + country text, + post_code text, + mailing_address boolean DEFAULT false NOT NULL, + billing_address boolean DEFAULT false NOT NULL +); + + +ALTER TABLE address_alert OWNER TO evergreen; + +-- +-- Name: address_alert_matches(integer, text, text, text, text, text, text, text, boolean, boolean); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION address_alert_matches(org_unit integer, street1 text, street2 text, city text, county text, state text, country text, post_code text, mailing_address boolean DEFAULT false, billing_address boolean DEFAULT false) RETURNS SETOF address_alert + LANGUAGE sql + AS $_$ + +SELECT * +FROM actor.address_alert +WHERE + active + AND owner IN (SELECT id FROM actor.org_unit_ancestors($1)) + AND ( + (NOT mailing_address AND NOT billing_address) + OR (mailing_address AND $9) + OR (billing_address AND $10) + ) + AND ( + ( + match_all + AND COALESCE($2, '') ~* COALESCE(street1, '.*') + AND COALESCE($3, '') ~* COALESCE(street2, '.*') + AND COALESCE($4, '') ~* COALESCE(city, '.*') + AND COALESCE($5, '') ~* COALESCE(county, '.*') + AND COALESCE($6, '') ~* COALESCE(state, '.*') + AND COALESCE($7, '') ~* COALESCE(country, '.*') + AND COALESCE($8, '') ~* COALESCE(post_code, '.*') + ) OR ( + NOT match_all + AND ( + $2 ~* street1 + OR $3 ~* street2 + OR $4 ~* city + OR $5 ~* county + OR $6 ~* state + OR $7 ~* country + OR $8 ~* post_code + ) + ) + ) + ORDER BY actor.org_unit_proximity(owner, $1) +$_$; + + +ALTER FUNCTION actor.address_alert_matches(org_unit integer, street1 text, street2 text, city text, county text, state text, country text, post_code text, mailing_address boolean, billing_address boolean) OWNER TO evergreen; + +-- +-- Name: approve_pending_address(integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION approve_pending_address(pending_id integer) RETURNS bigint + LANGUAGE plpgsql + AS $$ +DECLARE + old_id INT; +BEGIN + SELECT INTO old_id replaces FROM actor.usr_address where id = pending_id; + IF old_id IS NULL THEN + UPDATE actor.usr_address SET pending = 'f' WHERE id = pending_id; + RETURN pending_id; + END IF; + -- address replaces an existing address + DELETE FROM actor.usr_address WHERE id = -old_id; + UPDATE actor.usr_address SET id = -id WHERE id = old_id; + UPDATE actor.usr_address SET replaces = NULL, id = old_id, pending = 'f' WHERE id = pending_id; + RETURN old_id; +END +$$; + + +ALTER FUNCTION actor.approve_pending_address(pending_id integer) OWNER TO evergreen; + +-- +-- Name: FUNCTION approve_pending_address(pending_id integer); Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON FUNCTION approve_pending_address(pending_id integer) IS ' +Replaces an address with a pending address. This is done by giving the pending +address the ID of the old address. The replaced address is retained with -id. +'; + + +-- +-- Name: au_updated(); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION au_updated() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + NEW.last_update_time := now(); + RETURN NEW; +END; +$$; + + +ALTER FUNCTION actor.au_updated() OWNER TO evergreen; + +-- +-- Name: usr_standing_penalty; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE usr_standing_penalty ( + id integer NOT NULL, + org_unit integer NOT NULL, + usr integer NOT NULL, + standing_penalty integer NOT NULL, + staff integer, + set_date timestamp with time zone DEFAULT now(), + stop_date timestamp with time zone, + note text +); + + +ALTER TABLE usr_standing_penalty OWNER TO evergreen; + +-- +-- Name: TABLE usr_standing_penalty; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON TABLE usr_standing_penalty IS ' +User standing penalties +'; + + +-- +-- Name: calculate_system_penalties(integer, integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION calculate_system_penalties(match_user integer, context_org integer) RETURNS SETOF usr_standing_penalty + LANGUAGE plpgsql + AS $$ +DECLARE + user_object actor.usr%ROWTYPE; + new_sp_row actor.usr_standing_penalty%ROWTYPE; + existing_sp_row actor.usr_standing_penalty%ROWTYPE; + collections_fines permission.grp_penalty_threshold%ROWTYPE; + max_fines permission.grp_penalty_threshold%ROWTYPE; + max_overdue permission.grp_penalty_threshold%ROWTYPE; + max_items_out permission.grp_penalty_threshold%ROWTYPE; + max_lost permission.grp_penalty_threshold%ROWTYPE; + max_longoverdue permission.grp_penalty_threshold%ROWTYPE; + tmp_grp INT; + items_overdue INT; + items_out INT; + items_lost INT; + items_longoverdue INT; + context_org_list INT[]; + current_fines NUMERIC(8,2) := 0.0; + tmp_fines NUMERIC(8,2); + tmp_groc RECORD; + tmp_circ RECORD; + tmp_org actor.org_unit%ROWTYPE; + tmp_penalty config.standing_penalty%ROWTYPE; + tmp_depth INTEGER; +BEGIN + SELECT INTO user_object * FROM actor.usr WHERE id = match_user; + + -- Max fines + SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org; + + -- Fail if the user has a high fine balance + LOOP + tmp_grp := user_object.profile; + LOOP + SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 1 AND org_unit = tmp_org.id; + + IF max_fines.threshold IS NULL THEN + SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp; + ELSE + EXIT; + END IF; + + IF tmp_grp IS NULL THEN + EXIT; + END IF; + END LOOP; + + IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN + EXIT; + END IF; + + SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou; + + END LOOP; + + IF max_fines.threshold IS NOT NULL THEN + + RETURN QUERY + SELECT * + FROM actor.usr_standing_penalty + WHERE usr = match_user + AND org_unit = max_fines.org_unit + AND (stop_date IS NULL or stop_date > NOW()) + AND standing_penalty = 1; + + SELECT INTO context_org_list ARRAY_AGG(id) FROM actor.org_unit_full_path( max_fines.org_unit ); + + SELECT SUM(f.balance_owed) INTO current_fines + FROM money.materialized_billable_xact_summary f + JOIN ( + SELECT r.id + FROM booking.reservation r + WHERE r.usr = match_user + AND r.pickup_lib IN (SELECT * FROM unnest(context_org_list)) + AND xact_finish IS NULL + UNION ALL + SELECT g.id + FROM money.grocery g + WHERE g.usr = match_user + AND g.billing_location IN (SELECT * FROM unnest(context_org_list)) + AND xact_finish IS NULL + UNION ALL + SELECT circ.id + FROM action.circulation circ + WHERE circ.usr = match_user + AND circ.circ_lib IN (SELECT * FROM unnest(context_org_list)) + AND xact_finish IS NULL ) l USING (id); + + IF current_fines >= max_fines.threshold THEN + new_sp_row.usr := match_user; + new_sp_row.org_unit := max_fines.org_unit; + new_sp_row.standing_penalty := 1; + RETURN NEXT new_sp_row; + END IF; + END IF; + + -- Start over for max overdue + SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org; + + -- Fail if the user has too many overdue items + LOOP + tmp_grp := user_object.profile; + LOOP + + SELECT * INTO max_overdue FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 2 AND org_unit = tmp_org.id; + + IF max_overdue.threshold IS NULL THEN + SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp; + ELSE + EXIT; + END IF; + + IF tmp_grp IS NULL THEN + EXIT; + END IF; + END LOOP; + + IF max_overdue.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN + EXIT; + END IF; + + SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou; + + END LOOP; + + IF max_overdue.threshold IS NOT NULL THEN + + RETURN QUERY + SELECT * + FROM actor.usr_standing_penalty + WHERE usr = match_user + AND org_unit = max_overdue.org_unit + AND (stop_date IS NULL or stop_date > NOW()) + AND standing_penalty = 2; + + SELECT INTO items_overdue COUNT(*) + FROM action.circulation circ + JOIN actor.org_unit_full_path( max_overdue.org_unit ) fp ON (circ.circ_lib = fp.id) + WHERE circ.usr = match_user + AND circ.checkin_time IS NULL + AND circ.due_date < NOW() + AND (circ.stop_fines = 'MAXFINES' OR circ.stop_fines IS NULL); + + IF items_overdue >= max_overdue.threshold::INT THEN + new_sp_row.usr := match_user; + new_sp_row.org_unit := max_overdue.org_unit; + new_sp_row.standing_penalty := 2; + RETURN NEXT new_sp_row; + END IF; + END IF; + + -- Start over for max out + SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org; + + -- Fail if the user has too many checked out items + LOOP + tmp_grp := user_object.profile; + LOOP + SELECT * INTO max_items_out FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 3 AND org_unit = tmp_org.id; + + IF max_items_out.threshold IS NULL THEN + SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp; + ELSE + EXIT; + END IF; + + IF tmp_grp IS NULL THEN + EXIT; + END IF; + END LOOP; + + IF max_items_out.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN + EXIT; + END IF; + + SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou; + + END LOOP; + + + -- Fail if the user has too many items checked out + IF max_items_out.threshold IS NOT NULL THEN + + RETURN QUERY + SELECT * + FROM actor.usr_standing_penalty + WHERE usr = match_user + AND org_unit = max_items_out.org_unit + AND (stop_date IS NULL or stop_date > NOW()) + AND standing_penalty = 3; + + SELECT INTO items_out COUNT(*) + FROM action.circulation circ + JOIN actor.org_unit_full_path( max_items_out.org_unit ) fp ON (circ.circ_lib = fp.id) + WHERE circ.usr = match_user + AND circ.checkin_time IS NULL + AND (circ.stop_fines IN ( + SELECT 'MAXFINES'::TEXT + UNION ALL + SELECT 'LONGOVERDUE'::TEXT + UNION ALL + SELECT 'LOST'::TEXT + WHERE 'true' ILIKE + ( + SELECT CASE + WHEN (SELECT value FROM actor.org_unit_ancestor_setting('circ.tally_lost', circ.circ_lib)) ILIKE 'true' THEN 'true' + ELSE 'false' + END + ) + UNION ALL + SELECT 'CLAIMSRETURNED'::TEXT + WHERE 'false' ILIKE + ( + SELECT CASE + WHEN (SELECT value FROM actor.org_unit_ancestor_setting('circ.do_not_tally_claims_returned', circ.circ_lib)) ILIKE 'true' THEN 'true' + ELSE 'false' + END + ) + ) OR circ.stop_fines IS NULL) + AND xact_finish IS NULL; + + IF items_out >= max_items_out.threshold::INT THEN + new_sp_row.usr := match_user; + new_sp_row.org_unit := max_items_out.org_unit; + new_sp_row.standing_penalty := 3; + RETURN NEXT new_sp_row; + END IF; + END IF; + + -- Start over for max lost + SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org; + + -- Fail if the user has too many lost items + LOOP + tmp_grp := user_object.profile; + LOOP + + SELECT * INTO max_lost FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 5 AND org_unit = tmp_org.id; + + IF max_lost.threshold IS NULL THEN + SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp; + ELSE + EXIT; + END IF; + + IF tmp_grp IS NULL THEN + EXIT; + END IF; + END LOOP; + + IF max_lost.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN + EXIT; + END IF; + + SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou; + + END LOOP; + + IF max_lost.threshold IS NOT NULL THEN + + RETURN QUERY + SELECT * + FROM actor.usr_standing_penalty + WHERE usr = match_user + AND org_unit = max_lost.org_unit + AND (stop_date IS NULL or stop_date > NOW()) + AND standing_penalty = 5; + + SELECT INTO items_lost COUNT(*) + FROM action.circulation circ + JOIN actor.org_unit_full_path( max_lost.org_unit ) fp ON (circ.circ_lib = fp.id) + WHERE circ.usr = match_user + AND circ.checkin_time IS NULL + AND (circ.stop_fines = 'LOST') + AND xact_finish IS NULL; + + IF items_lost >= max_lost.threshold::INT AND 0 < max_lost.threshold::INT THEN + new_sp_row.usr := match_user; + new_sp_row.org_unit := max_lost.org_unit; + new_sp_row.standing_penalty := 5; + RETURN NEXT new_sp_row; + END IF; + END IF; + + -- Start over for max longoverdue + SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org; + + -- Fail if the user has too many longoverdue items + LOOP + tmp_grp := user_object.profile; + LOOP + + SELECT * INTO max_longoverdue + FROM permission.grp_penalty_threshold + WHERE grp = tmp_grp AND + penalty = 35 AND + org_unit = tmp_org.id; + + IF max_longoverdue.threshold IS NULL THEN + SELECT parent INTO tmp_grp + FROM permission.grp_tree WHERE id = tmp_grp; + ELSE + EXIT; + END IF; + + IF tmp_grp IS NULL THEN + EXIT; + END IF; + END LOOP; + + IF max_longoverdue.threshold IS NOT NULL + OR tmp_org.parent_ou IS NULL THEN + EXIT; + END IF; + + SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou; + + END LOOP; + + IF max_longoverdue.threshold IS NOT NULL THEN + + RETURN QUERY + SELECT * + FROM actor.usr_standing_penalty + WHERE usr = match_user + AND org_unit = max_longoverdue.org_unit + AND (stop_date IS NULL or stop_date > NOW()) + AND standing_penalty = 35; + + SELECT INTO items_longoverdue COUNT(*) + FROM action.circulation circ + JOIN actor.org_unit_full_path( max_longoverdue.org_unit ) fp + ON (circ.circ_lib = fp.id) + WHERE circ.usr = match_user + AND circ.checkin_time IS NULL + AND (circ.stop_fines = 'LONGOVERDUE') + AND xact_finish IS NULL; + + IF items_longoverdue >= max_longoverdue.threshold::INT + AND 0 < max_longoverdue.threshold::INT THEN + new_sp_row.usr := match_user; + new_sp_row.org_unit := max_longoverdue.org_unit; + new_sp_row.standing_penalty := 35; + RETURN NEXT new_sp_row; + END IF; + END IF; + + + -- Start over for collections warning + SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org; + + -- Fail if the user has a collections-level fine balance + LOOP + tmp_grp := user_object.profile; + LOOP + SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 4 AND org_unit = tmp_org.id; + + IF max_fines.threshold IS NULL THEN + SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp; + ELSE + EXIT; + END IF; + + IF tmp_grp IS NULL THEN + EXIT; + END IF; + END LOOP; + + IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN + EXIT; + END IF; + + SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou; + + END LOOP; + + IF max_fines.threshold IS NOT NULL THEN + + RETURN QUERY + SELECT * + FROM actor.usr_standing_penalty + WHERE usr = match_user + AND org_unit = max_fines.org_unit + AND (stop_date IS NULL or stop_date > NOW()) + AND standing_penalty = 4; + + SELECT INTO context_org_list ARRAY_AGG(id) FROM actor.org_unit_full_path( max_fines.org_unit ); + + SELECT SUM(f.balance_owed) INTO current_fines + FROM money.materialized_billable_xact_summary f + JOIN ( + SELECT r.id + FROM booking.reservation r + WHERE r.usr = match_user + AND r.pickup_lib IN (SELECT * FROM unnest(context_org_list)) + AND r.xact_finish IS NULL + UNION ALL + SELECT g.id + FROM money.grocery g + WHERE g.usr = match_user + AND g.billing_location IN (SELECT * FROM unnest(context_org_list)) + AND g.xact_finish IS NULL + UNION ALL + SELECT circ.id + FROM action.circulation circ + WHERE circ.usr = match_user + AND circ.circ_lib IN (SELECT * FROM unnest(context_org_list)) + AND circ.xact_finish IS NULL ) l USING (id); + + IF current_fines >= max_fines.threshold THEN + new_sp_row.usr := match_user; + new_sp_row.org_unit := max_fines.org_unit; + new_sp_row.standing_penalty := 4; + RETURN NEXT new_sp_row; + END IF; + END IF; + + -- Start over for in collections + SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org; + + -- Remove the in-collections penalty if the user has paid down enough + -- This penalty is different, because this code is not responsible for creating + -- new in-collections penalties, only for removing them + LOOP + tmp_grp := user_object.profile; + LOOP + SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 30 AND org_unit = tmp_org.id; + + IF max_fines.threshold IS NULL THEN + SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp; + ELSE + EXIT; + END IF; + + IF tmp_grp IS NULL THEN + EXIT; + END IF; + END LOOP; + + IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN + EXIT; + END IF; + + SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou; + + END LOOP; + + IF max_fines.threshold IS NOT NULL THEN + + SELECT INTO context_org_list ARRAY_AGG(id) FROM actor.org_unit_full_path( max_fines.org_unit ); + + -- first, see if the user had paid down to the threshold + SELECT SUM(f.balance_owed) INTO current_fines + FROM money.materialized_billable_xact_summary f + JOIN ( + SELECT r.id + FROM booking.reservation r + WHERE r.usr = match_user + AND r.pickup_lib IN (SELECT * FROM unnest(context_org_list)) + AND r.xact_finish IS NULL + UNION ALL + SELECT g.id + FROM money.grocery g + WHERE g.usr = match_user + AND g.billing_location IN (SELECT * FROM unnest(context_org_list)) + AND g.xact_finish IS NULL + UNION ALL + SELECT circ.id + FROM action.circulation circ + WHERE circ.usr = match_user + AND circ.circ_lib IN (SELECT * FROM unnest(context_org_list)) + AND circ.xact_finish IS NULL ) l USING (id); + + IF current_fines IS NULL OR current_fines <= max_fines.threshold THEN + -- patron has paid down enough + + SELECT INTO tmp_penalty * FROM config.standing_penalty WHERE id = 30; + + IF tmp_penalty.org_depth IS NOT NULL THEN + + -- since this code is not responsible for applying the penalty, it can't + -- guarantee the current context org will match the org at which the penalty + --- was applied. search up the org tree until we hit the configured penalty depth + SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org; + SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type; + + WHILE tmp_depth >= tmp_penalty.org_depth LOOP + + RETURN QUERY + SELECT * + FROM actor.usr_standing_penalty + WHERE usr = match_user + AND org_unit = tmp_org.id + AND (stop_date IS NULL or stop_date > NOW()) + AND standing_penalty = 30; + + IF tmp_org.parent_ou IS NULL THEN + EXIT; + END IF; + + SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou; + SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type; + END LOOP; + + ELSE + + -- no penalty depth is defined, look for exact matches + + RETURN QUERY + SELECT * + FROM actor.usr_standing_penalty + WHERE usr = match_user + AND org_unit = max_fines.org_unit + AND (stop_date IS NULL or stop_date > NOW()) + AND standing_penalty = 30; + END IF; + + END IF; + + END IF; + + RETURN; +END; +$$; + + +ALTER FUNCTION actor.calculate_system_penalties(match_user integer, context_org integer) OWNER TO evergreen; + +-- +-- Name: convert_usr_note_to_message(); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION convert_usr_note_to_message() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + sending_ou INTEGER; +BEGIN + IF NEW.pub THEN + IF TG_OP = 'UPDATE' THEN + IF OLD.pub = TRUE THEN + RETURN NEW; + END IF; + END IF; + + SELECT INTO sending_ou aw.owning_lib + FROM auditor.get_audit_info() agai + JOIN actor.workstation aw ON (aw.id = agai.eg_ws); + IF sending_ou IS NULL THEN + SELECT INTO sending_ou home_ou + FROM actor.usr + WHERE id = NEW.creator; + END IF; + INSERT INTO actor.usr_message (usr, title, message, sending_lib) + VALUES (NEW.usr, NEW.title, NEW.value, sending_ou); + END IF; + + RETURN NEW; +END; +$$; + + +ALTER FUNCTION actor.convert_usr_note_to_message() OWNER TO evergreen; + +-- +-- Name: create_salt(text); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION create_salt(pw_type text) RETURNS text + LANGUAGE plpgsql + AS $$ +DECLARE + type_row actor.passwd_type%ROWTYPE; +BEGIN + /* Returns a new salt based on the passwd_type encryption settings. + * Returns NULL If the password type is not crypt()'ed. + */ + + SELECT INTO type_row * FROM actor.passwd_type WHERE code = pw_type; + + IF NOT FOUND THEN + RETURN EXCEPTION 'No such password type: %', pw_type; + END IF; + + IF type_row.iter_count IS NULL THEN + -- This password type is unsalted. That's OK. + RETURN NULL; + END IF; + + RETURN gen_salt(type_row.crypt_algo, type_row.iter_count); +END; +$$; + + +ALTER FUNCTION actor.create_salt(pw_type text) OWNER TO evergreen; + +-- +-- Name: crypt_pw_insert(); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION crypt_pw_insert() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + NEW.passwd = MD5( NEW.passwd ); + RETURN NEW; + END; +$$; + + +ALTER FUNCTION actor.crypt_pw_insert() OWNER TO evergreen; + +-- +-- Name: crypt_pw_update(); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION crypt_pw_update() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + IF NEW.passwd <> OLD.passwd THEN + NEW.passwd = MD5( NEW.passwd ); + END IF; + RETURN NEW; + END; +$$; + + +ALTER FUNCTION actor.crypt_pw_update() OWNER TO evergreen; + +-- +-- Name: get_salt(integer, text); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION get_salt(pw_usr integer, pw_type text) RETURNS text + LANGUAGE plpgsql + AS $$ +DECLARE + pw_salt TEXT; + type_row actor.passwd_type%ROWTYPE; +BEGIN + /* Returns the salt for the requested user + type. If the password + * type of "main" is requested and no password exists in actor.passwd, + * the user's existing password is migrated and the new salt is returned. + * Returns NULL if the password type is not crypt'ed (iter_count is NULL). + */ + + SELECT INTO pw_salt salt FROM actor.passwd + WHERE usr = pw_usr AND passwd_type = pw_type; + + IF FOUND THEN + RETURN pw_salt; + END IF; + + IF pw_type = 'main' THEN + -- Main password has not yet been migrated. + -- Do it now and return the newly created salt. + RETURN actor.migrate_passwd(pw_usr); + END IF; + + -- We have no salt to return. actor.create_salt() needed. + RETURN NULL; +END; +$$; + + +ALTER FUNCTION actor.get_salt(pw_usr integer, pw_type text) OWNER TO evergreen; + +-- +-- Name: usr_activity; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE usr_activity ( + id bigint NOT NULL, + usr integer, + etype integer NOT NULL, + event_time timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE usr_activity OWNER TO evergreen; + +-- +-- Name: insert_usr_activity(integer, text, text, text); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION insert_usr_activity(usr integer, ewho text, ewhat text, ehow text) RETURNS SETOF usr_activity + LANGUAGE plpgsql + AS $$ +DECLARE + new_row actor.usr_activity%ROWTYPE; +BEGIN + SELECT id INTO new_row.etype FROM actor.usr_activity_get_type(ewho, ewhat, ehow); + IF FOUND THEN + new_row.usr := usr; + INSERT INTO actor.usr_activity (usr, etype) + VALUES (usr, new_row.etype) + RETURNING * INTO new_row; + RETURN NEXT new_row; + END IF; +END; +$$; + + +ALTER FUNCTION actor.insert_usr_activity(usr integer, ewho text, ewhat text, ehow text) OWNER TO evergreen; + +-- +-- Name: migrate_passwd(integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION migrate_passwd(pw_usr integer) RETURNS text + LANGUAGE plpgsql + AS $$ +DECLARE + pw_salt TEXT; + usr_row actor.usr%ROWTYPE; +BEGIN + /* Migrates legacy actor.usr.passwd value to actor.passwd with + * a password type 'main' and returns the new salt. For backwards + * compatibility with existing CHAP-style API's, we perform a + * layer of intermediate MD5(MD5()) hashing. This is intermediate + * hashing is not required of other passwords. + */ + + -- Avoid calling get_salt() here, because it may result in a + -- migrate_passwd() call, creating a loop. + SELECT INTO pw_salt salt FROM actor.passwd + WHERE usr = pw_usr AND passwd_type = 'main'; + + -- Only migrate passwords that have not already been migrated. + IF FOUND THEN + RETURN pw_salt; + END IF; + + SELECT INTO usr_row * FROM actor.usr WHERE id = pw_usr; + + pw_salt := actor.create_salt('main'); + + PERFORM actor.set_passwd( + pw_usr, 'main', MD5(pw_salt || usr_row.passwd), pw_salt); + + -- clear the existing password + UPDATE actor.usr SET passwd = '' WHERE id = usr_row.id; + + RETURN pw_salt; +END; +$$; + + +ALTER FUNCTION actor.migrate_passwd(pw_usr integer) OWNER TO evergreen; + +-- +-- Name: org_unit; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE org_unit ( + id integer NOT NULL, + parent_ou integer, + ou_type integer NOT NULL, + ill_address integer, + holds_address integer, + mailing_address integer, + billing_address integer, + shortname text NOT NULL, + name text NOT NULL, + email text, + phone text, + opac_visible boolean DEFAULT true NOT NULL, + fiscal_calendar integer DEFAULT 1 NOT NULL +); + + +ALTER TABLE org_unit OWNER TO evergreen; + +-- +-- Name: org_unit_ancestor_at_depth(integer, integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_ancestor_at_depth(integer, integer) RETURNS org_unit + LANGUAGE sql STABLE + AS $_$ + SELECT a.* + FROM actor.org_unit a + WHERE id = ( SELECT FIRST(x.id) + FROM actor.org_unit_ancestors($1) x + JOIN actor.org_unit_type y + ON x.ou_type = y.id AND y.depth = $2); +$_$; + + +ALTER FUNCTION actor.org_unit_ancestor_at_depth(integer, integer) OWNER TO evergreen; + +SET search_path = evergreen, pg_catalog; + +-- +-- Name: is_json(text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION is_json(text) RETURNS boolean + LANGUAGE plperlu + AS $_$ + use JSON::XS; + my $json = shift(); + eval { JSON::XS->new->allow_nonref->decode( $json ) }; + return $@ ? 0 : 1; +$_$; + + +ALTER FUNCTION evergreen.is_json(text) OWNER TO evergreen; + +SET search_path = actor, pg_catalog; + +-- +-- Name: org_unit_setting; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE org_unit_setting ( + id bigint NOT NULL, + org_unit integer NOT NULL, + name text NOT NULL, + value text NOT NULL, + CONSTRAINT aous_must_be_json CHECK (evergreen.is_json(value)) +); + + +ALTER TABLE org_unit_setting OWNER TO evergreen; + +-- +-- Name: TABLE org_unit_setting; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON TABLE org_unit_setting IS ' +Org Unit settings + +This table contains any arbitrary settings that a client +program would like to save for an org unit. +'; + + +-- +-- Name: org_unit_ancestor_setting(text, integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_ancestor_setting(setting_name text, org_id integer) RETURNS SETOF org_unit_setting + LANGUAGE plpgsql STABLE ROWS 1 + AS $$ +DECLARE + setting RECORD; + cur_org INT; +BEGIN + cur_org := org_id; + LOOP + SELECT INTO setting * FROM actor.org_unit_setting WHERE org_unit = cur_org AND name = setting_name; + IF FOUND THEN + RETURN NEXT setting; + EXIT; + END IF; + SELECT INTO cur_org parent_ou FROM actor.org_unit WHERE id = cur_org; + EXIT WHEN cur_org IS NULL; + END LOOP; + RETURN; +END; +$$; + + +ALTER FUNCTION actor.org_unit_ancestor_setting(setting_name text, org_id integer) OWNER TO evergreen; + +-- +-- Name: FUNCTION org_unit_ancestor_setting(setting_name text, org_id integer); Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON FUNCTION org_unit_ancestor_setting(setting_name text, org_id integer) IS ' +Search "up" the org_unit tree until we find the first occurrence of an +org_unit_setting with the given name. +'; + + +-- +-- Name: org_unit_ancestor_setting_batch(integer, text[]); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_ancestor_setting_batch(org_id integer, setting_names text[]) RETURNS SETOF org_unit_setting + LANGUAGE plpgsql STABLE + AS $$ +DECLARE + setting RECORD; + setting_name TEXT; + cur_org INT; +BEGIN + FOREACH setting_name IN ARRAY setting_names + LOOP + cur_org := org_id; + LOOP + SELECT INTO setting * FROM actor.org_unit_setting WHERE org_unit = cur_org AND name = setting_name; + IF FOUND THEN + RETURN NEXT setting; + EXIT; + END IF; + SELECT INTO cur_org parent_ou FROM actor.org_unit WHERE id = cur_org; + EXIT WHEN cur_org IS NULL; + END LOOP; + END LOOP; + RETURN; +END; +$$; + + +ALTER FUNCTION actor.org_unit_ancestor_setting_batch(org_id integer, setting_names text[]) OWNER TO evergreen; + +-- +-- Name: FUNCTION org_unit_ancestor_setting_batch(org_id integer, setting_names text[]); Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON FUNCTION org_unit_ancestor_setting_batch(org_id integer, setting_names text[]) IS ' +For each setting name passed, search "up" the org_unit tree until +we find the first occurrence of an org_unit_setting with the given name. +'; + + +-- +-- Name: org_unit_ancestors(integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_ancestors(integer) RETURNS SETOF org_unit + LANGUAGE sql ROWS 1 + AS $_$ + WITH RECURSIVE org_unit_ancestors_distance(id, distance) AS ( + SELECT $1, 0 + UNION + SELECT ou.parent_ou, ouad.distance+1 + FROM actor.org_unit ou JOIN org_unit_ancestors_distance ouad ON (ou.id = ouad.id) + WHERE ou.parent_ou IS NOT NULL + ) + SELECT ou.* FROM actor.org_unit ou JOIN org_unit_ancestors_distance ouad USING (id) ORDER BY ouad.distance DESC; +$_$; + + +ALTER FUNCTION actor.org_unit_ancestors(integer) OWNER TO evergreen; + +-- +-- Name: org_unit_ancestors_distance(integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_ancestors_distance(integer) RETURNS TABLE(id integer, distance integer) + LANGUAGE sql STABLE ROWS 1 + AS $_$ + WITH RECURSIVE org_unit_ancestors_distance(id, distance) AS ( + SELECT $1, 0 + UNION + SELECT ou.parent_ou, ouad.distance+1 + FROM actor.org_unit ou JOIN org_unit_ancestors_distance ouad ON (ou.id = ouad.id) + WHERE ou.parent_ou IS NOT NULL + ) + SELECT * FROM org_unit_ancestors_distance; +$_$; + + +ALTER FUNCTION actor.org_unit_ancestors_distance(integer) OWNER TO evergreen; + +-- +-- Name: org_unit_combined_ancestors(integer, integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_combined_ancestors(integer, integer) RETURNS SETOF org_unit + LANGUAGE sql STABLE ROWS 1 + AS $_$ + SELECT * + FROM actor.org_unit_ancestors($1) + UNION + SELECT * + FROM actor.org_unit_ancestors($2); +$_$; + + +ALTER FUNCTION actor.org_unit_combined_ancestors(integer, integer) OWNER TO evergreen; + +-- +-- Name: org_unit_common_ancestors(integer, integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_common_ancestors(integer, integer) RETURNS SETOF org_unit + LANGUAGE sql STABLE ROWS 1 + AS $_$ + SELECT * + FROM actor.org_unit_ancestors($1) + INTERSECT + SELECT * + FROM actor.org_unit_ancestors($2); +$_$; + + +ALTER FUNCTION actor.org_unit_common_ancestors(integer, integer) OWNER TO evergreen; + +-- +-- Name: org_unit_descendants(integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_descendants(integer) RETURNS SETOF org_unit + LANGUAGE sql ROWS 1 + AS $_$ + WITH RECURSIVE descendant_depth AS ( + SELECT ou.id, + ou.parent_ou, + out.depth + FROM actor.org_unit ou + JOIN actor.org_unit_type out ON (out.id = ou.ou_type) + WHERE ou.id = $1 + UNION ALL + SELECT ou.id, + ou.parent_ou, + out.depth + FROM actor.org_unit ou + JOIN actor.org_unit_type out ON (out.id = ou.ou_type) + JOIN descendant_depth ot ON (ot.id = ou.parent_ou) + ) SELECT ou.* FROM actor.org_unit ou JOIN descendant_depth USING (id); +$_$; + + +ALTER FUNCTION actor.org_unit_descendants(integer) OWNER TO evergreen; + +-- +-- Name: org_unit_descendants(integer, integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_descendants(integer, integer) RETURNS SETOF org_unit + LANGUAGE sql ROWS 1 + AS $_$ + WITH RECURSIVE descendant_depth AS ( + SELECT ou.id, + ou.parent_ou, + out.depth + FROM actor.org_unit ou + JOIN actor.org_unit_type out ON (out.id = ou.ou_type) + JOIN anscestor_depth ad ON (ad.id = ou.id) + WHERE ad.depth = $2 + UNION ALL + SELECT ou.id, + ou.parent_ou, + out.depth + FROM actor.org_unit ou + JOIN actor.org_unit_type out ON (out.id = ou.ou_type) + JOIN descendant_depth ot ON (ot.id = ou.parent_ou) + ), anscestor_depth AS ( + SELECT ou.id, + ou.parent_ou, + out.depth + FROM actor.org_unit ou + JOIN actor.org_unit_type out ON (out.id = ou.ou_type) + WHERE ou.id = $1 + UNION ALL + SELECT ou.id, + ou.parent_ou, + out.depth + FROM actor.org_unit ou + JOIN actor.org_unit_type out ON (out.id = ou.ou_type) + JOIN anscestor_depth ot ON (ot.parent_ou = ou.id) + ) SELECT ou.* FROM actor.org_unit ou JOIN descendant_depth USING (id); +$_$; + + +ALTER FUNCTION actor.org_unit_descendants(integer, integer) OWNER TO evergreen; + +-- +-- Name: org_unit_descendants_distance(integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_descendants_distance(integer) RETURNS TABLE(id integer, distance integer) + LANGUAGE sql STABLE ROWS 1 + AS $_$ + WITH RECURSIVE org_unit_descendants_distance(id, distance) AS ( + SELECT $1, 0 + UNION + SELECT ou.id, oudd.distance+1 + FROM actor.org_unit ou JOIN org_unit_descendants_distance oudd ON (ou.parent_ou = oudd.id) + ) + SELECT * FROM org_unit_descendants_distance; +$_$; + + +ALTER FUNCTION actor.org_unit_descendants_distance(integer) OWNER TO evergreen; + +-- +-- Name: org_unit_full_path(integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_full_path(integer) RETURNS SETOF org_unit + LANGUAGE sql STABLE ROWS 1 + AS $_$ + SELECT * + FROM actor.org_unit_ancestors($1) + UNION + SELECT * + FROM actor.org_unit_descendants($1); +$_$; + + +ALTER FUNCTION actor.org_unit_full_path(integer) OWNER TO evergreen; + +-- +-- Name: org_unit_full_path(integer, integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_full_path(integer, integer) RETURNS SETOF org_unit + LANGUAGE sql STABLE ROWS 1 + AS $_$ + SELECT * FROM actor.org_unit_full_path((actor.org_unit_ancestor_at_depth($1, $2)).id) +$_$; + + +ALTER FUNCTION actor.org_unit_full_path(integer, integer) OWNER TO evergreen; + +-- +-- Name: org_unit_parent_protect(); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_parent_protect() RETURNS trigger + LANGUAGE plpgsql + AS $$ + DECLARE + current_aou actor.org_unit%ROWTYPE; + seen_ous INT[]; + depth_count INT; + BEGIN + current_aou := NEW; + depth_count := 0; + seen_ous := ARRAY[NEW.id]; + + IF (TG_OP = 'UPDATE') THEN + IF (NEW.parent_ou IS NOT DISTINCT FROM OLD.parent_ou) THEN + RETURN NEW; -- Doing an UPDATE with no change, just return it + END IF; + END IF; + + LOOP + IF current_aou.parent_ou IS NULL THEN -- Top of the org tree? + RETURN NEW; -- No loop. Carry on. + END IF; + IF current_aou.parent_ou = ANY(seen_ous) THEN -- Parent is one we have seen? + RAISE 'OU LOOP: Saw % twice', current_aou.parent_ou; -- LOOP! ABORT! + END IF; + -- Get the next one! + SELECT INTO current_aou * FROM actor.org_unit WHERE id = current_aou.parent_ou; + seen_ous := seen_ous || current_aou.id; + depth_count := depth_count + 1; + IF depth_count = 100 THEN + RAISE 'OU CHECK TOO DEEP'; + END IF; + END LOOP; + + RETURN NEW; + END; +$$; + + +ALTER FUNCTION actor.org_unit_parent_protect() OWNER TO evergreen; + +-- +-- Name: org_unit_prox_update(); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_prox_update() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + + +IF TG_OP = 'DELETE' THEN + + DELETE FROM actor.org_unit_proximity WHERE (from_org = OLD.id or to_org= OLD.id); + +END IF; + +IF TG_OP = 'UPDATE' THEN + + IF NEW.parent_ou <> OLD.parent_ou THEN + + DELETE FROM actor.org_unit_proximity WHERE (from_org = OLD.id or to_org= OLD.id); + INSERT INTO actor.org_unit_proximity (from_org, to_org, prox) + SELECT l.id, r.id, actor.org_unit_proximity(l.id,r.id) + FROM actor.org_unit l, actor.org_unit r + WHERE (l.id = NEW.id or r.id = NEW.id); + + END IF; + +END IF; + +IF TG_OP = 'INSERT' THEN + + INSERT INTO actor.org_unit_proximity (from_org, to_org, prox) + SELECT l.id, r.id, actor.org_unit_proximity(l.id,r.id) + FROM actor.org_unit l, actor.org_unit r + WHERE (l.id = NEW.id or r.id = NEW.id); + +END IF; + +RETURN null; + +END; +$$; + + +ALTER FUNCTION actor.org_unit_prox_update() OWNER TO evergreen; + +-- +-- Name: org_unit_proximity(integer, integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_proximity(integer, integer) RETURNS integer + LANGUAGE sql STABLE + AS $_$ + SELECT COUNT(id)::INT FROM ( + SELECT id FROM actor.org_unit_combined_ancestors($1, $2) + EXCEPT + SELECT id FROM actor.org_unit_common_ancestors($1, $2) + ) z; +$_$; + + +ALTER FUNCTION actor.org_unit_proximity(integer, integer) OWNER TO evergreen; + +-- +-- Name: org_unit_simple_path(integer, integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION org_unit_simple_path(integer, integer) RETURNS integer[] + LANGUAGE sql STABLE + AS $_$ + WITH RECURSIVE descendant_depth(id, path) AS ( + SELECT aou.id, + ARRAY[aou.id] + FROM actor.org_unit aou + JOIN actor.org_unit_type aout ON (aout.id = aou.ou_type) + WHERE aou.id = $2 + UNION ALL + SELECT aou.id, + dd.path || ARRAY[aou.id] + FROM actor.org_unit aou + JOIN actor.org_unit_type aout ON (aout.id = aou.ou_type) + JOIN descendant_depth dd ON (dd.id = aou.parent_ou) + ) SELECT dd.path + FROM actor.org_unit aou + JOIN descendant_depth dd USING (id) + WHERE aou.id = $1 ORDER BY dd.path; +$_$; + + +ALTER FUNCTION actor.org_unit_simple_path(integer, integer) OWNER TO evergreen; + +-- +-- Name: restrict_usr_message_limited(); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION restrict_usr_message_limited() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + IF TG_OP = 'UPDATE' THEN + UPDATE actor.usr_message + SET read_date = NEW.read_date, + deleted = NEW.deleted + WHERE id = NEW.id; + RETURN NEW; + END IF; + RETURN NULL; +END; +$$; + + +ALTER FUNCTION actor.restrict_usr_message_limited() OWNER TO evergreen; + +-- +-- Name: set_passwd(integer, text, text, text); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION set_passwd(pw_usr integer, pw_type text, new_pass text, new_salt text DEFAULT NULL::text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +DECLARE + pw_salt TEXT; + pw_text TEXT; +BEGIN + /* Sets the password value, creating a new actor.passwd row if needed. + * If the password type supports it, the new_pass value is crypt()'ed. + * For crypt'ed passwords, the salt comes from one of 3 places in order: + * new_salt (if present), existing salt (if present), newly created + * salt. + */ + + IF new_salt IS NOT NULL THEN + pw_salt := new_salt; + ELSE + pw_salt := actor.get_salt(pw_usr, pw_type); + + IF pw_salt IS NULL THEN + /* We have no salt for this user + type. Assume they want a + * new salt. If this type is unsalted, create_salt() will + * return NULL. */ + pw_salt := actor.create_salt(pw_type); + END IF; + END IF; + + IF pw_salt IS NULL THEN + pw_text := new_pass; -- unsalted, use as-is. + ELSE + pw_text := CRYPT(new_pass, pw_salt); + END IF; + + UPDATE actor.passwd + SET passwd = pw_text, salt = pw_salt, edit_date = NOW() + WHERE usr = pw_usr AND passwd_type = pw_type; + + IF NOT FOUND THEN + -- no password row exists for this user + type. Create one. + INSERT INTO actor.passwd (usr, passwd_type, salt, passwd) + VALUES (pw_usr, pw_type, pw_salt, pw_text); + END IF; + + RETURN TRUE; +END; +$$; + + +ALTER FUNCTION actor.set_passwd(pw_usr integer, pw_type text, new_pass text, new_salt text) OWNER TO evergreen; + +-- +-- Name: stat_cat_check(); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION stat_cat_check() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + sipfield actor.stat_cat_sip_fields%ROWTYPE; + use_count INT; +BEGIN + IF NEW.sip_field IS NOT NULL THEN + SELECT INTO sipfield * FROM actor.stat_cat_sip_fields WHERE field = NEW.sip_field; + IF sipfield.one_only THEN + SELECT INTO use_count count(id) FROM actor.stat_cat WHERE sip_field = NEW.sip_field AND id != NEW.id; + IF use_count > 0 THEN + RAISE EXCEPTION 'Sip field cannot be used twice'; + END IF; + END IF; + END IF; + RETURN NEW; +END; +$$; + + +ALTER FUNCTION actor.stat_cat_check() OWNER TO evergreen; + +SET search_path = config, pg_catalog; + +-- +-- Name: usr_activity_type; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE usr_activity_type ( + id integer NOT NULL, + ewho text, + ewhat text, + ehow text, + label text NOT NULL, + egroup usr_activity_group NOT NULL, + enabled boolean DEFAULT true NOT NULL, + transient boolean DEFAULT false NOT NULL, + CONSTRAINT one_of_wwh CHECK ((COALESCE(ewho, ewhat, ehow) IS NOT NULL)) +); + + +ALTER TABLE usr_activity_type OWNER TO evergreen; + +SET search_path = actor, pg_catalog; + +-- +-- Name: usr_activity_get_type(text, text, text); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION usr_activity_get_type(ewho text, ewhat text, ehow text) RETURNS SETOF config.usr_activity_type + LANGUAGE sql + AS $_$ +SELECT * FROM config.usr_activity_type + WHERE + enabled AND + (ewho IS NULL OR ewho = $1) AND + (ewhat IS NULL OR ewhat = $2) AND + (ehow IS NULL OR ehow = $3) + ORDER BY + -- BOOL comparisons sort false to true + COALESCE(ewho, '') != COALESCE($1, ''), + COALESCE(ewhat,'') != COALESCE($2, ''), + COALESCE(ehow, '') != COALESCE($3, '') + LIMIT 1; +$_$; + + +ALTER FUNCTION actor.usr_activity_get_type(ewho text, ewhat text, ehow text) OWNER TO evergreen; + +-- +-- Name: usr_activity_transient_trg(); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION usr_activity_transient_trg() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + DELETE FROM actor.usr_activity act USING config.usr_activity_type atype + WHERE atype.transient AND + NEW.etype = atype.id AND + act.etype = atype.id AND + act.usr = NEW.usr; + RETURN NEW; +END; +$$; + + +ALTER FUNCTION actor.usr_activity_transient_trg() OWNER TO evergreen; + +-- +-- Name: usr_delete(integer, integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION usr_delete(src_usr integer, dest_usr integer) RETURNS void + LANGUAGE plpgsql + AS $$ +DECLARE + old_profile actor.usr.profile%type; + old_home_ou actor.usr.home_ou%type; + new_profile actor.usr.profile%type; + new_home_ou actor.usr.home_ou%type; + new_name text; + new_dob actor.usr.dob%type; +BEGIN + SELECT + id || '-PURGED-' || now(), + profile, + home_ou, + dob + INTO + new_name, + old_profile, + old_home_ou, + new_dob + FROM + actor.usr + WHERE + id = src_usr; + -- + -- Quit if no such user + -- + IF old_profile IS NULL THEN + RETURN; + END IF; + -- + perform actor.usr_purge_data( src_usr, dest_usr ); + -- + -- Find the root grp_tree and the root org_unit. This would be simpler if we + -- could assume that there is only one root. Theoretically, someday, maybe, + -- there could be multiple roots, so we take extra trouble to get the right ones. + -- + SELECT + id + INTO + new_profile + FROM + permission.grp_ancestors( old_profile ) + WHERE + parent is null; + -- + SELECT + id + INTO + new_home_ou + FROM + actor.org_unit_ancestors( old_home_ou ) + WHERE + parent_ou is null; + -- + -- Truncate date of birth + -- + IF new_dob IS NOT NULL THEN + new_dob := date_trunc( 'year', new_dob ); + END IF; + -- + UPDATE + actor.usr + SET + card = NULL, + profile = new_profile, + usrname = new_name, + email = NULL, + passwd = random()::text, + standing = DEFAULT, + ident_type = + ( + SELECT MIN( id ) + FROM config.identification_type + ), + ident_value = NULL, + ident_type2 = NULL, + ident_value2 = NULL, + net_access_level = DEFAULT, + photo_url = NULL, + prefix = NULL, + first_given_name = new_name, + second_given_name = NULL, + family_name = new_name, + suffix = NULL, + alias = NULL, + day_phone = NULL, + evening_phone = NULL, + other_phone = NULL, + mailing_address = NULL, + billing_address = NULL, + home_ou = new_home_ou, + dob = new_dob, + active = FALSE, + master_account = DEFAULT, + super_user = DEFAULT, + barred = FALSE, + deleted = TRUE, + juvenile = DEFAULT, + usrgroup = 0, + claims_returned_count = DEFAULT, + credit_forward_balance = DEFAULT, + last_xact_id = DEFAULT, + alert_message = NULL, + create_date = now(), + expire_date = now() + WHERE + id = src_usr; +END; +$$; + + +ALTER FUNCTION actor.usr_delete(src_usr integer, dest_usr integer) OWNER TO evergreen; + +-- +-- Name: FUNCTION usr_delete(src_usr integer, dest_usr integer); Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON FUNCTION usr_delete(src_usr integer, dest_usr integer) IS ' +Logically deletes a user. Removes personally identifiable information, +and purges associated data in other tables. +'; + + +-- +-- Name: usr_merge(integer, integer, boolean, boolean, boolean); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION usr_merge(src_usr integer, dest_usr integer, del_addrs boolean, del_cards boolean, deactivate_cards boolean) RETURNS void + LANGUAGE plpgsql + AS $$ +DECLARE + suffix TEXT; + bucket_row RECORD; + picklist_row RECORD; + queue_row RECORD; + folder_row RECORD; +BEGIN + + -- do some initial cleanup + UPDATE actor.usr SET card = NULL WHERE id = src_usr; + UPDATE actor.usr SET mailing_address = NULL WHERE id = src_usr; + UPDATE actor.usr SET billing_address = NULL WHERE id = src_usr; + + -- actor.* + IF del_cards THEN + DELETE FROM actor.card where usr = src_usr; + ELSE + IF deactivate_cards THEN + UPDATE actor.card SET active = 'f' WHERE usr = src_usr; + END IF; + UPDATE actor.card SET usr = dest_usr WHERE usr = src_usr; + END IF; + + + IF del_addrs THEN + DELETE FROM actor.usr_address WHERE usr = src_usr; + ELSE + UPDATE actor.usr_address SET usr = dest_usr WHERE usr = src_usr; + END IF; + + UPDATE actor.usr_note SET usr = dest_usr WHERE usr = src_usr; + -- dupes are technically OK in actor.usr_standing_penalty, should manually delete them... + UPDATE actor.usr_standing_penalty SET usr = dest_usr WHERE usr = src_usr; + PERFORM actor.usr_merge_rows('actor.usr_org_unit_opt_in', 'usr', src_usr, dest_usr); + PERFORM actor.usr_merge_rows('actor.usr_setting', 'usr', src_usr, dest_usr); + + -- permission.* + PERFORM actor.usr_merge_rows('permission.usr_perm_map', 'usr', src_usr, dest_usr); + PERFORM actor.usr_merge_rows('permission.usr_object_perm_map', 'usr', src_usr, dest_usr); + PERFORM actor.usr_merge_rows('permission.usr_grp_map', 'usr', src_usr, dest_usr); + PERFORM actor.usr_merge_rows('permission.usr_work_ou_map', 'usr', src_usr, dest_usr); + + + -- container.* + + -- For each *_bucket table: transfer every bucket belonging to src_usr + -- into the custody of dest_usr. + -- + -- In order to avoid colliding with an existing bucket owned by + -- the destination user, append the source user's id (in parenthesese) + -- to the name. If you still get a collision, add successive + -- spaces to the name and keep trying until you succeed. + -- + FOR bucket_row in + SELECT id, name + FROM container.biblio_record_entry_bucket + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE container.biblio_record_entry_bucket + SET owner = dest_usr, name = name || suffix + WHERE id = bucket_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + + FOR bucket_row in + SELECT id, name + FROM container.call_number_bucket + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE container.call_number_bucket + SET owner = dest_usr, name = name || suffix + WHERE id = bucket_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + + FOR bucket_row in + SELECT id, name + FROM container.copy_bucket + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE container.copy_bucket + SET owner = dest_usr, name = name || suffix + WHERE id = bucket_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + + FOR bucket_row in + SELECT id, name + FROM container.user_bucket + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE container.user_bucket + SET owner = dest_usr, name = name || suffix + WHERE id = bucket_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + + UPDATE container.user_bucket_item SET target_user = dest_usr WHERE target_user = src_usr; + + -- vandelay.* + -- transfer queues the same way we transfer buckets (see above) + FOR queue_row in + SELECT id, name + FROM vandelay.queue + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE vandelay.queue + SET owner = dest_usr, name = name || suffix + WHERE id = queue_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + + -- money.* + PERFORM actor.usr_merge_rows('money.collections_tracker', 'usr', src_usr, dest_usr); + PERFORM actor.usr_merge_rows('money.collections_tracker', 'collector', src_usr, dest_usr); + UPDATE money.billable_xact SET usr = dest_usr WHERE usr = src_usr; + UPDATE money.billing SET voider = dest_usr WHERE voider = src_usr; + UPDATE money.bnm_payment SET accepting_usr = dest_usr WHERE accepting_usr = src_usr; + + -- action.* + UPDATE action.circulation SET usr = dest_usr WHERE usr = src_usr; + UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr; + UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr; + + UPDATE action.hold_request SET usr = dest_usr WHERE usr = src_usr; + UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr; + UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr; + UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr; + + UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr; + UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr; + UPDATE action.non_cataloged_circulation SET patron = dest_usr WHERE patron = src_usr; + UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr; + UPDATE action.survey_response SET usr = dest_usr WHERE usr = src_usr; + + -- acq.* + UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr; + UPDATE acq.fund_transfer SET transfer_user = dest_usr WHERE transfer_user = src_usr; + + -- transfer picklists the same way we transfer buckets (see above) + FOR picklist_row in + SELECT id, name + FROM acq.picklist + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE acq.picklist + SET owner = dest_usr, name = name || suffix + WHERE id = picklist_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + + UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr; + UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr; + UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr; + UPDATE acq.provider_note SET creator = dest_usr WHERE creator = src_usr; + UPDATE acq.provider_note SET editor = dest_usr WHERE editor = src_usr; + UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr; + UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr; + UPDATE acq.lineitem_usr_attr_definition SET usr = dest_usr WHERE usr = src_usr; + + -- asset.* + UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr; + UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr; + UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr; + UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr; + UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr; + UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr; + + -- serial.* + UPDATE serial.record_entry SET creator = dest_usr WHERE creator = src_usr; + UPDATE serial.record_entry SET editor = dest_usr WHERE editor = src_usr; + + -- reporter.* + -- It's not uncommon to define the reporter schema in a replica + -- DB only, so don't assume these tables exist in the write DB. + BEGIN + UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr; + EXCEPTION WHEN undefined_table THEN + -- do nothing + END; + BEGIN + UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr; + EXCEPTION WHEN undefined_table THEN + -- do nothing + END; + BEGIN + UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr; + EXCEPTION WHEN undefined_table THEN + -- do nothing + END; + BEGIN + -- transfer folders the same way we transfer buckets (see above) + FOR folder_row in + SELECT id, name + FROM reporter.template_folder + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE reporter.template_folder + SET owner = dest_usr, name = name || suffix + WHERE id = folder_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + EXCEPTION WHEN undefined_table THEN + -- do nothing + END; + BEGIN + -- transfer folders the same way we transfer buckets (see above) + FOR folder_row in + SELECT id, name + FROM reporter.report_folder + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE reporter.report_folder + SET owner = dest_usr, name = name || suffix + WHERE id = folder_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + EXCEPTION WHEN undefined_table THEN + -- do nothing + END; + BEGIN + -- transfer folders the same way we transfer buckets (see above) + FOR folder_row in + SELECT id, name + FROM reporter.output_folder + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE reporter.output_folder + SET owner = dest_usr, name = name || suffix + WHERE id = folder_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + EXCEPTION WHEN undefined_table THEN + -- do nothing + END; + + -- Finally, delete the source user + DELETE FROM actor.usr WHERE id = src_usr; + +END; +$$; + + +ALTER FUNCTION actor.usr_merge(src_usr integer, dest_usr integer, del_addrs boolean, del_cards boolean, deactivate_cards boolean) OWNER TO evergreen; + +-- +-- Name: FUNCTION usr_merge(src_usr integer, dest_usr integer, del_addrs boolean, del_cards boolean, deactivate_cards boolean); Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON FUNCTION usr_merge(src_usr integer, dest_usr integer, del_addrs boolean, del_cards boolean, deactivate_cards boolean) IS ' +Merges all user date from src_usr to dest_usr. When collisions occur, +keep dest_usr''s data and delete src_usr''s data. +'; + + +-- +-- Name: usr_merge_rows(text, text, integer, integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION usr_merge_rows(table_name text, col_name text, src_usr integer, dest_usr integer) RETURNS void + LANGUAGE plpgsql + AS $$ +DECLARE + sel TEXT; + upd TEXT; + del TEXT; + cur_row RECORD; +BEGIN + sel := 'SELECT id::BIGINT FROM ' || table_name || ' WHERE ' || quote_ident(col_name) || ' = ' || quote_literal(src_usr); + upd := 'UPDATE ' || table_name || ' SET ' || quote_ident(col_name) || ' = ' || quote_literal(dest_usr) || ' WHERE id = '; + del := 'DELETE FROM ' || table_name || ' WHERE id = '; + FOR cur_row IN EXECUTE sel LOOP + BEGIN + --RAISE NOTICE 'Attempting to merge % %', table_name, cur_row.id; + EXECUTE upd || cur_row.id; + EXCEPTION WHEN unique_violation THEN + --RAISE NOTICE 'Deleting conflicting % %', table_name, cur_row.id; + EXECUTE del || cur_row.id; + END; + END LOOP; +END; +$$; + + +ALTER FUNCTION actor.usr_merge_rows(table_name text, col_name text, src_usr integer, dest_usr integer) OWNER TO evergreen; + +-- +-- Name: FUNCTION usr_merge_rows(table_name text, col_name text, src_usr integer, dest_usr integer); Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON FUNCTION usr_merge_rows(table_name text, col_name text, src_usr integer, dest_usr integer) IS ' +Attempts to move each row of the specified table from src_user to dest_user. +Where conflicts exist, the conflicting "source" row is deleted. +'; + + +-- +-- Name: usr_purge_data(integer, integer); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION usr_purge_data(src_usr integer, specified_dest_usr integer) RETURNS void + LANGUAGE plpgsql + AS $$ +DECLARE + suffix TEXT; + renamable_row RECORD; + dest_usr INTEGER; +BEGIN + + IF specified_dest_usr IS NULL THEN + dest_usr := 1; -- Admin user on stock installs + ELSE + dest_usr := specified_dest_usr; + END IF; + + -- acq.* + UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr; + UPDATE acq.lineitem SET creator = dest_usr WHERE creator = src_usr; + UPDATE acq.lineitem SET editor = dest_usr WHERE editor = src_usr; + UPDATE acq.lineitem SET selector = dest_usr WHERE selector = src_usr; + UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr; + UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr; + DELETE FROM acq.lineitem_usr_attr_definition WHERE usr = src_usr; + + -- Update with a rename to avoid collisions + FOR renamable_row in + SELECT id, name + FROM acq.picklist + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE acq.picklist + SET owner = dest_usr, name = name || suffix + WHERE id = renamable_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + + UPDATE acq.picklist SET creator = dest_usr WHERE creator = src_usr; + UPDATE acq.picklist SET editor = dest_usr WHERE editor = src_usr; + UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr; + UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr; + UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr; + UPDATE acq.purchase_order SET creator = dest_usr WHERE creator = src_usr; + UPDATE acq.purchase_order SET editor = dest_usr WHERE editor = src_usr; + UPDATE acq.claim_event SET creator = dest_usr WHERE creator = src_usr; + + -- action.* + DELETE FROM action.circulation WHERE usr = src_usr; + UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr; + UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr; + UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr; + UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr; + UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr; + DELETE FROM action.hold_request WHERE usr = src_usr; + UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr; + UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr; + DELETE FROM action.non_cataloged_circulation WHERE patron = src_usr; + UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr; + DELETE FROM action.survey_response WHERE usr = src_usr; + UPDATE action.fieldset SET owner = dest_usr WHERE owner = src_usr; + DELETE FROM action.usr_circ_history WHERE usr = src_usr; + + -- actor.* + DELETE FROM actor.card WHERE usr = src_usr; + DELETE FROM actor.stat_cat_entry_usr_map WHERE target_usr = src_usr; + + -- The following update is intended to avoid transient violations of a foreign + -- key constraint, whereby actor.usr_address references itself. It may not be + -- necessary, but it does no harm. + UPDATE actor.usr_address SET replaces = NULL + WHERE usr = src_usr AND replaces IS NOT NULL; + DELETE FROM actor.usr_address WHERE usr = src_usr; + DELETE FROM actor.usr_note WHERE usr = src_usr; + UPDATE actor.usr_note SET creator = dest_usr WHERE creator = src_usr; + DELETE FROM actor.usr_org_unit_opt_in WHERE usr = src_usr; + UPDATE actor.usr_org_unit_opt_in SET staff = dest_usr WHERE staff = src_usr; + DELETE FROM actor.usr_setting WHERE usr = src_usr; + DELETE FROM actor.usr_standing_penalty WHERE usr = src_usr; + UPDATE actor.usr_standing_penalty SET staff = dest_usr WHERE staff = src_usr; + + -- asset.* + UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr; + UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr; + UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr; + UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr; + UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr; + UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr; + + -- auditor.* + DELETE FROM auditor.actor_usr_address_history WHERE id = src_usr; + DELETE FROM auditor.actor_usr_history WHERE id = src_usr; + UPDATE auditor.asset_call_number_history SET creator = dest_usr WHERE creator = src_usr; + UPDATE auditor.asset_call_number_history SET editor = dest_usr WHERE editor = src_usr; + UPDATE auditor.asset_copy_history SET creator = dest_usr WHERE creator = src_usr; + UPDATE auditor.asset_copy_history SET editor = dest_usr WHERE editor = src_usr; + UPDATE auditor.biblio_record_entry_history SET creator = dest_usr WHERE creator = src_usr; + UPDATE auditor.biblio_record_entry_history SET editor = dest_usr WHERE editor = src_usr; + + -- biblio.* + UPDATE biblio.record_entry SET creator = dest_usr WHERE creator = src_usr; + UPDATE biblio.record_entry SET editor = dest_usr WHERE editor = src_usr; + UPDATE biblio.record_note SET creator = dest_usr WHERE creator = src_usr; + UPDATE biblio.record_note SET editor = dest_usr WHERE editor = src_usr; + + -- container.* + -- Update buckets with a rename to avoid collisions + FOR renamable_row in + SELECT id, name + FROM container.biblio_record_entry_bucket + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE container.biblio_record_entry_bucket + SET owner = dest_usr, name = name || suffix + WHERE id = renamable_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + + FOR renamable_row in + SELECT id, name + FROM container.call_number_bucket + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE container.call_number_bucket + SET owner = dest_usr, name = name || suffix + WHERE id = renamable_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + + FOR renamable_row in + SELECT id, name + FROM container.copy_bucket + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE container.copy_bucket + SET owner = dest_usr, name = name || suffix + WHERE id = renamable_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + + FOR renamable_row in + SELECT id, name + FROM container.user_bucket + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE container.user_bucket + SET owner = dest_usr, name = name || suffix + WHERE id = renamable_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + + DELETE FROM container.user_bucket_item WHERE target_user = src_usr; + + -- money.* + DELETE FROM money.billable_xact WHERE usr = src_usr; + DELETE FROM money.collections_tracker WHERE usr = src_usr; + UPDATE money.collections_tracker SET collector = dest_usr WHERE collector = src_usr; + + -- permission.* + DELETE FROM permission.usr_grp_map WHERE usr = src_usr; + DELETE FROM permission.usr_object_perm_map WHERE usr = src_usr; + DELETE FROM permission.usr_perm_map WHERE usr = src_usr; + DELETE FROM permission.usr_work_ou_map WHERE usr = src_usr; + + -- reporter.* + -- Update with a rename to avoid collisions + BEGIN + FOR renamable_row in + SELECT id, name + FROM reporter.output_folder + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE reporter.output_folder + SET owner = dest_usr, name = name || suffix + WHERE id = renamable_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + EXCEPTION WHEN undefined_table THEN + -- do nothing + END; + + BEGIN + UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr; + EXCEPTION WHEN undefined_table THEN + -- do nothing + END; + + -- Update with a rename to avoid collisions + BEGIN + FOR renamable_row in + SELECT id, name + FROM reporter.report_folder + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE reporter.report_folder + SET owner = dest_usr, name = name || suffix + WHERE id = renamable_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + EXCEPTION WHEN undefined_table THEN + -- do nothing + END; + + BEGIN + UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr; + EXCEPTION WHEN undefined_table THEN + -- do nothing + END; + + BEGIN + UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr; + EXCEPTION WHEN undefined_table THEN + -- do nothing + END; + + -- Update with a rename to avoid collisions + BEGIN + FOR renamable_row in + SELECT id, name + FROM reporter.template_folder + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE reporter.template_folder + SET owner = dest_usr, name = name || suffix + WHERE id = renamable_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + EXCEPTION WHEN undefined_table THEN + -- do nothing + END; + + -- vandelay.* + -- Update with a rename to avoid collisions + FOR renamable_row in + SELECT id, name + FROM vandelay.queue + WHERE owner = src_usr + LOOP + suffix := ' (' || src_usr || ')'; + LOOP + BEGIN + UPDATE vandelay.queue + SET owner = dest_usr, name = name || suffix + WHERE id = renamable_row.id; + EXCEPTION WHEN unique_violation THEN + suffix := suffix || ' '; + CONTINUE; + END; + EXIT; + END LOOP; + END LOOP; + + -- NULL-ify addresses last so other cleanup (e.g. circ anonymization) + -- can access the information before deletion. + UPDATE actor.usr SET + active = FALSE, + card = NULL, + mailing_address = NULL, + billing_address = NULL + WHERE id = src_usr; + +END; +$$; + + +ALTER FUNCTION actor.usr_purge_data(src_usr integer, specified_dest_usr integer) OWNER TO evergreen; + +-- +-- Name: FUNCTION usr_purge_data(src_usr integer, specified_dest_usr integer); Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON FUNCTION usr_purge_data(src_usr integer, specified_dest_usr integer) IS ' +Finds rows dependent on a given row in actor.usr and either deletes them +or reassigns them to a different user. +'; + + +-- +-- Name: verify_passwd(integer, text, text); Type: FUNCTION; Schema: actor; Owner: evergreen +-- + +CREATE FUNCTION verify_passwd(pw_usr integer, pw_type text, test_passwd text) RETURNS boolean + LANGUAGE plpgsql STRICT + AS $$ +DECLARE + pw_salt TEXT; +BEGIN + /* Returns TRUE if the password provided matches the in-db password. + * If the password type is salted, we compare the output of CRYPT(). + * NOTE: test_passwd is MD5(salt || MD5(password)) for legacy + * 'main' passwords. + */ + + SELECT INTO pw_salt salt FROM actor.passwd + WHERE usr = pw_usr AND passwd_type = pw_type; + + IF NOT FOUND THEN + -- no such password + RETURN FALSE; + END IF; + + IF pw_salt IS NULL THEN + -- Password is unsalted, compare the un-CRYPT'ed values. + RETURN EXISTS ( + SELECT TRUE FROM actor.passwd WHERE + usr = pw_usr AND + passwd_type = pw_type AND + passwd = test_passwd + ); + END IF; + + RETURN EXISTS ( + SELECT TRUE FROM actor.passwd WHERE + usr = pw_usr AND + passwd_type = pw_type AND + passwd = CRYPT(test_passwd, pw_salt) + ); +END; +$$; + + +ALTER FUNCTION actor.verify_passwd(pw_usr integer, pw_type text, test_passwd text) OWNER TO evergreen; + +SET search_path = asset, pg_catalog; + +-- +-- Name: acp_created(); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION acp_created() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + IF NEW.active_date IS NULL AND NEW.status IN (SELECT id FROM config.copy_status WHERE copy_active = true) THEN + NEW.active_date := now(); + END IF; + IF NEW.status_changed_time IS NULL THEN + NEW.status_changed_time := now(); + END IF; + RETURN NEW; +END; +$$; + + +ALTER FUNCTION asset.acp_created() OWNER TO evergreen; + +-- +-- Name: acp_location_fixer(); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION acp_location_fixer() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + new_copy_location INT; +BEGIN + IF (TG_OP = 'UPDATE') THEN + IF NEW.location = OLD.location AND NEW.call_number = OLD.call_number AND NEW.circ_lib = OLD.circ_lib THEN + RETURN NEW; + END IF; + END IF; + SELECT INTO new_copy_location acpl.id FROM asset.copy_location acpl JOIN actor.org_unit_ancestors_distance((SELECT owning_lib FROM asset.call_number WHERE id = NEW.call_number)) aouad ON acpl.owning_lib = aouad.id WHERE deleted IS FALSE AND name = (SELECT name FROM asset.copy_location WHERE id = NEW.location) ORDER BY distance LIMIT 1; + IF new_copy_location IS NULL THEN + SELECT INTO new_copy_location acpl.id FROM asset.copy_location acpl JOIN actor.org_unit_ancestors_distance(NEW.circ_lib) aouad ON acpl.owning_lib = aouad.id WHERE deleted IS FALSE AND name = (SELECT name FROM asset.copy_location WHERE id = NEW.location) ORDER BY distance LIMIT 1; + END IF; + IF new_copy_location IS NOT NULL THEN + NEW.location = new_copy_location; + END IF; + RETURN NEW; +END; +$$; + + +ALTER FUNCTION asset.acp_location_fixer() OWNER TO evergreen; + +-- +-- Name: acp_status_changed(); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION acp_status_changed() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + IF NEW.status <> OLD.status AND NOT (NEW.status = 0 AND OLD.status = 7) THEN + NEW.status_changed_time := now(); + IF NEW.active_date IS NULL AND NEW.status IN (SELECT id FROM config.copy_status WHERE copy_active = true) THEN + NEW.active_date := now(); + END IF; + END IF; + RETURN NEW; +END; +$$; + + +ALTER FUNCTION asset.acp_status_changed() OWNER TO evergreen; + +-- +-- Name: autogenerate_placeholder_barcode(); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION autogenerate_placeholder_barcode() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + IF NEW.barcode LIKE '@@%' THEN + NEW.barcode := '@@' || NEW.id; + END IF; + RETURN NEW; +END; +$$; + + +ALTER FUNCTION asset.autogenerate_placeholder_barcode() OWNER TO evergreen; + +-- +-- Name: cache_copy_visibility(); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION cache_copy_visibility() RETURNS trigger + LANGUAGE plpgsql + AS $_$ +DECLARE + add_front TEXT; + add_back TEXT; + add_base_query TEXT; + add_peer_query TEXT; + remove_query TEXT; + do_add BOOLEAN := false; + do_remove BOOLEAN := false; +BEGIN + add_base_query := $$ + SELECT cp.id, cp.circ_lib, cn.record, cn.id AS call_number, cp.location, cp.status + FROM asset.copy cp + JOIN asset.call_number cn ON (cn.id = cp.call_number) + JOIN actor.org_unit a ON (cp.circ_lib = a.id) + JOIN asset.copy_location cl ON (cp.location = cl.id) + JOIN config.copy_status cs ON (cp.status = cs.id) + JOIN biblio.record_entry b ON (cn.record = b.id) + WHERE NOT cp.deleted + AND NOT cl.deleted + AND NOT cn.deleted + AND NOT b.deleted + AND cs.opac_visible + AND cl.opac_visible + AND cp.opac_visible + AND a.opac_visible + $$; + add_peer_query := $$ + SELECT cp.id, cp.circ_lib, pbcm.peer_record AS record, NULL AS call_number, cp.location, cp.status + FROM asset.copy cp + JOIN biblio.peer_bib_copy_map pbcm ON (pbcm.target_copy = cp.id) + JOIN actor.org_unit a ON (cp.circ_lib = a.id) + JOIN asset.copy_location cl ON (cp.location = cl.id) + JOIN config.copy_status cs ON (cp.status = cs.id) + WHERE NOT cp.deleted + AND NOT cl.deleted + AND cs.opac_visible + AND cl.opac_visible + AND cp.opac_visible + AND a.opac_visible + $$; + add_front := $$ + INSERT INTO asset.opac_visible_copies (copy_id, circ_lib, record) + SELECT DISTINCT ON (id, record) id, circ_lib, record FROM ( + $$; + add_back := $$ + ) AS x + $$; + + remove_query := $$ DELETE FROM asset.opac_visible_copies WHERE copy_id IN ( SELECT id FROM asset.copy WHERE $$; + + IF TG_TABLE_NAME = 'peer_bib_copy_map' THEN + IF TG_OP = 'INSERT' THEN + add_peer_query := add_peer_query || ' AND cp.id = ' || NEW.target_copy || ' AND pbcm.peer_record = ' || NEW.peer_record; + EXECUTE add_front || add_peer_query || add_back; + RETURN NEW; + ELSE + remove_query := 'DELETE FROM asset.opac_visible_copies WHERE copy_id = ' || OLD.target_copy || ' AND record = ' || OLD.peer_record || ';'; + EXECUTE remove_query; + RETURN OLD; + END IF; + END IF; + + IF TG_OP = 'INSERT' THEN + + IF TG_TABLE_NAME IN ('copy', 'unit') THEN + add_base_query := add_base_query || ' AND cp.id = ' || NEW.id; + EXECUTE add_front || add_base_query || add_back; + END IF; + + RETURN NEW; + + END IF; + + -- handle items first, since with circulation activity + -- their statuses change frequently + IF TG_TABLE_NAME IN ('copy', 'unit') THEN + + IF OLD.location <> NEW.location OR + OLD.call_number <> NEW.call_number OR + OLD.status <> NEW.status OR + OLD.circ_lib <> NEW.circ_lib THEN + -- any of these could change visibility, but + -- we'll save some queries and not try to calculate + -- the change directly + do_remove := true; + do_add := true; + ELSE + + IF OLD.deleted <> NEW.deleted THEN + IF NEW.deleted THEN + do_remove := true; + ELSE + do_add := true; + END IF; + END IF; + + IF OLD.opac_visible <> NEW.opac_visible THEN + IF OLD.opac_visible THEN + do_remove := true; + ELSIF NOT do_remove THEN -- handle edge case where deleted item + -- is also marked opac_visible + do_add := true; + END IF; + END IF; + + END IF; + + IF do_remove THEN + DELETE FROM asset.opac_visible_copies WHERE copy_id = NEW.id; + END IF; + IF do_add THEN + add_base_query := add_base_query || ' AND cp.id = ' || NEW.id; + add_peer_query := add_peer_query || ' AND cp.id = ' || NEW.id; + EXECUTE add_front || add_base_query || ' UNION ' || add_peer_query || add_back; + END IF; + + RETURN NEW; + + END IF; + + IF TG_TABLE_NAME IN ('call_number', 'copy_location', 'record_entry') THEN -- these have a 'deleted' column + + IF OLD.deleted AND NEW.deleted THEN -- do nothing + + RETURN NEW; + + ELSIF NEW.deleted THEN -- remove rows + + IF TG_TABLE_NAME = 'call_number' THEN + DELETE FROM asset.opac_visible_copies WHERE copy_id IN (SELECT id FROM asset.copy WHERE call_number = NEW.id); + ELSIF TG_TABLE_NAME = 'copy_location' THEN + DELETE FROM asset.opac_visible_copies WHERE copy_id IN (SELECT id FROM asset.copy WHERE location = NEW.id); + ELSIF TG_TABLE_NAME = 'record_entry' THEN + DELETE FROM asset.opac_visible_copies WHERE record = NEW.id; + END IF; + + RETURN NEW; + + ELSIF OLD.deleted THEN -- add rows + + IF TG_TABLE_NAME = 'call_number' THEN + add_base_query := add_base_query || ' AND cn.id = ' || NEW.id; + EXECUTE add_front || add_base_query || add_back; + ELSIF TG_TABLE_NAME = 'copy_location' THEN + add_base_query := add_base_query || 'AND cl.id = ' || NEW.id; + EXECUTE add_front || add_base_query || add_back; + ELSIF TG_TABLE_NAME = 'record_entry' THEN + add_base_query := add_base_query || ' AND cn.record = ' || NEW.id; + add_peer_query := add_peer_query || ' AND pbcm.peer_record = ' || NEW.id; + EXECUTE add_front || add_base_query || ' UNION ' || add_peer_query || add_back; + END IF; + + RETURN NEW; + + END IF; + + END IF; + + IF TG_TABLE_NAME = 'call_number' THEN + + IF OLD.record <> NEW.record THEN + -- call number is linked to different bib + remove_query := remove_query || 'call_number = ' || NEW.id || ');'; + EXECUTE remove_query; + add_base_query := add_base_query || ' AND cn.id = ' || NEW.id; + EXECUTE add_front || add_base_query || add_back; + END IF; + + RETURN NEW; + + END IF; + + IF TG_TABLE_NAME IN ('record_entry') THEN + RETURN NEW; -- don't have 'opac_visible' + END IF; + + -- actor.org_unit, asset.copy_location, asset.copy_status + IF NEW.opac_visible = OLD.opac_visible THEN -- do nothing + + RETURN NEW; + + ELSIF NEW.opac_visible THEN -- add rows + + IF TG_TABLE_NAME = 'org_unit' THEN + add_base_query := add_base_query || ' AND cp.circ_lib = ' || NEW.id; + add_peer_query := add_peer_query || ' AND cp.circ_lib = ' || NEW.id; + ELSIF TG_TABLE_NAME = 'copy_location' THEN + add_base_query := add_base_query || ' AND cp.location = ' || NEW.id; + add_peer_query := add_peer_query || ' AND cp.location = ' || NEW.id; + ELSIF TG_TABLE_NAME = 'copy_status' THEN + add_base_query := add_base_query || ' AND cp.status = ' || NEW.id; + add_peer_query := add_peer_query || ' AND cp.status = ' || NEW.id; + END IF; + + EXECUTE add_front || add_base_query || ' UNION ' || add_peer_query || add_back; + + ELSE -- delete rows + + IF TG_TABLE_NAME = 'org_unit' THEN + remove_query := 'DELETE FROM asset.opac_visible_copies WHERE circ_lib = ' || NEW.id || ';'; + ELSIF TG_TABLE_NAME = 'copy_location' THEN + remove_query := remove_query || 'location = ' || NEW.id || ');'; + ELSIF TG_TABLE_NAME = 'copy_status' THEN + remove_query := remove_query || 'status = ' || NEW.id || ');'; + END IF; + + EXECUTE remove_query; + + END IF; + + RETURN NEW; +END; +$_$; + + +ALTER FUNCTION asset.cache_copy_visibility() OWNER TO evergreen; + +-- +-- Name: FUNCTION cache_copy_visibility(); Type: COMMENT; Schema: asset; Owner: evergreen +-- + +COMMENT ON FUNCTION cache_copy_visibility() IS ' +Trigger function to update the copy OPAC visiblity cache. +'; + + +-- +-- Name: label_normalizer(); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION label_normalizer() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + sortkey TEXT := ''; +BEGIN + sortkey := NEW.label_sortkey; + + IF NEW.label_class IS NULL THEN + NEW.label_class := COALESCE( + ( + SELECT substring(value from E'\\d+')::integer + FROM actor.org_unit_ancestor_setting('cat.default_classification_scheme', NEW.owning_lib) + ), 1 + ); + END IF; + + EXECUTE 'SELECT ' || acnc.normalizer || '(' || + quote_literal( NEW.label ) || ')' + FROM asset.call_number_class acnc + WHERE acnc.id = NEW.label_class + INTO sortkey; + NEW.label_sortkey = sortkey; + RETURN NEW; +END; +$$; + + +ALTER FUNCTION asset.label_normalizer() OWNER TO evergreen; + +-- +-- Name: label_normalizer_dewey(text); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION label_normalizer_dewey(text) RETURNS text + LANGUAGE plperlu IMMUTABLE + AS $_$ + # Derived from the Koha C4::ClassSortRoutine::Dewey module + # Copyright (C) 2007 LibLime + # Licensed under the GPL v2 or later + + use strict; + use warnings; + + my $init = uc(shift); + $init =~ s/^\s+//; + $init =~ s/\s+$//; + $init =~ s!/!!g; + $init =~ s/^([\p{IsAlpha}]+)/$1 /; + my @tokens = split /\.|\s+/, $init; + my $digit_group_count = 0; + my $first_digit_group_idx; + for (my $i = 0; $i <= $#tokens; $i++) { + if ($tokens[$i] =~ /^\d+$/) { + $digit_group_count++; + if ($digit_group_count == 1) { + $first_digit_group_idx = $i; + } + if (2 == $digit_group_count) { + $tokens[$i] = sprintf("%-15.15s", $tokens[$i]); + $tokens[$i] =~ tr/ /0/; + } + } + } + # Pad the first digit_group if there was only one + if (1 == $digit_group_count) { + $tokens[$first_digit_group_idx] .= '_000000000000000' + } + my $key = join("_", @tokens); + $key =~ s/[^\p{IsAlnum}_]//g; + + return $key; + +$_$; + + +ALTER FUNCTION asset.label_normalizer_dewey(text) OWNER TO evergreen; + +-- +-- Name: label_normalizer_generic(text); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION label_normalizer_generic(text) RETURNS text + LANGUAGE plperlu IMMUTABLE + AS $_$ + # Created after looking at the Koha C4::ClassSortRoutine::Generic module, + # thus could probably be considered a derived work, although nothing was + # directly copied - but to err on the safe side of providing attribution: + # Copyright (C) 2007 LibLime + # Copyright (C) 2011 Equinox Software, Inc (Steve Callendar) + # Licensed under the GPL v2 or later + + use strict; + use warnings; + + # Converts the callnumber to uppercase + # Strips spaces from start and end of the call number + # Converts anything other than letters, digits, and periods into spaces + # Collapses multiple spaces into a single underscore + my $callnum = uc(shift); + $callnum =~ s/^\s//g; + $callnum =~ s/\s$//g; + # NOTE: this previously used underscores, but this caused sorting issues + # for the "before" half of page 0 on CN browse, sorting CNs containing a + # decimal before "whole number" CNs + $callnum =~ s/[^A-Z0-9_.]/ /g; + $callnum =~ s/ {2,}/ /g; + + return $callnum; +$_$; + + +ALTER FUNCTION asset.label_normalizer_generic(text) OWNER TO evergreen; + +-- +-- Name: label_normalizer_lc(text); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION label_normalizer_lc(text) RETURNS text + LANGUAGE plperlu IMMUTABLE + AS $_$ + use strict; + use warnings; + + # Library::CallNumber::LC is currently hosted at http://code.google.com/p/library-callnumber-lc/ + # The author hopes to upload it to CPAN some day, which would make our lives easier + use Library::CallNumber::LC; + + my $callnum = Library::CallNumber::LC->new(shift); + return $callnum->normalize(); + +$_$; + + +ALTER FUNCTION asset.label_normalizer_lc(text) OWNER TO evergreen; + +-- +-- Name: merge_record_assets(bigint, bigint); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION merge_record_assets(target_record bigint, source_record bigint) RETURNS integer + LANGUAGE plpgsql + AS $_$ +DECLARE + moved_objects INT := 0; + source_cn asset.call_number%ROWTYPE; + target_cn asset.call_number%ROWTYPE; + metarec metabib.metarecord%ROWTYPE; + hold action.hold_request%ROWTYPE; + ser_rec serial.record_entry%ROWTYPE; + ser_sub serial.subscription%ROWTYPE; + acq_lineitem acq.lineitem%ROWTYPE; + acq_request acq.user_request%ROWTYPE; + booking booking.resource_type%ROWTYPE; + source_part biblio.monograph_part%ROWTYPE; + target_part biblio.monograph_part%ROWTYPE; + multi_home biblio.peer_bib_copy_map%ROWTYPE; + uri_count INT := 0; + counter INT := 0; + uri_datafield TEXT; + uri_text TEXT := ''; +BEGIN + + -- move any 856 entries on records that have at least one MARC-mapped URI entry + SELECT INTO uri_count COUNT(*) + FROM asset.uri_call_number_map m + JOIN asset.call_number cn ON (m.call_number = cn.id) + WHERE cn.record = source_record; + + IF uri_count > 0 THEN + + -- This returns more nodes than you might expect: + -- 7 instead of 1 for an 856 with $u $y $9 + SELECT COUNT(*) INTO counter + FROM oils_xpath_table( + 'id', + 'marc', + 'biblio.record_entry', + '//*[@tag="856"]', + 'id=' || source_record + ) as t(i int,c text); + + FOR i IN 1 .. counter LOOP + SELECT '' || + STRING_AGG( + '' || + regexp_replace( + regexp_replace( + regexp_replace(data,'&','&','g'), + '>', '>', 'g' + ), + '<', '<', 'g' + ) || '', '' + ) || '' INTO uri_datafield + FROM oils_xpath_table( + 'id', + 'marc', + 'biblio.record_entry', + '//*[@tag="856"][position()=' || i || ']/@ind1|' || + '//*[@tag="856"][position()=' || i || ']/@ind2|' || + '//*[@tag="856"][position()=' || i || ']/*/@code|' || + '//*[@tag="856"][position()=' || i || ']/*[@code]', + 'id=' || source_record + ) as t(id int,ind1 text, ind2 text,subfield text,data text); + + -- As most of the results will be NULL, protect against NULLifying + -- the valid content that we do generate + uri_text := uri_text || COALESCE(uri_datafield, ''); + END LOOP; + + IF uri_text <> '' THEN + UPDATE biblio.record_entry + SET marc = regexp_replace(marc,'(]*record>)', uri_text || E'\\1') + WHERE id = target_record; + END IF; + + END IF; + + -- Find and move metarecords to the target record + SELECT INTO metarec * + FROM metabib.metarecord + WHERE master_record = source_record; + + IF FOUND THEN + UPDATE metabib.metarecord + SET master_record = target_record, + mods = NULL + WHERE id = metarec.id; + + moved_objects := moved_objects + 1; + END IF; + + -- Find call numbers attached to the source ... + FOR source_cn IN SELECT * FROM asset.call_number WHERE record = source_record LOOP + + SELECT INTO target_cn * + FROM asset.call_number + WHERE label = source_cn.label + AND owning_lib = source_cn.owning_lib + AND record = target_record + AND NOT deleted; + + -- ... and if there's a conflicting one on the target ... + IF FOUND THEN + + -- ... move the copies to that, and ... + UPDATE asset.copy + SET call_number = target_cn.id + WHERE call_number = source_cn.id; + + -- ... move V holds to the move-target call number + FOR hold IN SELECT * FROM action.hold_request WHERE target = source_cn.id AND hold_type = 'V' LOOP + + UPDATE action.hold_request + SET target = target_cn.id + WHERE id = hold.id; + + moved_objects := moved_objects + 1; + END LOOP; + + -- ... if not ... + ELSE + -- ... just move the call number to the target record + UPDATE asset.call_number + SET record = target_record + WHERE id = source_cn.id; + END IF; + + moved_objects := moved_objects + 1; + END LOOP; + + -- Find T holds targeting the source record ... + FOR hold IN SELECT * FROM action.hold_request WHERE target = source_record AND hold_type = 'T' LOOP + + -- ... and move them to the target record + UPDATE action.hold_request + SET target = target_record + WHERE id = hold.id; + + moved_objects := moved_objects + 1; + END LOOP; + + -- Find serial records targeting the source record ... + FOR ser_rec IN SELECT * FROM serial.record_entry WHERE record = source_record LOOP + -- ... and move them to the target record + UPDATE serial.record_entry + SET record = target_record + WHERE id = ser_rec.id; + + moved_objects := moved_objects + 1; + END LOOP; + + -- Find serial subscriptions targeting the source record ... + FOR ser_sub IN SELECT * FROM serial.subscription WHERE record_entry = source_record LOOP + -- ... and move them to the target record + UPDATE serial.subscription + SET record_entry = target_record + WHERE id = ser_sub.id; + + moved_objects := moved_objects + 1; + END LOOP; + + -- Find booking resource types targeting the source record ... + FOR booking IN SELECT * FROM booking.resource_type WHERE record = source_record LOOP + -- ... and move them to the target record + UPDATE booking.resource_type + SET record = target_record + WHERE id = booking.id; + + moved_objects := moved_objects + 1; + END LOOP; + + -- Find acq lineitems targeting the source record ... + FOR acq_lineitem IN SELECT * FROM acq.lineitem WHERE eg_bib_id = source_record LOOP + -- ... and move them to the target record + UPDATE acq.lineitem + SET eg_bib_id = target_record + WHERE id = acq_lineitem.id; + + moved_objects := moved_objects + 1; + END LOOP; + + -- Find acq user purchase requests targeting the source record ... + FOR acq_request IN SELECT * FROM acq.user_request WHERE eg_bib = source_record LOOP + -- ... and move them to the target record + UPDATE acq.user_request + SET eg_bib = target_record + WHERE id = acq_request.id; + + moved_objects := moved_objects + 1; + END LOOP; + + -- Find parts attached to the source ... + FOR source_part IN SELECT * FROM biblio.monograph_part WHERE record = source_record LOOP + + SELECT INTO target_part * + FROM biblio.monograph_part + WHERE label = source_part.label + AND record = target_record; + + -- ... and if there's a conflicting one on the target ... + IF FOUND THEN + + -- ... move the copy-part maps to that, and ... + UPDATE asset.copy_part_map + SET part = target_part.id + WHERE part = source_part.id; + + -- ... move P holds to the move-target part + FOR hold IN SELECT * FROM action.hold_request WHERE target = source_part.id AND hold_type = 'P' LOOP + + UPDATE action.hold_request + SET target = target_part.id + WHERE id = hold.id; + + moved_objects := moved_objects + 1; + END LOOP; + + -- ... if not ... + ELSE + -- ... just move the part to the target record + UPDATE biblio.monograph_part + SET record = target_record + WHERE id = source_part.id; + END IF; + + moved_objects := moved_objects + 1; + END LOOP; + + -- Find multi_home items attached to the source ... + FOR multi_home IN SELECT * FROM biblio.peer_bib_copy_map WHERE peer_record = source_record LOOP + -- ... and move them to the target record + UPDATE biblio.peer_bib_copy_map + SET peer_record = target_record + WHERE id = multi_home.id; + + moved_objects := moved_objects + 1; + END LOOP; + + -- And delete mappings where the item's home bib was merged with the peer bib + DELETE FROM biblio.peer_bib_copy_map WHERE peer_record = ( + SELECT (SELECT record FROM asset.call_number WHERE id = call_number) + FROM asset.copy WHERE id = target_copy + ); + + -- Finally, "delete" the source record + DELETE FROM biblio.record_entry WHERE id = source_record; + + -- That's all, folks! + RETURN moved_objects; +END; +$_$; + + +ALTER FUNCTION asset.merge_record_assets(target_record bigint, source_record bigint) OWNER TO evergreen; + +-- +-- Name: metarecord_copy_count(integer, bigint, boolean); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION metarecord_copy_count(place integer, rid bigint, staff boolean) RETURNS TABLE(depth integer, org_unit integer, visible bigint, available bigint, unshadow bigint, transcendant integer) + LANGUAGE plpgsql + AS $$ +BEGIN + IF staff IS TRUE THEN + IF place > 0 THEN + RETURN QUERY SELECT * FROM asset.staff_ou_metarecord_copy_count( place, rid ); + ELSE + RETURN QUERY SELECT * FROM asset.staff_lasso_metarecord_copy_count( -place, rid ); + END IF; + ELSE + IF place > 0 THEN + RETURN QUERY SELECT * FROM asset.opac_ou_metarecord_copy_count( place, rid ); + ELSE + RETURN QUERY SELECT * FROM asset.opac_lasso_metarecord_copy_count( -place, rid ); + END IF; + END IF; + + RETURN; +END; +$$; + + +ALTER FUNCTION asset.metarecord_copy_count(place integer, rid bigint, staff boolean) OWNER TO evergreen; + +-- +-- Name: metarecord_has_holdable_copy(bigint, integer); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION metarecord_has_holdable_copy(rid bigint, ou integer DEFAULT NULL::integer) RETURNS boolean + LANGUAGE plpgsql + AS $_$ +BEGIN + PERFORM 1 + FROM + asset.copy acp + JOIN asset.call_number acn ON acp.call_number = acn.id + JOIN asset.copy_location acpl ON acp.location = acpl.id + JOIN config.copy_status ccs ON acp.status = ccs.id + JOIN metabib.metarecord_source_map mmsm ON acn.record = mmsm.source + WHERE + mmsm.metarecord = rid + AND acp.holdable = true + AND acpl.holdable = true + AND ccs.holdable = true + AND acp.deleted = false + AND acpl.deleted = false + AND acp.circ_lib IN (SELECT id FROM actor.org_unit_descendants(COALESCE($2,(SELECT id FROM evergreen.org_top())))) + LIMIT 1; + IF FOUND THEN + RETURN true; + END IF; + RETURN FALSE; +END; +$_$; + + +ALTER FUNCTION asset.metarecord_has_holdable_copy(rid bigint, ou integer) OWNER TO evergreen; + +-- +-- Name: normalize_affix_sortkey(); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION normalize_affix_sortkey() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + NEW.label_sortkey := REGEXP_REPLACE( + evergreen.lpad_number_substrings( + naco_normalize(NEW.label), + '0', + 10 + ), + E'\\s+', + '', + 'g' + ); + RETURN NEW; +END; +$$; + + +ALTER FUNCTION asset.normalize_affix_sortkey() OWNER TO evergreen; + +-- +-- Name: opac_lasso_metarecord_copy_count(integer, bigint); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION opac_lasso_metarecord_copy_count(i_lasso integer, rid bigint) RETURNS TABLE(depth integer, org_unit integer, visible bigint, available bigint, unshadow bigint, transcendant integer) + LANGUAGE plpgsql + AS $$ +DECLARE + ans RECORD; + trans INT; +BEGIN + SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) JOIN metabib.metarecord_source_map m ON (m.source = b.id) WHERE src.transcendant AND m.metarecord = rid; + + FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP + RETURN QUERY + SELECT -1, + ans.id, + COUNT( av.id ), + SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ), + COUNT( av.id ), + trans + FROM + actor.org_unit_descendants(ans.id) d + JOIN asset.opac_visible_copies av ON (av.circ_lib = d.id) + JOIN asset.copy cp ON (cp.id = av.copy_id) + JOIN metabib.metarecord_source_map m ON (m.metarecord = rid AND m.source = av.record) + GROUP BY 1,2,6; + + IF NOT FOUND THEN + RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans; + END IF; + + END LOOP; + + RETURN; +END; +$$; + + +ALTER FUNCTION asset.opac_lasso_metarecord_copy_count(i_lasso integer, rid bigint) OWNER TO evergreen; + +-- +-- Name: opac_lasso_record_copy_count(integer, bigint); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION opac_lasso_record_copy_count(i_lasso integer, rid bigint) RETURNS TABLE(depth integer, org_unit integer, visible bigint, available bigint, unshadow bigint, transcendant integer) + LANGUAGE plpgsql + AS $$ +DECLARE + ans RECORD; + trans INT; +BEGIN + SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) WHERE src.transcendant AND b.id = rid; + + FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP + RETURN QUERY + SELECT -1, + ans.id, + COUNT( av.id ), + SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ), + COUNT( av.id ), + trans + FROM + actor.org_unit_descendants(ans.id) d + JOIN asset.opac_visible_copies av ON (av.record = rid AND av.circ_lib = d.id) + JOIN asset.copy cp ON (cp.id = av.copy_id) + GROUP BY 1,2,6; + + IF NOT FOUND THEN + RETURN QUERY SELECT -1, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans; + END IF; + + END LOOP; + + RETURN; +END; +$$; + + +ALTER FUNCTION asset.opac_lasso_record_copy_count(i_lasso integer, rid bigint) OWNER TO evergreen; + +-- +-- Name: opac_ou_metarecord_copy_count(integer, bigint); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION opac_ou_metarecord_copy_count(org integer, rid bigint) RETURNS TABLE(depth integer, org_unit integer, visible bigint, available bigint, unshadow bigint, transcendant integer) + LANGUAGE plpgsql + AS $$ +DECLARE + ans RECORD; + trans INT; +BEGIN + SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) JOIN metabib.metarecord_source_map m ON (m.source = b.id) WHERE src.transcendant AND m.metarecord = rid; + + FOR ans IN SELECT u.id, t.depth FROM actor.org_unit_ancestors(org) AS u JOIN actor.org_unit_type t ON (u.ou_type = t.id) LOOP + RETURN QUERY + SELECT ans.depth, + ans.id, + COUNT( av.id ), + SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ), + COUNT( av.id ), + trans + FROM + actor.org_unit_descendants(ans.id) d + JOIN asset.opac_visible_copies av ON (av.circ_lib = d.id) + JOIN asset.copy cp ON (cp.id = av.copy_id) + JOIN metabib.metarecord_source_map m ON (m.metarecord = rid AND m.source = av.record) + GROUP BY 1,2,6; + + IF NOT FOUND THEN + RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans; + END IF; + + END LOOP; + + RETURN; +END; +$$; + + +ALTER FUNCTION asset.opac_ou_metarecord_copy_count(org integer, rid bigint) OWNER TO evergreen; + +-- +-- Name: opac_ou_record_copy_count(integer, bigint); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION opac_ou_record_copy_count(org integer, rid bigint) RETURNS TABLE(depth integer, org_unit integer, visible bigint, available bigint, unshadow bigint, transcendant integer) + LANGUAGE plpgsql + AS $$ +DECLARE + ans RECORD; + trans INT; +BEGIN + SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) WHERE src.transcendant AND b.id = rid; + + FOR ans IN SELECT u.id, t.depth FROM actor.org_unit_ancestors(org) AS u JOIN actor.org_unit_type t ON (u.ou_type = t.id) LOOP + RETURN QUERY + SELECT ans.depth, + ans.id, + COUNT( av.id ), + SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ), + COUNT( av.id ), + trans + FROM + actor.org_unit_descendants(ans.id) d + JOIN asset.opac_visible_copies av ON (av.record = rid AND av.circ_lib = d.id) + JOIN asset.copy cp ON (cp.id = av.copy_id) + GROUP BY 1,2,6; + + IF NOT FOUND THEN + RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans; + END IF; + + END LOOP; + + RETURN; +END; +$$; + + +ALTER FUNCTION asset.opac_ou_record_copy_count(org integer, rid bigint) OWNER TO evergreen; + +-- +-- Name: record_copy_count(integer, bigint, boolean); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION record_copy_count(place integer, rid bigint, staff boolean) RETURNS TABLE(depth integer, org_unit integer, visible bigint, available bigint, unshadow bigint, transcendant integer) + LANGUAGE plpgsql + AS $$ +BEGIN + IF staff IS TRUE THEN + IF place > 0 THEN + RETURN QUERY SELECT * FROM asset.staff_ou_record_copy_count( place, rid ); + ELSE + RETURN QUERY SELECT * FROM asset.staff_lasso_record_copy_count( -place, rid ); + END IF; + ELSE + IF place > 0 THEN + RETURN QUERY SELECT * FROM asset.opac_ou_record_copy_count( place, rid ); + ELSE + RETURN QUERY SELECT * FROM asset.opac_lasso_record_copy_count( -place, rid ); + END IF; + END IF; + + RETURN; +END; +$$; + + +ALTER FUNCTION asset.record_copy_count(place integer, rid bigint, staff boolean) OWNER TO evergreen; + +-- +-- Name: record_has_holdable_copy(bigint, integer); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION record_has_holdable_copy(rid bigint, ou integer DEFAULT NULL::integer) RETURNS boolean + LANGUAGE plpgsql + AS $_$ +BEGIN + PERFORM 1 + FROM + asset.copy acp + JOIN asset.call_number acn ON acp.call_number = acn.id + JOIN asset.copy_location acpl ON acp.location = acpl.id + JOIN config.copy_status ccs ON acp.status = ccs.id + WHERE + acn.record = rid + AND acp.holdable = true + AND acpl.holdable = true + AND ccs.holdable = true + AND acp.deleted = false + AND acpl.deleted = false + AND acp.circ_lib IN (SELECT id FROM actor.org_unit_descendants(COALESCE($2,(SELECT id FROM evergreen.org_top())))) + LIMIT 1; + IF FOUND THEN + RETURN true; + END IF; + RETURN FALSE; +END; +$_$; + + +ALTER FUNCTION asset.record_has_holdable_copy(rid bigint, ou integer) OWNER TO evergreen; + +-- +-- Name: refresh_opac_visible_copies_mat_view(); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION refresh_opac_visible_copies_mat_view() RETURNS void + LANGUAGE sql + AS $$ + + TRUNCATE TABLE asset.opac_visible_copies; + + INSERT INTO asset.opac_visible_copies (copy_id, circ_lib, record) + SELECT cp.id, cp.circ_lib, cn.record + FROM asset.copy cp + JOIN asset.call_number cn ON (cn.id = cp.call_number) + JOIN actor.org_unit a ON (cp.circ_lib = a.id) + JOIN asset.copy_location cl ON (cp.location = cl.id) + JOIN config.copy_status cs ON (cp.status = cs.id) + JOIN biblio.record_entry b ON (cn.record = b.id) + WHERE NOT cp.deleted + AND NOT cl.deleted + AND NOT cn.deleted + AND NOT b.deleted + AND cs.opac_visible + AND cl.opac_visible + AND cp.opac_visible + AND a.opac_visible + UNION + SELECT cp.id, cp.circ_lib, pbcm.peer_record AS record + FROM asset.copy cp + JOIN biblio.peer_bib_copy_map pbcm ON (pbcm.target_copy = cp.id) + JOIN actor.org_unit a ON (cp.circ_lib = a.id) + JOIN asset.copy_location cl ON (cp.location = cl.id) + JOIN config.copy_status cs ON (cp.status = cs.id) + WHERE NOT cp.deleted + AND NOT cl.deleted + AND cs.opac_visible + AND cl.opac_visible + AND cp.opac_visible + AND a.opac_visible; + +$$; + + +ALTER FUNCTION asset.refresh_opac_visible_copies_mat_view() OWNER TO evergreen; + +-- +-- Name: FUNCTION refresh_opac_visible_copies_mat_view(); Type: COMMENT; Schema: asset; Owner: evergreen +-- + +COMMENT ON FUNCTION refresh_opac_visible_copies_mat_view() IS ' +Rebuild the copy OPAC visibility cache. Useful during migrations. +'; + + +-- +-- Name: staff_lasso_metarecord_copy_count(integer, bigint); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION staff_lasso_metarecord_copy_count(i_lasso integer, rid bigint) RETURNS TABLE(depth integer, org_unit integer, visible bigint, available bigint, unshadow bigint, transcendant integer) + LANGUAGE plpgsql + AS $$ +DECLARE + ans RECORD; + trans INT; +BEGIN + SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) JOIN metabib.metarecord_source_map m ON (m.source = b.id) WHERE src.transcendant AND m.metarecord = rid; + + FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP + RETURN QUERY + SELECT -1, + ans.id, + COUNT( cp.id ), + SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ), + COUNT( cp.id ), + trans + FROM + actor.org_unit_descendants(ans.id) d + JOIN asset.copy cp ON (cp.circ_lib = d.id AND NOT cp.deleted) + JOIN asset.call_number cn ON (cn.id = cp.call_number AND NOT cn.deleted) + JOIN metabib.metarecord_source_map m ON (m.metarecord = rid AND m.source = cn.record) + GROUP BY 1,2,6; + + IF NOT FOUND THEN + RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans; + END IF; + + END LOOP; + + RETURN; +END; +$$; + + +ALTER FUNCTION asset.staff_lasso_metarecord_copy_count(i_lasso integer, rid bigint) OWNER TO evergreen; + +-- +-- Name: staff_lasso_record_copy_count(integer, bigint); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION staff_lasso_record_copy_count(i_lasso integer, rid bigint) RETURNS TABLE(depth integer, org_unit integer, visible bigint, available bigint, unshadow bigint, transcendant integer) + LANGUAGE plpgsql + AS $$ +DECLARE + ans RECORD; + trans INT; +BEGIN + SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) WHERE src.transcendant AND b.id = rid; + + FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP + RETURN QUERY + SELECT -1, + ans.id, + COUNT( cp.id ), + SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ), + SUM( CASE WHEN cl.opac_visible AND cp.opac_visible THEN 1 ELSE 0 END), + trans + FROM + actor.org_unit_descendants(ans.id) d + JOIN asset.copy cp ON (cp.circ_lib = d.id AND NOT cp.deleted) + JOIN asset.copy_location cl ON (cp.location = cl.id AND NOT cl.deleted) + JOIN asset.call_number cn ON (cn.record = rid AND cn.id = cp.call_number AND NOT cn.deleted) + GROUP BY 1,2,6; + + IF NOT FOUND THEN + RETURN QUERY SELECT -1, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans; + END IF; + + END LOOP; + + RETURN; +END; +$$; + + +ALTER FUNCTION asset.staff_lasso_record_copy_count(i_lasso integer, rid bigint) OWNER TO evergreen; + +-- +-- Name: staff_ou_metarecord_copy_count(integer, bigint); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION staff_ou_metarecord_copy_count(org integer, rid bigint) RETURNS TABLE(depth integer, org_unit integer, visible bigint, available bigint, unshadow bigint, transcendant integer) + LANGUAGE plpgsql + AS $$ +DECLARE + ans RECORD; + trans INT; +BEGIN + SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) JOIN metabib.metarecord_source_map m ON (m.source = b.id) WHERE src.transcendant AND m.metarecord = rid; + + FOR ans IN SELECT u.id, t.depth FROM actor.org_unit_ancestors(org) AS u JOIN actor.org_unit_type t ON (u.ou_type = t.id) LOOP + RETURN QUERY + SELECT ans.depth, + ans.id, + COUNT( cp.id ), + SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ), + COUNT( cp.id ), + trans + FROM + actor.org_unit_descendants(ans.id) d + JOIN asset.copy cp ON (cp.circ_lib = d.id AND NOT cp.deleted) + JOIN asset.call_number cn ON (cn.id = cp.call_number AND NOT cn.deleted) + JOIN metabib.metarecord_source_map m ON (m.metarecord = rid AND m.source = cn.record) + GROUP BY 1,2,6; + + IF NOT FOUND THEN + RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans; + END IF; + + END LOOP; + + RETURN; +END; +$$; + + +ALTER FUNCTION asset.staff_ou_metarecord_copy_count(org integer, rid bigint) OWNER TO evergreen; + +-- +-- Name: staff_ou_record_copy_count(integer, bigint); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION staff_ou_record_copy_count(org integer, rid bigint) RETURNS TABLE(depth integer, org_unit integer, visible bigint, available bigint, unshadow bigint, transcendant integer) + LANGUAGE plpgsql + AS $$ +DECLARE + ans RECORD; + trans INT; +BEGIN + SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) WHERE src.transcendant AND b.id = rid; + + FOR ans IN SELECT u.id, t.depth FROM actor.org_unit_ancestors(org) AS u JOIN actor.org_unit_type t ON (u.ou_type = t.id) LOOP + RETURN QUERY + SELECT ans.depth, + ans.id, + COUNT( cp.id ), + SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ), + SUM( CASE WHEN cl.opac_visible AND cp.opac_visible THEN 1 ELSE 0 END), + trans + FROM + actor.org_unit_descendants(ans.id) d + JOIN asset.copy cp ON (cp.circ_lib = d.id AND NOT cp.deleted) + JOIN asset.copy_location cl ON (cp.location = cl.id AND NOT cl.deleted) + JOIN asset.call_number cn ON (cn.record = rid AND cn.id = cp.call_number AND NOT cn.deleted) + GROUP BY 1,2,6; + + IF NOT FOUND THEN + RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans; + END IF; + + END LOOP; + + RETURN; +END; +$$; + + +ALTER FUNCTION asset.staff_ou_record_copy_count(org integer, rid bigint) OWNER TO evergreen; + +-- +-- Name: stat_cat_check(); Type: FUNCTION; Schema: asset; Owner: evergreen +-- + +CREATE FUNCTION stat_cat_check() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + sipfield asset.stat_cat_sip_fields%ROWTYPE; + use_count INT; +BEGIN + IF NEW.sip_field IS NOT NULL THEN + SELECT INTO sipfield * FROM asset.stat_cat_sip_fields WHERE field = NEW.sip_field; + IF sipfield.one_only THEN + SELECT INTO use_count count(id) FROM asset.stat_cat WHERE sip_field = NEW.sip_field AND id != NEW.id; + IF use_count > 0 THEN + RAISE EXCEPTION 'Sip field cannot be used twice'; + END IF; + END IF; + END IF; + RETURN NEW; +END; +$$; + + +ALTER FUNCTION asset.stat_cat_check() OWNER TO evergreen; + +SET search_path = auditor, pg_catalog; + +-- +-- Name: audit_acq_invoice_entry_func(); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION audit_acq_invoice_entry_func() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + INSERT INTO auditor.acq_invoice_entry_history ( audit_id, audit_time, audit_action, audit_user, audit_ws, id, invoice, purchase_order, lineitem, inv_item_count, phys_item_count, note, billed_per_item, cost_billed, actual_cost, amount_paid ) + SELECT nextval('auditor.acq_invoice_entry_pkey_seq'), + now(), + SUBSTR(TG_OP,1,1), + eg_user, + eg_ws, + OLD.id, OLD.invoice, OLD.purchase_order, OLD.lineitem, OLD.inv_item_count, OLD.phys_item_count, OLD.note, OLD.billed_per_item, OLD.cost_billed, OLD.actual_cost, OLD.amount_paid + FROM auditor.get_audit_info(); + RETURN NULL; + END; + $$; + + +ALTER FUNCTION auditor.audit_acq_invoice_entry_func() OWNER TO evergreen; + +-- +-- Name: audit_acq_invoice_func(); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION audit_acq_invoice_func() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + INSERT INTO auditor.acq_invoice_history ( audit_id, audit_time, audit_action, audit_user, audit_ws, id, receiver, provider, shipper, recv_date, recv_method, inv_type, inv_ident, payment_auth, payment_method, note, complete ) + SELECT nextval('auditor.acq_invoice_pkey_seq'), + now(), + SUBSTR(TG_OP,1,1), + eg_user, + eg_ws, + OLD.id, OLD.receiver, OLD.provider, OLD.shipper, OLD.recv_date, OLD.recv_method, OLD.inv_type, OLD.inv_ident, OLD.payment_auth, OLD.payment_method, OLD.note, OLD.complete + FROM auditor.get_audit_info(); + RETURN NULL; + END; + $$; + + +ALTER FUNCTION auditor.audit_acq_invoice_func() OWNER TO evergreen; + +-- +-- Name: audit_acq_invoice_item_func(); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION audit_acq_invoice_item_func() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + INSERT INTO auditor.acq_invoice_item_history ( audit_id, audit_time, audit_action, audit_user, audit_ws, id, invoice, purchase_order, fund_debit, inv_item_type, title, author, note, cost_billed, actual_cost, fund, amount_paid, po_item, target ) + SELECT nextval('auditor.acq_invoice_item_pkey_seq'), + now(), + SUBSTR(TG_OP,1,1), + eg_user, + eg_ws, + OLD.id, OLD.invoice, OLD.purchase_order, OLD.fund_debit, OLD.inv_item_type, OLD.title, OLD.author, OLD.note, OLD.cost_billed, OLD.actual_cost, OLD.fund, OLD.amount_paid, OLD.po_item, OLD.target + FROM auditor.get_audit_info(); + RETURN NULL; + END; + $$; + + +ALTER FUNCTION auditor.audit_acq_invoice_item_func() OWNER TO evergreen; + +-- +-- Name: audit_actor_org_unit_func(); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION audit_actor_org_unit_func() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + INSERT INTO auditor.actor_org_unit_history ( audit_id, audit_time, audit_action, audit_user, audit_ws, id, parent_ou, ou_type, ill_address, holds_address, mailing_address, billing_address, shortname, name, email, phone, opac_visible, fiscal_calendar ) + SELECT nextval('auditor.actor_org_unit_pkey_seq'), + now(), + SUBSTR(TG_OP,1,1), + eg_user, + eg_ws, + OLD.id, OLD.parent_ou, OLD.ou_type, OLD.ill_address, OLD.holds_address, OLD.mailing_address, OLD.billing_address, OLD.shortname, OLD.name, OLD.email, OLD.phone, OLD.opac_visible, OLD.fiscal_calendar + FROM auditor.get_audit_info(); + RETURN NULL; + END; + $$; + + +ALTER FUNCTION auditor.audit_actor_org_unit_func() OWNER TO evergreen; + +-- +-- Name: audit_actor_usr_address_func(); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION audit_actor_usr_address_func() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + INSERT INTO auditor.actor_usr_address_history ( audit_id, audit_time, audit_action, audit_user, audit_ws, id, valid, within_city_limits, address_type, usr, street1, street2, city, county, state, country, post_code, pending, replaces ) + SELECT nextval('auditor.actor_usr_address_pkey_seq'), + now(), + SUBSTR(TG_OP,1,1), + eg_user, + eg_ws, + OLD.id, OLD.valid, OLD.within_city_limits, OLD.address_type, OLD.usr, OLD.street1, OLD.street2, OLD.city, OLD.county, OLD.state, OLD.country, OLD.post_code, OLD.pending, OLD.replaces + FROM auditor.get_audit_info(); + RETURN NULL; + END; + $$; + + +ALTER FUNCTION auditor.audit_actor_usr_address_func() OWNER TO evergreen; + +-- +-- Name: audit_actor_usr_func(); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION audit_actor_usr_func() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + INSERT INTO auditor.actor_usr_history ( audit_id, audit_time, audit_action, audit_user, audit_ws, id, card, profile, usrname, email, passwd, standing, ident_type, ident_value, ident_type2, ident_value2, net_access_level, photo_url, prefix, first_given_name, second_given_name, family_name, suffix, alias, day_phone, evening_phone, other_phone, mailing_address, billing_address, home_ou, dob, active, master_account, super_user, barred, deleted, juvenile, usrgroup, claims_returned_count, credit_forward_balance, last_xact_id, alert_message, create_date, expire_date, claims_never_checked_out_count, last_update_time ) + SELECT nextval('auditor.actor_usr_pkey_seq'), + now(), + SUBSTR(TG_OP,1,1), + eg_user, + eg_ws, + OLD.id, OLD.card, OLD.profile, OLD.usrname, OLD.email, OLD.passwd, OLD.standing, OLD.ident_type, OLD.ident_value, OLD.ident_type2, OLD.ident_value2, OLD.net_access_level, OLD.photo_url, OLD.prefix, OLD.first_given_name, OLD.second_given_name, OLD.family_name, OLD.suffix, OLD.alias, OLD.day_phone, OLD.evening_phone, OLD.other_phone, OLD.mailing_address, OLD.billing_address, OLD.home_ou, OLD.dob, OLD.active, OLD.master_account, OLD.super_user, OLD.barred, OLD.deleted, OLD.juvenile, OLD.usrgroup, OLD.claims_returned_count, OLD.credit_forward_balance, OLD.last_xact_id, OLD.alert_message, OLD.create_date, OLD.expire_date, OLD.claims_never_checked_out_count, OLD.last_update_time + FROM auditor.get_audit_info(); + RETURN NULL; + END; + $$; + + +ALTER FUNCTION auditor.audit_actor_usr_func() OWNER TO evergreen; + +-- +-- Name: audit_asset_call_number_func(); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION audit_asset_call_number_func() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + INSERT INTO auditor.asset_call_number_history ( audit_id, audit_time, audit_action, audit_user, audit_ws, id, creator, create_date, editor, edit_date, record, owning_lib, label, deleted, prefix, suffix, label_class, label_sortkey ) + SELECT nextval('auditor.asset_call_number_pkey_seq'), + now(), + SUBSTR(TG_OP,1,1), + eg_user, + eg_ws, + OLD.id, OLD.creator, OLD.create_date, OLD.editor, OLD.edit_date, OLD.record, OLD.owning_lib, OLD.label, OLD.deleted, OLD.prefix, OLD.suffix, OLD.label_class, OLD.label_sortkey + FROM auditor.get_audit_info(); + RETURN NULL; + END; + $$; + + +ALTER FUNCTION auditor.audit_asset_call_number_func() OWNER TO evergreen; + +-- +-- Name: audit_asset_copy_func(); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION audit_asset_copy_func() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + INSERT INTO auditor.asset_copy_history ( audit_id, audit_time, audit_action, audit_user, audit_ws, id, circ_lib, creator, call_number, editor, create_date, edit_date, copy_number, status, location, loan_duration, fine_level, age_protect, circulate, deposit, ref, holdable, deposit_amount, price, barcode, circ_modifier, circ_as_type, dummy_title, dummy_author, alert_message, opac_visible, deleted, floating, dummy_isbn, status_changed_time, active_date, mint_condition, cost ) + SELECT nextval('auditor.asset_copy_pkey_seq'), + now(), + SUBSTR(TG_OP,1,1), + eg_user, + eg_ws, + OLD.id, OLD.circ_lib, OLD.creator, OLD.call_number, OLD.editor, OLD.create_date, OLD.edit_date, OLD.copy_number, OLD.status, OLD.location, OLD.loan_duration, OLD.fine_level, OLD.age_protect, OLD.circulate, OLD.deposit, OLD.ref, OLD.holdable, OLD.deposit_amount, OLD.price, OLD.barcode, OLD.circ_modifier, OLD.circ_as_type, OLD.dummy_title, OLD.dummy_author, OLD.alert_message, OLD.opac_visible, OLD.deleted, OLD.floating, OLD.dummy_isbn, OLD.status_changed_time, OLD.active_date, OLD.mint_condition, OLD.cost + FROM auditor.get_audit_info(); + RETURN NULL; + END; + $$; + + +ALTER FUNCTION auditor.audit_asset_copy_func() OWNER TO evergreen; + +-- +-- Name: audit_biblio_record_entry_func(); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION audit_biblio_record_entry_func() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + INSERT INTO auditor.biblio_record_entry_history ( audit_id, audit_time, audit_action, audit_user, audit_ws, id, creator, editor, source, quality, create_date, edit_date, active, deleted, fingerprint, tcn_source, tcn_value, marc, last_xact_id, owner, share_depth ) + SELECT nextval('auditor.biblio_record_entry_pkey_seq'), + now(), + SUBSTR(TG_OP,1,1), + eg_user, + eg_ws, + OLD.id, OLD.creator, OLD.editor, OLD.source, OLD.quality, OLD.create_date, OLD.edit_date, OLD.active, OLD.deleted, OLD.fingerprint, OLD.tcn_source, OLD.tcn_value, OLD.marc, OLD.last_xact_id, OLD.owner, OLD.share_depth + FROM auditor.get_audit_info(); + RETURN NULL; + END; + $$; + + +ALTER FUNCTION auditor.audit_biblio_record_entry_func() OWNER TO evergreen; + +-- +-- Name: audit_serial_unit_func(); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION audit_serial_unit_func() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + INSERT INTO auditor.serial_unit_history ( audit_id, audit_time, audit_action, audit_user, audit_ws, id, circ_lib, creator, call_number, editor, create_date, edit_date, copy_number, status, location, loan_duration, fine_level, age_protect, circulate, deposit, ref, holdable, deposit_amount, price, barcode, circ_modifier, circ_as_type, dummy_title, dummy_author, alert_message, opac_visible, deleted, floating, dummy_isbn, status_changed_time, active_date, mint_condition, cost, sort_key, detailed_contents, summary_contents ) + SELECT nextval('auditor.serial_unit_pkey_seq'), + now(), + SUBSTR(TG_OP,1,1), + eg_user, + eg_ws, + OLD.id, OLD.circ_lib, OLD.creator, OLD.call_number, OLD.editor, OLD.create_date, OLD.edit_date, OLD.copy_number, OLD.status, OLD.location, OLD.loan_duration, OLD.fine_level, OLD.age_protect, OLD.circulate, OLD.deposit, OLD.ref, OLD.holdable, OLD.deposit_amount, OLD.price, OLD.barcode, OLD.circ_modifier, OLD.circ_as_type, OLD.dummy_title, OLD.dummy_author, OLD.alert_message, OLD.opac_visible, OLD.deleted, OLD.floating, OLD.dummy_isbn, OLD.status_changed_time, OLD.active_date, OLD.mint_condition, OLD.cost, OLD.sort_key, OLD.detailed_contents, OLD.summary_contents + FROM auditor.get_audit_info(); + RETURN NULL; + END; + $$; + + +ALTER FUNCTION auditor.audit_serial_unit_func() OWNER TO evergreen; + +-- +-- Name: clear_audit_info(); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION clear_audit_info() RETURNS void + LANGUAGE plperlu + AS $_X$ + delete($_SHARED{"eg_audit_user"}); + delete($_SHARED{"eg_audit_ws"}); +$_X$; + + +ALTER FUNCTION auditor.clear_audit_info() OWNER TO evergreen; + +-- +-- Name: create_auditor(text, text); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION create_auditor(sch text, tbl text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +BEGIN + PERFORM auditor.create_auditor_seq(sch, tbl); + PERFORM auditor.create_auditor_history(sch, tbl); + PERFORM auditor.create_auditor_func(sch, tbl); + PERFORM auditor.create_auditor_update_trigger(sch, tbl); + PERFORM auditor.create_auditor_lifecycle(sch, tbl); + RETURN TRUE; +END; +$$; + + +ALTER FUNCTION auditor.create_auditor(sch text, tbl text) OWNER TO evergreen; + +-- +-- Name: create_auditor_func(text, text); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION create_auditor_func(sch text, tbl text) RETURNS boolean + LANGUAGE plpgsql + AS $_X$ +DECLARE + column_list TEXT[]; +BEGIN + SELECT INTO column_list array_agg(a.attname) + FROM pg_catalog.pg_attribute a + JOIN pg_catalog.pg_class c ON a.attrelid = c.oid + JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace + WHERE relkind = 'r' AND n.nspname = sch AND c.relname = tbl AND a.attnum > 0 AND NOT a.attisdropped; + + EXECUTE $$ + CREATE OR REPLACE FUNCTION auditor.audit_$$ || sch || $$_$$ || tbl || $$_func () + RETURNS TRIGGER AS $func$ + BEGIN + INSERT INTO auditor.$$ || sch || $$_$$ || tbl || $$_history ( audit_id, audit_time, audit_action, audit_user, audit_ws, $$ + || array_to_string(column_list, ', ') || $$ ) + SELECT nextval('auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq'), + now(), + SUBSTR(TG_OP,1,1), + eg_user, + eg_ws, + OLD.$$ || array_to_string(column_list, ', OLD.') || $$ + FROM auditor.get_audit_info(); + RETURN NULL; + END; + $func$ LANGUAGE 'plpgsql'; + $$; + RETURN TRUE; +END; +$_X$; + + +ALTER FUNCTION auditor.create_auditor_func(sch text, tbl text) OWNER TO evergreen; + +-- +-- Name: create_auditor_history(text, text); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION create_auditor_history(sch text, tbl text) RETURNS boolean + LANGUAGE plpgsql + AS $_X$ +BEGIN + EXECUTE $$ + CREATE TABLE auditor.$$ || sch || $$_$$ || tbl || $$_history ( + audit_id BIGINT PRIMARY KEY, + audit_time TIMESTAMP WITH TIME ZONE NOT NULL, + audit_action TEXT NOT NULL, + audit_user INT, + audit_ws INT, + LIKE $$ || sch || $$.$$ || tbl || $$ + ); + $$; + RETURN TRUE; +END; +$_X$; + + +ALTER FUNCTION auditor.create_auditor_history(sch text, tbl text) OWNER TO evergreen; + +-- +-- Name: create_auditor_lifecycle(text, text); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION create_auditor_lifecycle(sch text, tbl text) RETURNS boolean + LANGUAGE plpgsql + AS $_X$ +DECLARE + column_list TEXT[]; +BEGIN + SELECT INTO column_list array_agg(a.attname) + FROM pg_catalog.pg_attribute a + JOIN pg_catalog.pg_class c ON a.attrelid = c.oid + JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace + WHERE relkind = 'r' AND n.nspname = sch AND c.relname = tbl AND a.attnum > 0 AND NOT a.attisdropped; + + EXECUTE $$ + CREATE VIEW auditor.$$ || sch || $$_$$ || tbl || $$_lifecycle AS + SELECT -1 AS audit_id, + now() AS audit_time, + '-' AS audit_action, + -1 AS audit_user, + -1 AS audit_ws, + $$ || array_to_string(column_list, ', ') || $$ + FROM $$ || sch || $$.$$ || tbl || $$ + UNION ALL + SELECT audit_id, audit_time, audit_action, audit_user, audit_ws, + $$ || array_to_string(column_list, ', ') || $$ + FROM auditor.$$ || sch || $$_$$ || tbl || $$_history; + $$; + RETURN TRUE; +END; +$_X$; + + +ALTER FUNCTION auditor.create_auditor_lifecycle(sch text, tbl text) OWNER TO evergreen; + +-- +-- Name: create_auditor_seq(text, text); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION create_auditor_seq(sch text, tbl text) RETURNS boolean + LANGUAGE plpgsql + AS $_X$ +BEGIN + EXECUTE $$ + CREATE SEQUENCE auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq; + $$; + RETURN TRUE; +END; +$_X$; + + +ALTER FUNCTION auditor.create_auditor_seq(sch text, tbl text) OWNER TO evergreen; + +-- +-- Name: create_auditor_update_trigger(text, text); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION create_auditor_update_trigger(sch text, tbl text) RETURNS boolean + LANGUAGE plpgsql + AS $_X$ +BEGIN + EXECUTE $$ + CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger + AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW + EXECUTE PROCEDURE auditor.audit_$$ || sch || $$_$$ || tbl || $$_func (); + $$; + RETURN TRUE; +END; +$_X$; + + +ALTER FUNCTION auditor.create_auditor_update_trigger(sch text, tbl text) OWNER TO evergreen; + +-- +-- Name: fix_columns(); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION fix_columns() RETURNS void + LANGUAGE plpgsql + AS $_X$ +DECLARE + current_table TEXT = ''; -- Storage for post-loop main table name + current_audit_table TEXT = ''; -- Storage for post-loop audit table name + query TEXT = ''; -- Storage for built query + cr RECORD; -- column record object + alter_t BOOL = false; -- Has the alter table command been appended yet + auditor_cores TEXT[] = ARRAY[]::TEXT[]; -- Core auditor function list (filled inside of loop) + core_column TEXT; -- The current core column we are adding +BEGIN + FOR cr IN + WITH audit_tables AS ( -- Basic grab of auditor tables. Anything in the auditor namespace, basically. With oids. + SELECT c.oid AS audit_oid, c.relname AS audit_table + FROM pg_catalog.pg_class c + JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace + WHERE relkind='r' AND nspname = 'auditor' + ), + table_set AS ( -- Union of auditor tables with their "main" tables. With oids. + SELECT a.audit_oid, a.audit_table, c.oid AS main_oid, n.nspname as main_namespace, c.relname as main_table + FROM pg_catalog.pg_class c + JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace + JOIN audit_tables a ON a.audit_table = n.nspname || '_' || c.relname || '_history' + WHERE relkind = 'r' + ), + column_lists AS ( -- All columns associated with the auditor or main table, grouped by the main table's oid. + SELECT DISTINCT ON (main_oid, attname) t.main_oid, a.attname + FROM table_set t + JOIN pg_catalog.pg_attribute a ON a.attrelid IN (t.main_oid, t.audit_oid) + WHERE attnum > 0 AND NOT attisdropped + ), + column_defs AS ( -- The motherload, every audit table and main table plus column names and defs. + SELECT audit_table, + main_namespace, + main_table, + a.attname AS main_column, -- These two will be null for columns that have since been deleted, or for auditor core columns + pg_catalog.format_type(a.atttypid, a.atttypmod) AS main_column_def, + b.attname AS audit_column, -- These two will be null for columns that have since been added + pg_catalog.format_type(b.atttypid, b.atttypmod) AS audit_column_def + FROM table_set t + JOIN column_lists c USING (main_oid) + LEFT JOIN pg_catalog.pg_attribute a ON a.attname = c.attname AND a.attrelid = t.main_oid AND a.attnum > 0 AND NOT a.attisdropped + LEFT JOIN pg_catalog.pg_attribute b ON b.attname = c.attname AND b.attrelid = t.audit_oid AND b.attnum > 0 AND NOT b.attisdropped + ) + -- Nice sorted output from the above + SELECT * FROM column_defs WHERE main_column_def IS DISTINCT FROM audit_column_def ORDER BY main_namespace, main_table, main_column, audit_column + LOOP + IF current_table <> (cr.main_namespace || '.' || cr.main_table) THEN -- New table? + FOR core_column IN SELECT DISTINCT unnest(auditor_cores) LOOP -- Update missing core auditor columns + IF NOT alter_t THEN -- Add ALTER TABLE if we haven't already + query:=query || $$ALTER TABLE auditor.$$ || current_audit_table; + alter_t:=TRUE; + ELSE + query:=query || $$,$$; + END IF; + -- Bit of a sneaky bit here. Create audit_id as a bigserial so it gets automatic values and doesn't complain about nulls when becoming a PRIMARY KEY. + query:=query || $$ ADD COLUMN $$ || CASE WHEN core_column = 'audit_id bigint' THEN $$audit_id bigserial PRIMARY KEY$$ ELSE core_column END; + END LOOP; + IF alter_t THEN -- Open alter table = needs a semicolon + query:=query || $$; $$; + alter_t:=FALSE; + IF 'audit_id bigint' = ANY(auditor_cores) THEN -- We added a primary key... + -- Fun! Drop the default on audit_id, drop the auto-created sequence, create a new one, and set the current value + -- For added fun, we have to execute in chunks due to the parser checking setval/currval arguments at parse time. + EXECUTE query; + EXECUTE $$ALTER TABLE auditor.$$ || current_audit_table || $$ ALTER COLUMN audit_id DROP DEFAULT; $$ || + $$CREATE SEQUENCE auditor.$$ || current_audit_table || $$_pkey_seq;$$; + EXECUTE $$SELECT setval('auditor.$$ || current_audit_table || $$_pkey_seq', currval('auditor.$$ || current_audit_table || $$_audit_id_seq')); $$ || + $$DROP SEQUENCE auditor.$$ || current_audit_table || $$_audit_id_seq;$$; + query:=''; + END IF; + END IF; + -- New table means we reset the list of needed auditor core columns + auditor_cores = ARRAY['audit_id bigint', 'audit_time timestamp with time zone', 'audit_action text', 'audit_user integer', 'audit_ws integer']; + -- And store some values for use later, because we can't rely on cr in all places. + current_table:=cr.main_namespace || '.' || cr.main_table; + current_audit_table:=cr.audit_table; + END IF; + IF cr.main_column IS NULL AND cr.audit_column LIKE 'audit_%' THEN -- Core auditor column? + -- Remove core from list of cores + SELECT INTO auditor_cores array_agg(core) FROM unnest(auditor_cores) AS core WHERE core != (cr.audit_column || ' ' || cr.audit_column_def); + ELSIF cr.main_column IS NULL THEN -- Main column doesn't exist, and it isn't an auditor column. Needs dropping from the auditor. + IF NOT alter_t THEN + query:=query || $$ALTER TABLE auditor.$$ || current_audit_table; + alter_t:=TRUE; + ELSE + query:=query || $$,$$; + END IF; + query:=query || $$ DROP COLUMN $$ || cr.audit_column; + ELSIF cr.audit_column IS NULL AND cr.main_column IS NOT NULL THEN -- New column auditor doesn't have. Add it. + IF NOT alter_t THEN + query:=query || $$ALTER TABLE auditor.$$ || current_audit_table; + alter_t:=TRUE; + ELSE + query:=query || $$,$$; + END IF; + query:=query || $$ ADD COLUMN $$ || cr.main_column || $$ $$ || cr.main_column_def; + ELSIF cr.main_column IS NOT NULL AND cr.audit_column IS NOT NULL THEN -- Both sides have this column, but types differ. Fix that. + IF NOT alter_t THEN + query:=query || $$ALTER TABLE auditor.$$ || current_audit_table; + alter_t:=TRUE; + ELSE + query:=query || $$,$$; + END IF; + query:=query || $$ ALTER COLUMN $$ || cr.audit_column || $$ TYPE $$ || cr.main_column_def; + END IF; + END LOOP; + FOR core_column IN SELECT DISTINCT unnest(auditor_cores) LOOP -- Repeat this outside of the loop to catch the last table + IF NOT alter_t THEN + query:=query || $$ALTER TABLE auditor.$$ || current_audit_table; + alter_t:=TRUE; + ELSE + query:=query || $$,$$; + END IF; + -- Bit of a sneaky bit here. Create audit_id as a bigserial so it gets automatic values and doesn't complain about nulls when becoming a PRIMARY KEY. + query:=query || $$ ADD COLUMN $$ || CASE WHEN core_column = 'audit_id bigint' THEN $$audit_id bigserial PRIMARY KEY$$ ELSE core_column END; + END LOOP; + IF alter_t THEN -- Open alter table = needs a semicolon + query:=query || $$;$$; + IF 'audit_id bigint' = ANY(auditor_cores) THEN -- We added a primary key... + -- Fun! Drop the default on audit_id, drop the auto-created sequence, create a new one, and set the current value + -- For added fun, we have to execute in chunks due to the parser checking setval/currval arguments at parse time. + EXECUTE query; + EXECUTE $$ALTER TABLE auditor.$$ || current_audit_table || $$ ALTER COLUMN audit_id DROP DEFAULT; $$ || + $$CREATE SEQUENCE auditor.$$ || current_audit_table || $$_pkey_seq;$$; + EXECUTE $$SELECT setval('auditor.$$ || current_audit_table || $$_pkey_seq', currval('auditor.$$ || current_audit_table || $$_audit_id_seq')); $$ || + $$DROP SEQUENCE auditor.$$ || current_audit_table || $$_audit_id_seq;$$; + query:=''; + END IF; + END IF; + EXECUTE query; +END; +$_X$; + + +ALTER FUNCTION auditor.fix_columns() OWNER TO evergreen; + +-- +-- Name: get_audit_info(); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION get_audit_info() RETURNS TABLE(eg_user integer, eg_ws integer) + LANGUAGE plperlu + AS $_X$ + return [{eg_user => $_SHARED{"eg_audit_user"}, eg_ws => $_SHARED{"eg_audit_ws"}}]; +$_X$; + + +ALTER FUNCTION auditor.get_audit_info() OWNER TO evergreen; + +-- +-- Name: set_audit_info(integer, integer); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION set_audit_info(integer, integer) RETURNS void + LANGUAGE plperlu + AS $_X$ + $_SHARED{"eg_audit_user"} = $_[0]; + $_SHARED{"eg_audit_ws"} = $_[1]; +$_X$; + + +ALTER FUNCTION auditor.set_audit_info(integer, integer) OWNER TO evergreen; + +-- +-- Name: update_auditors(); Type: FUNCTION; Schema: auditor; Owner: evergreen +-- + +CREATE FUNCTION update_auditors() RETURNS boolean + LANGUAGE plpgsql + AS $_$ +DECLARE + auditor_name TEXT; + table_schema TEXT; + table_name TEXT; +BEGIN + -- Drop Lifecycle view(s) before potential column changes + FOR auditor_name IN + SELECT c.relname + FROM pg_catalog.pg_class c + JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace + WHERE relkind = 'v' AND n.nspname = 'auditor' LOOP + EXECUTE $$ DROP VIEW auditor.$$ || auditor_name || $$;$$; + END LOOP; + -- Fix all column discrepencies + PERFORM auditor.fix_columns(); + -- Re-create trigger functions and lifecycle views + FOR table_schema, table_name IN + WITH audit_tables AS ( + SELECT c.oid AS audit_oid, c.relname AS audit_table + FROM pg_catalog.pg_class c + JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace + WHERE relkind='r' AND nspname = 'auditor' + ), + table_set AS ( + SELECT a.audit_oid, a.audit_table, c.oid AS main_oid, n.nspname as main_namespace, c.relname as main_table + FROM pg_catalog.pg_class c + JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace + JOIN audit_tables a ON a.audit_table = n.nspname || '_' || c.relname || '_history' + WHERE relkind = 'r' + ) + SELECT main_namespace, main_table FROM table_set LOOP + + PERFORM auditor.create_auditor_func(table_schema, table_name); + PERFORM auditor.create_auditor_lifecycle(table_schema, table_name); + END LOOP; + RETURN TRUE; +END; +$_$; + + +ALTER FUNCTION auditor.update_auditors() OWNER TO evergreen; + +SET search_path = authority, pg_catalog; + +-- +-- Name: atag_authority_tags(text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION atag_authority_tags(atag text) RETURNS integer[] + LANGUAGE sql + AS $_$ + SELECT ARRAY_AGG(id) FROM authority.control_set_authority_field WHERE tag = $1 +$_$; + + +ALTER FUNCTION authority.atag_authority_tags(atag text) OWNER TO evergreen; + +-- +-- Name: atag_authority_tags_refs(text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION atag_authority_tags_refs(atag text) RETURNS integer[] + LANGUAGE sql + AS $_$ + SELECT ARRAY_AGG(y) from ( + SELECT unnest(ARRAY_CAT( + ARRAY[a.id], + (SELECT ARRAY_AGG(x.id) FROM authority.control_set_authority_field x WHERE x.main_entry = a.id) + )) y + FROM authority.control_set_authority_field a + WHERE a.tag = $1) x +$_$; + + +ALTER FUNCTION authority.atag_authority_tags_refs(atag text) OWNER TO evergreen; + +-- +-- Name: atag_browse_center(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION atag_browse_center(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 9, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_browse_center(authority.atag_authority_tags($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.atag_browse_center(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: atag_browse_center_refs(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION atag_browse_center_refs(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 9, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_browse_center(authority.atag_authority_tags_refs($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.atag_browse_center_refs(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: atag_browse_top(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION atag_browse_top(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_browse_top(authority.atag_authority_tags($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.atag_browse_top(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: atag_browse_top_refs(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION atag_browse_top_refs(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_browse_top(authority.atag_authority_tags_refs($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.atag_browse_top_refs(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: atag_search_heading(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION atag_search_heading(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_search_heading(authority.atag_authority_tags($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.atag_search_heading(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: atag_search_heading_refs(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION atag_search_heading_refs(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_search_heading(authority.atag_authority_tags_refs($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.atag_search_heading_refs(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: atag_search_rank(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION atag_search_rank(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_search_rank(authority.atag_authority_tags($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.atag_search_rank(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: atag_search_rank_refs(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION atag_search_rank_refs(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_search_rank(authority.atag_authority_tags_refs($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.atag_search_rank_refs(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: axis_authority_tags(text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION axis_authority_tags(a text) RETURNS integer[] + LANGUAGE sql + AS $_$ + SELECT ARRAY_AGG(field) FROM authority.browse_axis_authority_field_map WHERE axis = $1; +$_$; + + +ALTER FUNCTION authority.axis_authority_tags(a text) OWNER TO evergreen; + +-- +-- Name: axis_authority_tags_refs(text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION axis_authority_tags_refs(a text) RETURNS integer[] + LANGUAGE sql + AS $_$ + SELECT ARRAY_AGG(y) from ( + SELECT unnest(ARRAY_CAT( + ARRAY[a.field], + (SELECT ARRAY_AGG(x.id) FROM authority.control_set_authority_field x WHERE x.main_entry = a.field) + )) y + FROM authority.browse_axis_authority_field_map a + WHERE axis = $1) x +$_$; + + +ALTER FUNCTION authority.axis_authority_tags_refs(a text) OWNER TO evergreen; + +-- +-- Name: axis_browse_center(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION axis_browse_center(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 9, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_browse_center(authority.axis_authority_tags($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.axis_browse_center(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: axis_browse_center_refs(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION axis_browse_center_refs(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 9, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_browse_center(authority.axis_authority_tags_refs($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.axis_browse_center_refs(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: axis_browse_top(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION axis_browse_top(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_browse_top(authority.axis_authority_tags($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.axis_browse_top(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: axis_browse_top_refs(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION axis_browse_top_refs(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_browse_top(authority.axis_authority_tags_refs($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.axis_browse_top_refs(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: axis_search_heading(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION axis_search_heading(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_search_heading(authority.axis_authority_tags($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.axis_search_heading(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: axis_search_heading_refs(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION axis_search_heading_refs(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_search_heading(authority.axis_authority_tags_refs($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.axis_search_heading_refs(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: axis_search_rank(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION axis_search_rank(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_search_rank(authority.axis_authority_tags($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.axis_search_rank(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: axis_search_rank_refs(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION axis_search_rank_refs(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_search_rank(authority.axis_authority_tags_refs($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.axis_search_rank_refs(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: btag_authority_tags(text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION btag_authority_tags(btag text) RETURNS integer[] + LANGUAGE sql + AS $_$ + SELECT ARRAY_AGG(authority_field) FROM authority.control_set_bib_field WHERE tag = $1 +$_$; + + +ALTER FUNCTION authority.btag_authority_tags(btag text) OWNER TO evergreen; + +-- +-- Name: btag_authority_tags_refs(text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION btag_authority_tags_refs(btag text) RETURNS integer[] + LANGUAGE sql + AS $_$ + SELECT ARRAY_AGG(y) from ( + SELECT unnest(ARRAY_CAT( + ARRAY[a.authority_field], + (SELECT ARRAY_AGG(x.id) FROM authority.control_set_authority_field x WHERE x.main_entry = a.authority_field) + )) y + FROM authority.control_set_bib_field a + WHERE a.tag = $1) x +$_$; + + +ALTER FUNCTION authority.btag_authority_tags_refs(btag text) OWNER TO evergreen; + +-- +-- Name: btag_browse_center(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION btag_browse_center(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 9, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_browse_center(authority.btag_authority_tags($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.btag_browse_center(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: btag_browse_center_refs(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION btag_browse_center_refs(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 9, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_browse_center(authority.btag_authority_tags_refs($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.btag_browse_center_refs(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: btag_browse_top(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION btag_browse_top(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_browse_top(authority.btag_authority_tags($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.btag_browse_top(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: btag_browse_top_refs(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION btag_browse_top_refs(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_browse_top(authority.btag_authority_tags_refs($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.btag_browse_top_refs(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: btag_search_heading(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION btag_search_heading(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_search_heading(authority.btag_authority_tags($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.btag_search_heading(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: btag_search_heading_refs(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION btag_search_heading_refs(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_search_heading(authority.btag_authority_tags_refs($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.btag_search_heading_refs(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: btag_search_rank(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION btag_search_rank(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_search_rank(authority.btag_authority_tags($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.btag_search_rank(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: btag_search_rank_refs(text, text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION btag_search_rank_refs(a text, q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT * FROM authority.simple_heading_search_rank(authority.btag_authority_tags_refs($1), $2, $3, $4, $5) +$_$; + + +ALTER FUNCTION authority.btag_search_rank_refs(a text, q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: authority_linking; Type: TABLE; Schema: authority; Owner: evergreen +-- + +CREATE TABLE authority_linking ( + id bigint NOT NULL, + source bigint NOT NULL, + target bigint NOT NULL, + field integer NOT NULL +); + + +ALTER TABLE authority_linking OWNER TO evergreen; + +-- +-- Name: calculate_authority_linking(bigint, integer, xml); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION calculate_authority_linking(rec_id bigint, rec_control_set integer, rec_marc_xml xml) RETURNS SETOF authority_linking + LANGUAGE plpgsql + AS $_$ +DECLARE + acsaf authority.control_set_authority_field%ROWTYPE; + link TEXT; + aal authority.authority_linking%ROWTYPE; +BEGIN + IF rec_control_set IS NULL THEN + -- No control_set on record? Guess at one + SELECT control_set INTO rec_control_set + FROM authority.control_set_authority_field + WHERE tag IN ( + SELECT UNNEST( + XPATH('//*[starts-with(@tag,"1")]/@tag',rec_marc_xml)::TEXT[] + ) + ) LIMIT 1; + + IF NOT FOUND THEN + RAISE WARNING 'Could not even guess at control set for authority record %', rec_id; + RETURN; + END IF; + END IF; + + aal.source := rec_id; + + FOR acsaf IN + SELECT * FROM authority.control_set_authority_field + WHERE control_set = rec_control_set + AND linking_subfield IS NOT NULL + AND main_entry IS NOT NULL + LOOP + -- Loop over the trailing-number contents of all linking subfields + FOR link IN + SELECT SUBSTRING( x::TEXT, '\d+$' ) + FROM UNNEST( + XPATH( + '//*[@tag="' + || acsaf.tag + || '"]/*[@code="' + || acsaf.linking_subfield + || '"]/text()', + rec_marc_xml + ) + ) x + LOOP + + -- Ignore links that are null, malformed, circular, or point to + -- non-existent authority records. + IF link IS NOT NULL AND link::BIGINT <> rec_id THEN + PERFORM * FROM authority.record_entry WHERE id = link::BIGINT; + IF FOUND THEN + aal.target := link::BIGINT; + aal.field := acsaf.id; + RETURN NEXT aal; + END IF; + END IF; + END LOOP; + END LOOP; +END; +$_$; + + +ALTER FUNCTION authority.calculate_authority_linking(rec_id bigint, rec_control_set integer, rec_marc_xml xml) OWNER TO evergreen; + +-- +-- Name: extract_thesaurus(text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION extract_thesaurus(marcxml text) RETURNS text + LANGUAGE plpgsql STABLE STRICT + AS $$ +DECLARE + thes_code TEXT; +BEGIN + thes_code := vandelay.marc21_extract_fixed_field(marcxml,'Subj'); + IF thes_code IS NULL THEN + thes_code := '|'; + ELSIF thes_code = 'z' THEN + thes_code := COALESCE( oils_xpath_string('//*[@tag="040"]/*[@code="f"][1]', marcxml), '' ); + END IF; + RETURN thes_code; +END; +$$; + + +ALTER FUNCTION authority.extract_thesaurus(marcxml text) OWNER TO evergreen; + +-- +-- Name: full_rec; Type: TABLE; Schema: authority; Owner: evergreen +-- + +CREATE TABLE full_rec ( + id bigint NOT NULL, + record bigint NOT NULL, + tag character(3) NOT NULL, + ind1 text, + ind2 text, + subfield text, + value text NOT NULL, + index_vector tsvector NOT NULL +); + + +ALTER TABLE full_rec OWNER TO evergreen; + +-- +-- Name: flatten_marc(bigint); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION flatten_marc(rid bigint) RETURNS SETOF full_rec + LANGUAGE plpgsql + AS $$ +DECLARE + auth authority.record_entry%ROWTYPE; + output authority.full_rec%ROWTYPE; + field RECORD; +BEGIN + SELECT INTO auth * FROM authority.record_entry WHERE id = rid; + + FOR field IN SELECT * FROM vandelay.flatten_marc( auth.marc ) LOOP + output.record := rid; + output.ind1 := field.ind1; + output.ind2 := field.ind2; + output.tag := field.tag; + output.subfield := field.subfield; + output.value := field.value; + + RETURN NEXT output; + END LOOP; +END; +$$; + + +ALTER FUNCTION authority.flatten_marc(rid bigint) OWNER TO evergreen; + +-- +-- Name: generate_overlay_template(bigint); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION generate_overlay_template(bigint) RETURNS text + LANGUAGE sql + AS $_$ + SELECT authority.generate_overlay_template( marc ) FROM authority.record_entry WHERE id = $1; +$_$; + + +ALTER FUNCTION authority.generate_overlay_template(bigint) OWNER TO evergreen; + +-- +-- Name: generate_overlay_template(text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION generate_overlay_template(source_xml text) RETURNS text + LANGUAGE plpgsql STABLE + AS $_$ +DECLARE + cset INT; + main_entry authority.control_set_authority_field%ROWTYPE; + bib_field authority.control_set_bib_field%ROWTYPE; + auth_id INT DEFAULT oils_xpath_string('//*[@tag="901"]/*[local-name()="subfield" and @code="c"]', source_xml)::INT; + tmp_data XML; + replace_data XML[] DEFAULT '{}'::XML[]; + replace_rules TEXT[] DEFAULT '{}'::TEXT[]; + auth_field XML[]; + auth_i1 TEXT; + auth_i2 TEXT; +BEGIN + IF auth_id IS NULL THEN + RETURN NULL; + END IF; + + -- Default to the LoC controll set + SELECT control_set INTO cset FROM authority.record_entry WHERE id = auth_id; + + -- if none, make a best guess + IF cset IS NULL THEN + SELECT control_set INTO cset + FROM authority.control_set_authority_field + WHERE tag IN ( + SELECT UNNEST(XPATH('//*[starts-with(@tag,"1")]/@tag',marc::XML)::TEXT[]) + FROM authority.record_entry + WHERE id = auth_id + ) + LIMIT 1; + END IF; + + -- if STILL none, no-op change + IF cset IS NULL THEN + RETURN XMLELEMENT( + name record, + XMLATTRIBUTES('http://www.loc.gov/MARC21/slim' AS xmlns), + XMLELEMENT( name leader, '00881nam a2200193 4500'), + XMLELEMENT( + name datafield, + XMLATTRIBUTES( '905' AS tag, ' ' AS ind1, ' ' AS ind2), + XMLELEMENT( + name subfield, + XMLATTRIBUTES('d' AS code), + '901c' + ) + ) + )::TEXT; + END IF; + + FOR main_entry IN SELECT * FROM authority.control_set_authority_field acsaf WHERE acsaf.control_set = cset AND acsaf.main_entry IS NULL LOOP + auth_field := XPATH('//*[@tag="'||main_entry.tag||'"][1]',source_xml::XML); + auth_i1 = (XPATH('@ind1',auth_field[1]))[1]; + auth_i2 = (XPATH('@ind2',auth_field[1]))[1]; + IF ARRAY_LENGTH(auth_field,1) > 0 THEN + FOR bib_field IN SELECT * FROM authority.control_set_bib_field WHERE authority_field = main_entry.id LOOP + SELECT XMLELEMENT( -- XMLAGG avoids magical creation, but requires unnest subquery + name datafield, + XMLATTRIBUTES(bib_field.tag AS tag, auth_i1 AS ind1, auth_i2 AS ind2), + XMLAGG(UNNEST) + ) INTO tmp_data FROM UNNEST(XPATH('//*[local-name()="subfield"]', auth_field[1])); + replace_data := replace_data || tmp_data; + replace_rules := replace_rules || ( bib_field.tag || main_entry.sf_list || E'[0~\\)' || auth_id || '$]' ); + tmp_data = NULL; + END LOOP; + EXIT; + END IF; + END LOOP; + + SELECT XMLAGG(UNNEST) INTO tmp_data FROM UNNEST(replace_data); + + RETURN XMLELEMENT( + name record, + XMLATTRIBUTES('http://www.loc.gov/MARC21/slim' AS xmlns), + XMLELEMENT( name leader, '00881nam a2200193 4500'), + tmp_data, + XMLELEMENT( + name datafield, + XMLATTRIBUTES( '905' AS tag, ' ' AS ind1, ' ' AS ind2), + XMLELEMENT( + name subfield, + XMLATTRIBUTES('r' AS code), + ARRAY_TO_STRING(replace_rules,',') + ) + ) + )::TEXT; +END; +$_$; + + +ALTER FUNCTION authority.generate_overlay_template(source_xml text) OWNER TO evergreen; + +-- +-- Name: indexing_ingest_or_delete(); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION indexing_ingest_or_delete() RETURNS trigger + LANGUAGE plpgsql + AS $_$ +DECLARE + ashs authority.simple_heading%ROWTYPE; + mbe_row metabib.browse_entry%ROWTYPE; + mbe_id BIGINT; + ash_id BIGINT; +BEGIN + + IF NEW.deleted IS TRUE THEN -- If this authority is deleted + DELETE FROM authority.bib_linking WHERE authority = NEW.id; -- Avoid updating fields in bibs that are no longer visible + DELETE FROM authority.full_rec WHERE record = NEW.id; -- Avoid validating fields against deleted authority records + DELETE FROM authority.simple_heading WHERE record = NEW.id; + -- Should remove matching $0 from controlled fields at the same time? + + -- XXX What do we about the actual linking subfields present in + -- authority records that target this one when this happens? + DELETE FROM authority.authority_linking + WHERE source = NEW.id OR target = NEW.id; + + RETURN NEW; -- and we're done + END IF; + + IF TG_OP = 'UPDATE' THEN -- re-ingest? + PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled; + + IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change + RETURN NEW; + END IF; + + -- Unless there's a setting stopping us, propagate these updates to any linked bib records + PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_auto_update' AND enabled; + + IF NOT FOUND THEN + PERFORM authority.propagate_changes(NEW.id); + END IF; + + DELETE FROM authority.simple_heading WHERE record = NEW.id; + DELETE FROM authority.authority_linking WHERE source = NEW.id; + END IF; + + INSERT INTO authority.authority_linking (source, target, field) + SELECT source, target, field FROM authority.calculate_authority_linking( + NEW.id, NEW.control_set, NEW.marc::XML + ); + + FOR ashs IN SELECT * FROM authority.simple_heading_set(NEW.marc) LOOP + + INSERT INTO authority.simple_heading (record,atag,value,sort_value,thesaurus) + VALUES (ashs.record, ashs.atag, ashs.value, ashs.sort_value, ashs.thesaurus); + ash_id := CURRVAL('authority.simple_heading_id_seq'::REGCLASS); + + SELECT INTO mbe_row * FROM metabib.browse_entry + WHERE value = ashs.value AND sort_value = ashs.sort_value; + + IF FOUND THEN + mbe_id := mbe_row.id; + ELSE + INSERT INTO metabib.browse_entry + ( value, sort_value ) VALUES + ( ashs.value, ashs.sort_value ); + + mbe_id := CURRVAL('metabib.browse_entry_id_seq'::REGCLASS); + END IF; + + INSERT INTO metabib.browse_entry_simple_heading_map (entry,simple_heading) VALUES (mbe_id,ash_id); + + END LOOP; + + -- Flatten and insert the afr data + PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_full_rec' AND enabled; + IF NOT FOUND THEN + PERFORM authority.reingest_authority_full_rec(NEW.id); + PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_rec_descriptor' AND enabled; + IF NOT FOUND THEN + PERFORM authority.reingest_authority_rec_descriptor(NEW.id); + END IF; + END IF; + + RETURN NEW; +END; +$_$; + + +ALTER FUNCTION authority.indexing_ingest_or_delete() OWNER TO evergreen; + +-- +-- Name: map_thesaurus_to_control_set(); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION map_thesaurus_to_control_set() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + IF NEW.control_set IS NULL THEN + SELECT control_set INTO NEW.control_set + FROM authority.thesaurus + WHERE vandelay.marc21_extract_fixed_field(NEW.marc,'Subj') = code; + END IF; + + RETURN NEW; +END; +$$; + + +ALTER FUNCTION authority.map_thesaurus_to_control_set() OWNER TO evergreen; + +-- +-- Name: merge_records(bigint, bigint); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION merge_records(target_record bigint, source_record bigint) RETURNS integer + LANGUAGE plpgsql + AS $_$ +DECLARE + moved_objects INT := 0; + bib_id INT := 0; + bib_rec biblio.record_entry%ROWTYPE; + auth_link authority.bib_linking%ROWTYPE; + ingest_same boolean; +BEGIN + + -- Defining our terms: + -- "target record" = the record that will survive the merge + -- "source record" = the record that is sacrifing its existence and being + -- replaced by the target record + + -- 1. Update all bib records with the ID from target_record in their $0 + FOR bib_rec IN + SELECT bre.* + FROM biblio.record_entry bre + JOIN authority.bib_linking abl ON abl.bib = bre.id + WHERE abl.authority = source_record + LOOP + + UPDATE biblio.record_entry + SET marc = REGEXP_REPLACE( + marc, + E'([^<]*?\\))' || source_record || '<', + E'\\1' || target_record || '<', + 'g' + ) + WHERE id = bib_rec.id; + + moved_objects := moved_objects + 1; + END LOOP; + + -- 2. Grab the current value of reingest on same MARC flag + SELECT enabled INTO ingest_same + FROM config.internal_flag + WHERE name = 'ingest.reingest.force_on_same_marc' + ; + + -- 3. Temporarily set reingest on same to TRUE + UPDATE config.internal_flag + SET enabled = TRUE + WHERE name = 'ingest.reingest.force_on_same_marc' + ; + + -- 4. Make a harmless update to target_record to trigger auto-update + -- in linked bibliographic records + UPDATE authority.record_entry + SET deleted = FALSE + WHERE id = target_record; + + -- 5. "Delete" source_record + DELETE FROM authority.record_entry WHERE id = source_record; + + -- 6. Set "reingest on same MARC" flag back to initial value + UPDATE config.internal_flag + SET enabled = ingest_same + WHERE name = 'ingest.reingest.force_on_same_marc' + ; + + RETURN moved_objects; +END; +$_$; + + +ALTER FUNCTION authority.merge_records(target_record bigint, source_record bigint) OWNER TO evergreen; + +-- +-- Name: normalize_heading(text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION normalize_heading(marcxml text) RETURNS text + LANGUAGE sql STABLE STRICT + AS $_$ + SELECT authority.normalize_heading($1, FALSE); +$_$; + + +ALTER FUNCTION authority.normalize_heading(marcxml text) OWNER TO evergreen; + +-- +-- Name: FUNCTION normalize_heading(marcxml text); Type: COMMENT; Schema: authority; Owner: evergreen +-- + +COMMENT ON FUNCTION normalize_heading(marcxml text) IS ' +Extract the authority heading, thesaurus, and NACO-normalized values +from an authority record. The primary purpose is to build a unique +index to defend against duplicated authority records from the same +thesaurus. +'; + + +-- +-- Name: normalize_heading(text, boolean); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION normalize_heading(marcxml text, no_thesaurus boolean) RETURNS text + LANGUAGE plpgsql STABLE STRICT + AS $_$ +DECLARE + acsaf authority.control_set_authority_field%ROWTYPE; + tag_used TEXT; + nfi_used TEXT; + sf TEXT; + sf_node TEXT; + tag_node TEXT; + thes_code TEXT; + cset INT; + heading_text TEXT; + tmp_text TEXT; + first_sf BOOL; + auth_id INT DEFAULT COALESCE(NULLIF(oils_xpath_string('//*[@tag="901"]/*[local-name()="subfield" and @code="c"]', marcxml), ''), '0')::INT; +BEGIN + SELECT control_set INTO cset FROM authority.record_entry WHERE id = auth_id; + + IF cset IS NULL THEN + SELECT control_set INTO cset + FROM authority.control_set_authority_field + WHERE tag IN ( SELECT UNNEST(XPATH('//*[starts-with(@tag,"1")]/@tag',marcxml::XML)::TEXT[])) + LIMIT 1; + END IF; + + heading_text := ''; + FOR acsaf IN SELECT * FROM authority.control_set_authority_field WHERE control_set = cset AND main_entry IS NULL LOOP + tag_used := acsaf.tag; + nfi_used := acsaf.nfi; + first_sf := TRUE; + + FOR tag_node IN SELECT unnest(oils_xpath('//*[@tag="'||tag_used||'"]',marcxml)) LOOP + FOR sf_node IN SELECT unnest(oils_xpath('./*[contains("'||acsaf.sf_list||'",@code)]',tag_node)) LOOP + + tmp_text := oils_xpath_string('.', sf_node); + sf := oils_xpath_string('./@code', sf_node); + + IF first_sf AND tmp_text IS NOT NULL AND nfi_used IS NOT NULL THEN + + tmp_text := SUBSTRING( + tmp_text FROM + COALESCE( + NULLIF( + REGEXP_REPLACE( + oils_xpath_string('./@ind'||nfi_used, tag_node), + $$\D+$$, + '', + 'g' + ), + '' + )::INT, + 0 + ) + 1 + ); + + END IF; + + first_sf := FALSE; + + IF tmp_text IS NOT NULL AND tmp_text <> '' THEN + heading_text := heading_text || E'\u2021' || sf || ' ' || tmp_text; + END IF; + END LOOP; + + EXIT WHEN heading_text <> ''; + END LOOP; + + EXIT WHEN heading_text <> ''; + END LOOP; + + IF heading_text <> '' THEN + IF no_thesaurus IS TRUE THEN + heading_text := tag_used || ' ' || public.naco_normalize(heading_text); + ELSE + thes_code := authority.extract_thesaurus(marcxml); + heading_text := tag_used || '_' || COALESCE(nfi_used,'-') || '_' || thes_code || ' ' || public.naco_normalize(heading_text); + END IF; + ELSE + heading_text := 'NOHEADING_' || thes_code || ' ' || MD5(marcxml); + END IF; + + RETURN heading_text; +END; +$_$; + + +ALTER FUNCTION authority.normalize_heading(marcxml text, no_thesaurus boolean) OWNER TO evergreen; + +-- +-- Name: normalize_heading_for_upsert(); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION normalize_heading_for_upsert() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + NEW.heading := authority.normalize_heading( NEW.marc ); + NEW.simple_heading := authority.simple_normalize_heading( NEW.marc ); + RETURN NEW; +END; +$$; + + +ALTER FUNCTION authority.normalize_heading_for_upsert() OWNER TO evergreen; + +-- +-- Name: propagate_changes(bigint); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION propagate_changes(aid bigint) RETURNS SETOF bigint + LANGUAGE sql + AS $_$ + SELECT authority.propagate_changes( authority, bib ) FROM authority.bib_linking WHERE authority = $1; +$_$; + + +ALTER FUNCTION authority.propagate_changes(aid bigint) OWNER TO evergreen; + +-- +-- Name: propagate_changes(bigint, bigint); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION propagate_changes(aid bigint, bid bigint) RETURNS bigint + LANGUAGE sql + AS $_$ + UPDATE biblio.record_entry + SET marc = vandelay.merge_record_xml( marc, authority.generate_overlay_template( $1 ) ) + WHERE id = $2; + SELECT $1; +$_$; + + +ALTER FUNCTION authority.propagate_changes(aid bigint, bid bigint) OWNER TO evergreen; + +-- +-- Name: reingest_authority_full_rec(bigint); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION reingest_authority_full_rec(auth_id bigint) RETURNS void + LANGUAGE plpgsql + AS $$ +BEGIN + DELETE FROM authority.full_rec WHERE record = auth_id; + INSERT INTO authority.full_rec (record, tag, ind1, ind2, subfield, value) + SELECT record, tag, ind1, ind2, subfield, value FROM authority.flatten_marc( auth_id ); + + RETURN; +END; +$$; + + +ALTER FUNCTION authority.reingest_authority_full_rec(auth_id bigint) OWNER TO evergreen; + +-- +-- Name: reingest_authority_rec_descriptor(bigint); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION reingest_authority_rec_descriptor(auth_id bigint) RETURNS void + LANGUAGE plpgsql + AS $$ +BEGIN + DELETE FROM authority.rec_descriptor WHERE record = auth_id; + INSERT INTO authority.rec_descriptor (record, record_status, encoding_level, thesaurus) + SELECT auth_id, + vandelay.marc21_extract_fixed_field(marc,'RecStat'), + vandelay.marc21_extract_fixed_field(marc,'ELvl'), + vandelay.marc21_extract_fixed_field(marc,'Subj') + FROM authority.record_entry + WHERE id = auth_id; + RETURN; +END; +$$; + + +ALTER FUNCTION authority.reingest_authority_rec_descriptor(auth_id bigint) OWNER TO evergreen; + +-- +-- Name: simple_heading_browse_center(integer[], text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION simple_heading_browse_center(atag_list integer[], q text, page integer DEFAULT 0, pagesize integer DEFAULT 9, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE plpgsql ROWS 10 + AS $$ +DECLARE + pivot_sort_value TEXT; + boffset INT DEFAULT 0; + aoffset INT DEFAULT 0; + blimit INT DEFAULT 0; + alimit INT DEFAULT 0; +BEGIN + + pivot_sort_value := authority.simple_heading_find_pivot(atag_list,q,thesauruses); + + IF page = 0 THEN + blimit := pagesize / 2; + alimit := blimit; + + IF pagesize % 2 <> 0 THEN + alimit := alimit + 1; + END IF; + ELSE + blimit := pagesize; + alimit := blimit; + + boffset := pagesize / 2; + aoffset := boffset; + + IF pagesize % 2 <> 0 THEN + boffset := boffset + 1; + END IF; + END IF; + + IF page <= 0 THEN + RETURN QUERY + -- "bottom" half of the browse results + SELECT id FROM ( + SELECT ash.id, + row_number() over () + FROM authority.simple_heading ash + WHERE ash.atag = ANY (atag_list) + AND CASE thesauruses + WHEN '' THEN TRUE + ELSE ash.thesaurus = ANY(regexp_split_to_array(thesauruses, ',')) + END + AND ash.sort_value < pivot_sort_value + ORDER BY ash.sort_value DESC + LIMIT blimit + OFFSET ABS(page) * pagesize - boffset + ) x ORDER BY row_number DESC; + END IF; + + IF page >= 0 THEN + RETURN QUERY + -- "bottom" half of the browse results + SELECT ash.id + FROM authority.simple_heading ash + WHERE ash.atag = ANY (atag_list) + AND CASE thesauruses + WHEN '' THEN TRUE + ELSE ash.thesaurus = ANY(regexp_split_to_array(thesauruses, ',')) + END + AND ash.sort_value >= pivot_sort_value + ORDER BY ash.sort_value + LIMIT alimit + OFFSET ABS(page) * pagesize - aoffset; + END IF; +END; +$$; + + +ALTER FUNCTION authority.simple_heading_browse_center(atag_list integer[], q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: simple_heading_browse_top(integer[], text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION simple_heading_browse_top(atag_list integer[], q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE plpgsql ROWS 10 + AS $$ +DECLARE + pivot_sort_value TEXT; +BEGIN + + pivot_sort_value := authority.simple_heading_find_pivot(atag_list,q,thesauruses); + + IF page < 0 THEN + RETURN QUERY + -- "bottom" half of the browse results + SELECT id FROM ( + SELECT ash.id, + row_number() over () + FROM authority.simple_heading ash + WHERE ash.atag = ANY (atag_list) + AND CASE thesauruses + WHEN '' THEN TRUE + ELSE ash.thesaurus = ANY(regexp_split_to_array(thesauruses, ',')) + END + AND ash.sort_value < pivot_sort_value + ORDER BY ash.sort_value DESC + LIMIT pagesize + OFFSET (ABS(page) - 1) * pagesize + ) x ORDER BY row_number DESC; + END IF; + + IF page >= 0 THEN + RETURN QUERY + -- "bottom" half of the browse results + SELECT ash.id + FROM authority.simple_heading ash + WHERE ash.atag = ANY (atag_list) + AND CASE thesauruses + WHEN '' THEN TRUE + ELSE ash.thesaurus = ANY(regexp_split_to_array(thesauruses, ',')) + END + AND ash.sort_value >= pivot_sort_value + ORDER BY ash.sort_value + LIMIT pagesize + OFFSET ABS(page) * pagesize ; + END IF; +END; +$$; + + +ALTER FUNCTION authority.simple_heading_browse_top(atag_list integer[], q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: simple_heading_find_pivot(integer[], text, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION simple_heading_find_pivot(a integer[], q text, thesauruses text DEFAULT ''::text) RETURNS text + LANGUAGE plpgsql + AS $$ +DECLARE + sort_value_row RECORD; + value_row RECORD; + t_term TEXT; +BEGIN + + t_term := public.naco_normalize(q); + + SELECT CASE WHEN ash.sort_value LIKE t_term || '%' THEN 1 ELSE 0 END + + CASE WHEN ash.value LIKE t_term || '%' THEN 1 ELSE 0 END AS rank, + ash.sort_value + INTO sort_value_row + FROM authority.simple_heading ash + WHERE ash.atag = ANY (a) + AND ash.sort_value >= t_term + AND CASE thesauruses + WHEN '' THEN TRUE + ELSE ash.thesaurus = ANY(regexp_split_to_array(thesauruses, ',')) + END + ORDER BY rank DESC, ash.sort_value + LIMIT 1; + + SELECT CASE WHEN ash.sort_value LIKE t_term || '%' THEN 1 ELSE 0 END + + CASE WHEN ash.value LIKE t_term || '%' THEN 1 ELSE 0 END AS rank, + ash.sort_value + INTO value_row + FROM authority.simple_heading ash + WHERE ash.atag = ANY (a) + AND ash.value >= t_term + AND CASE thesauruses + WHEN '' THEN TRUE + ELSE ash.thesaurus = ANY(regexp_split_to_array(thesauruses, ',')) + END + ORDER BY rank DESC, ash.sort_value + LIMIT 1; + + IF value_row.rank > sort_value_row.rank THEN + RETURN value_row.sort_value; + ELSE + RETURN sort_value_row.sort_value; + END IF; +END; +$$; + + +ALTER FUNCTION authority.simple_heading_find_pivot(a integer[], q text, thesauruses text) OWNER TO evergreen; + +-- +-- Name: simple_heading_search_heading(integer[], text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION simple_heading_search_heading(atag_list integer[], q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT ash.id + FROM authority.simple_heading ash, + public.naco_normalize($2) t(term), + plainto_tsquery('keyword'::regconfig,$2) ptsq(term) + WHERE ash.atag = ANY ($1) + AND ash.index_vector @@ ptsq.term + AND CASE $5 + WHEN '' THEN TRUE + ELSE ash.thesaurus = ANY(regexp_split_to_array($5, ',')) + END + ORDER BY ash.sort_value + LIMIT $4 + OFFSET $4 * $3; +$_$; + + +ALTER FUNCTION authority.simple_heading_search_heading(atag_list integer[], q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: simple_heading_search_rank(integer[], text, integer, integer, text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION simple_heading_search_rank(atag_list integer[], q text, page integer DEFAULT 0, pagesize integer DEFAULT 10, thesauruses text DEFAULT ''::text) RETURNS SETOF bigint + LANGUAGE sql ROWS 10 + AS $_$ + SELECT ash.id + FROM authority.simple_heading ash, + public.naco_normalize($2) t(term), + plainto_tsquery('keyword'::regconfig,$2) ptsq(term) + WHERE ash.atag = ANY ($1) + AND ash.index_vector @@ ptsq.term + AND CASE $5 + WHEN '' THEN TRUE + ELSE ash.thesaurus = ANY(regexp_split_to_array($5, ',')) + END + ORDER BY ts_rank_cd(ash.index_vector,ptsq.term,14)::numeric + + CASE WHEN ash.sort_value LIKE t.term || '%' THEN 2 ELSE 0 END + + CASE WHEN ash.value LIKE t.term || '%' THEN 1 ELSE 0 END DESC + LIMIT $4 + OFFSET $4 * $3; +$_$; + + +ALTER FUNCTION authority.simple_heading_search_rank(atag_list integer[], q text, page integer, pagesize integer, thesauruses text) OWNER TO evergreen; + +-- +-- Name: simple_heading; Type: TABLE; Schema: authority; Owner: evergreen +-- + +CREATE TABLE simple_heading ( + id bigint NOT NULL, + record bigint NOT NULL, + atag integer NOT NULL, + value text NOT NULL, + sort_value text NOT NULL, + index_vector tsvector NOT NULL, + thesaurus text +); + + +ALTER TABLE simple_heading OWNER TO evergreen; + +-- +-- Name: simple_heading_set(text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION simple_heading_set(marcxml text) RETURNS SETOF simple_heading + LANGUAGE plpgsql STABLE STRICT + AS $_$ +DECLARE + res authority.simple_heading%ROWTYPE; + acsaf authority.control_set_authority_field%ROWTYPE; + tag_used TEXT; + nfi_used TEXT; + sf TEXT; + cset INT; + heading_text TEXT; + joiner_text TEXT; + sort_text TEXT; + tmp_text TEXT; + tmp_xml TEXT; + first_sf BOOL; + auth_id INT DEFAULT COALESCE(NULLIF(oils_xpath_string('//*[@tag="901"]/*[local-name()="subfield" and @code="c"]', marcxml), ''), '0')::INT; +BEGIN + + SELECT control_set INTO cset FROM authority.record_entry WHERE id = auth_id; + + IF cset IS NULL THEN + SELECT control_set INTO cset + FROM authority.control_set_authority_field + WHERE tag IN ( SELECT UNNEST(XPATH('//*[starts-with(@tag,"1")]/@tag',marcxml::XML)::TEXT[])) + LIMIT 1; + END IF; + + res.record := auth_id; + res.thesaurus := authority.extract_thesaurus(marcxml); + + FOR acsaf IN SELECT * FROM authority.control_set_authority_field WHERE control_set = cset LOOP + + res.atag := acsaf.id; + tag_used := acsaf.tag; + nfi_used := acsaf.nfi; + joiner_text := COALESCE(acsaf.joiner, ' '); + + FOR tmp_xml IN SELECT UNNEST(XPATH('//*[@tag="'||tag_used||'"]', marcxml::XML)::TEXT[]) LOOP + + heading_text := COALESCE( + oils_xpath_string('./*[contains("'||acsaf.display_sf_list||'",@code)]', tmp_xml, joiner_text), + '' + ); + + IF nfi_used IS NOT NULL THEN + + sort_text := SUBSTRING( + heading_text FROM + COALESCE( + NULLIF( + REGEXP_REPLACE( + oils_xpath_string('./@ind'||nfi_used, tmp_xml::TEXT), + $$\D+$$, + '', + 'g' + ), + '' + )::INT, + 0 + ) + 1 + ); + + ELSE + sort_text := heading_text; + END IF; + + IF heading_text IS NOT NULL AND heading_text <> '' THEN + res.value := heading_text; + res.sort_value := public.naco_normalize(sort_text); + res.index_vector = to_tsvector('keyword'::regconfig, res.sort_value); + RETURN NEXT res; + END IF; + + END LOOP; + + END LOOP; + + RETURN; +END; +$_$; + + +ALTER FUNCTION authority.simple_heading_set(marcxml text) OWNER TO evergreen; + +-- +-- Name: simple_normalize_heading(text); Type: FUNCTION; Schema: authority; Owner: evergreen +-- + +CREATE FUNCTION simple_normalize_heading(marcxml text) RETURNS text + LANGUAGE sql STABLE STRICT + AS $_$ + SELECT authority.normalize_heading($1, TRUE); +$_$; + + +ALTER FUNCTION authority.simple_normalize_heading(marcxml text) OWNER TO evergreen; + +SET search_path = biblio, pg_catalog; + +-- +-- Name: check_marcxml_well_formed(); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION check_marcxml_well_formed() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + + IF xml_is_well_formed(NEW.marc) THEN + RETURN NEW; + ELSE + RAISE EXCEPTION 'Attempted to % MARCXML that is not well formed', TG_OP; + END IF; + +END; +$$; + + +ALTER FUNCTION biblio.check_marcxml_well_formed() OWNER TO evergreen; + +-- +-- Name: extract_fingerprint(text); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION extract_fingerprint(marc text) RETURNS text + LANGUAGE plpgsql + AS $_$ +DECLARE + idx config.biblio_fingerprint%ROWTYPE; + xfrm config.xml_transform%ROWTYPE; + prev_xfrm TEXT; + transformed_xml TEXT; + xml_node TEXT; + xml_node_list TEXT[]; + raw_text TEXT; + output_text TEXT := ''; +BEGIN + + IF marc IS NULL OR marc = '' THEN + RETURN NULL; + END IF; + + -- Loop over the indexing entries + FOR idx IN SELECT * FROM config.biblio_fingerprint ORDER BY format, id LOOP + + SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format; + + -- See if we can skip the XSLT ... it's expensive + IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN + -- Can't skip the transform + IF xfrm.xslt <> '---' THEN + transformed_xml := oils_xslt_process(marc,xfrm.xslt); + ELSE + transformed_xml := marc; + END IF; + + prev_xfrm := xfrm.name; + END IF; + + raw_text := COALESCE( + naco_normalize( + ARRAY_TO_STRING( + oils_xpath( + '//text()', + (oils_xpath( + idx.xpath, + transformed_xml, + ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] + ))[1] + ), + '' + ) + ), + '' + ); + + raw_text := REGEXP_REPLACE(raw_text, E'\\[.+?\\]', E''); + raw_text := REGEXP_REPLACE(raw_text, E'\\mthe\\M|\\man?d?d\\M', E'', 'g'); -- arg! the pain! + + IF idx.first_word IS TRUE THEN + raw_text := REGEXP_REPLACE(raw_text, E'^(\\w+).*?$', E'\\1'); + END IF; + + output_text := output_text || REGEXP_REPLACE(raw_text, E'\\s+', '', 'g'); + + END LOOP; + + RETURN output_text; + +END; +$_$; + + +ALTER FUNCTION biblio.extract_fingerprint(marc text) OWNER TO evergreen; + +-- +-- Name: extract_located_uris(bigint, text, integer); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION extract_located_uris(bib_id bigint, marcxml text, editor_id integer) RETURNS void + LANGUAGE plpgsql + AS $_$ +DECLARE + uris TEXT[]; + uri_xml TEXT; + uri_label TEXT; + uri_href TEXT; + uri_use TEXT; + uri_owner_list TEXT[]; + uri_owner TEXT; + uri_owner_id INT; + uri_id INT; + uri_cn_id INT; + uri_map_id INT; +BEGIN + + -- Clear any URI mappings and call numbers for this bib. + -- This leads to acn / auricnm inflation, but also enables + -- old acn/auricnm's to go away and for bibs to be deleted. + FOR uri_cn_id IN SELECT id FROM asset.call_number WHERE record = bib_id AND label = '##URI##' AND NOT deleted LOOP + DELETE FROM asset.uri_call_number_map WHERE call_number = uri_cn_id; + DELETE FROM asset.call_number WHERE id = uri_cn_id; + END LOOP; + + uris := oils_xpath('//*[@tag="856" and (@ind1="4" or @ind1="1") and (@ind2="0" or @ind2="1")]',marcxml); + IF ARRAY_UPPER(uris,1) > 0 THEN + FOR i IN 1 .. ARRAY_UPPER(uris, 1) LOOP + -- First we pull info out of the 856 + uri_xml := uris[i]; + + uri_href := (oils_xpath('//*[@code="u"]/text()',uri_xml))[1]; + uri_label := (oils_xpath('//*[@code="y"]/text()|//*[@code="3"]/text()',uri_xml))[1]; + uri_use := (oils_xpath('//*[@code="z"]/text()|//*[@code="2"]/text()|//*[@code="n"]/text()',uri_xml))[1]; + + IF uri_label IS NULL THEN + uri_label := uri_href; + END IF; + CONTINUE WHEN uri_href IS NULL; + + -- Get the distinct list of libraries wanting to use + SELECT ARRAY_AGG( + DISTINCT REGEXP_REPLACE( + x, + $re$^.*?\((\w+)\).*$$re$, + E'\\1' + ) + ) INTO uri_owner_list + FROM UNNEST( + oils_xpath( + '//*[@code="9"]/text()|//*[@code="w"]/text()|//*[@code="n"]/text()', + uri_xml + ) + )x; + + IF ARRAY_UPPER(uri_owner_list,1) > 0 THEN + + -- look for a matching uri + IF uri_use IS NULL THEN + SELECT id INTO uri_id + FROM asset.uri + WHERE label = uri_label AND href = uri_href AND use_restriction IS NULL AND active + ORDER BY id LIMIT 1; + IF NOT FOUND THEN -- create one + INSERT INTO asset.uri (label, href, use_restriction) VALUES (uri_label, uri_href, uri_use); + SELECT id INTO uri_id + FROM asset.uri + WHERE label = uri_label AND href = uri_href AND use_restriction IS NULL AND active; + END IF; + ELSE + SELECT id INTO uri_id + FROM asset.uri + WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active + ORDER BY id LIMIT 1; + IF NOT FOUND THEN -- create one + INSERT INTO asset.uri (label, href, use_restriction) VALUES (uri_label, uri_href, uri_use); + SELECT id INTO uri_id + FROM asset.uri + WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active; + END IF; + END IF; + + FOR j IN 1 .. ARRAY_UPPER(uri_owner_list, 1) LOOP + uri_owner := uri_owner_list[j]; + + SELECT id INTO uri_owner_id FROM actor.org_unit WHERE shortname = uri_owner; + CONTINUE WHEN NOT FOUND; + + -- we need a call number to link through + SELECT id INTO uri_cn_id FROM asset.call_number WHERE owning_lib = uri_owner_id AND record = bib_id AND label = '##URI##' AND NOT deleted; + IF NOT FOUND THEN + INSERT INTO asset.call_number (owning_lib, record, create_date, edit_date, creator, editor, label) + VALUES (uri_owner_id, bib_id, 'now', 'now', editor_id, editor_id, '##URI##'); + SELECT id INTO uri_cn_id FROM asset.call_number WHERE owning_lib = uri_owner_id AND record = bib_id AND label = '##URI##' AND NOT deleted; + END IF; + + -- now, link them if they're not already + SELECT id INTO uri_map_id FROM asset.uri_call_number_map WHERE call_number = uri_cn_id AND uri = uri_id; + IF NOT FOUND THEN + INSERT INTO asset.uri_call_number_map (call_number, uri) VALUES (uri_cn_id, uri_id); + END IF; + + END LOOP; + + END IF; + + END LOOP; + END IF; + + RETURN; +END; +$_$; + + +ALTER FUNCTION biblio.extract_located_uris(bib_id bigint, marcxml text, editor_id integer) OWNER TO evergreen; + +-- +-- Name: extract_metabib_field_entry(bigint); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION extract_metabib_field_entry(bigint) RETURNS SETOF metabib.field_entry_template + LANGUAGE sql + AS $_$ + SELECT * FROM biblio.extract_metabib_field_entry($1, ' '); +$_$; + + +ALTER FUNCTION biblio.extract_metabib_field_entry(bigint) OWNER TO evergreen; + +-- +-- Name: extract_metabib_field_entry(bigint, text); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION extract_metabib_field_entry(rid bigint, default_joiner text) RETURNS SETOF metabib.field_entry_template + LANGUAGE plpgsql + AS $_$ +DECLARE + bib biblio.record_entry%ROWTYPE; + idx config.metabib_field%ROWTYPE; + xfrm config.xml_transform%ROWTYPE; + prev_xfrm TEXT; + transformed_xml TEXT; + xml_node TEXT; + xml_node_list TEXT[]; + facet_text TEXT; + browse_text TEXT; + sort_value TEXT; + raw_text TEXT; + curr_text TEXT; + joiner TEXT := default_joiner; -- XXX will index defs supply a joiner? + authority_text TEXT; + authority_link BIGINT; + output_row metabib.field_entry_template%ROWTYPE; +BEGIN + + -- Start out with no field-use bools set + output_row.browse_field = FALSE; + output_row.facet_field = FALSE; + output_row.search_field = FALSE; + + -- Get the record + SELECT INTO bib * FROM biblio.record_entry WHERE id = rid; + + -- Loop over the indexing entries + FOR idx IN SELECT * FROM config.metabib_field ORDER BY format LOOP + + joiner := COALESCE(idx.joiner, default_joiner); + + SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format; + + -- See if we can skip the XSLT ... it's expensive + IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN + -- Can't skip the transform + IF xfrm.xslt <> '---' THEN + transformed_xml := oils_xslt_process(bib.marc,xfrm.xslt); + ELSE + transformed_xml := bib.marc; + END IF; + + prev_xfrm := xfrm.name; + END IF; + + xml_node_list := oils_xpath( idx.xpath, transformed_xml, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] ); + + raw_text := NULL; + FOR xml_node IN SELECT x FROM unnest(xml_node_list) AS x LOOP + CONTINUE WHEN xml_node !~ E'^\\s*<'; + + -- XXX much of this should be moved into oils_xpath_string... + curr_text := ARRAY_TO_STRING(evergreen.array_remove_item_by_value(evergreen.array_remove_item_by_value( + oils_xpath( '//text()', -- get the content of all the nodes within the main selected node + REGEXP_REPLACE( xml_node, E'\\s+', ' ', 'g' ) -- Translate adjacent whitespace to a single space + ), ' '), ''), -- throw away morally empty (bankrupt?) strings + joiner + ); + + CONTINUE WHEN curr_text IS NULL OR curr_text = ''; + + IF raw_text IS NOT NULL THEN + raw_text := raw_text || joiner; + END IF; + + raw_text := COALESCE(raw_text,'') || curr_text; + + -- autosuggest/metabib.browse_entry + IF idx.browse_field THEN + + IF idx.browse_xpath IS NOT NULL AND idx.browse_xpath <> '' THEN + browse_text := oils_xpath_string( idx.browse_xpath, xml_node, joiner, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] ); + ELSE + browse_text := curr_text; + END IF; + + IF idx.browse_sort_xpath IS NOT NULL AND + idx.browse_sort_xpath <> '' THEN + + sort_value := oils_xpath_string( + idx.browse_sort_xpath, xml_node, joiner, + ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] + ); + ELSE + sort_value := browse_text; + END IF; + + output_row.field_class = idx.field_class; + output_row.field = idx.id; + output_row.source = rid; + output_row.value = BTRIM(REGEXP_REPLACE(browse_text, E'\\s+', ' ', 'g')); + output_row.sort_value := + public.naco_normalize(sort_value); + + output_row.authority := NULL; + + IF idx.authority_xpath IS NOT NULL AND idx.authority_xpath <> '' THEN + authority_text := oils_xpath_string( + idx.authority_xpath, xml_node, joiner, + ARRAY[ + ARRAY[xfrm.prefix, xfrm.namespace_uri], + ARRAY['xlink','http://www.w3.org/1999/xlink'] + ] + ); + + IF authority_text ~ '^\d+$' THEN + authority_link := authority_text::BIGINT; + PERFORM * FROM authority.record_entry WHERE id = authority_link; + IF FOUND THEN + output_row.authority := authority_link; + END IF; + END IF; + + END IF; + + output_row.browse_field = TRUE; + -- Returning browse rows with search_field = true for search+browse + -- configs allows us to retain granularity of being able to search + -- browse fields with "starts with" type operators (for example, for + -- titles of songs in music albums) + IF idx.search_field THEN + output_row.search_field = TRUE; + END IF; + RETURN NEXT output_row; + output_row.browse_field = FALSE; + output_row.search_field = FALSE; + output_row.sort_value := NULL; + END IF; + + -- insert raw node text for faceting + IF idx.facet_field THEN + + IF idx.facet_xpath IS NOT NULL AND idx.facet_xpath <> '' THEN + facet_text := oils_xpath_string( idx.facet_xpath, xml_node, joiner, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] ); + ELSE + facet_text := curr_text; + END IF; + + output_row.field_class = idx.field_class; + output_row.field = -1 * idx.id; + output_row.source = rid; + output_row.value = BTRIM(REGEXP_REPLACE(facet_text, E'\\s+', ' ', 'g')); + + output_row.facet_field = TRUE; + RETURN NEXT output_row; + output_row.facet_field = FALSE; + END IF; + + END LOOP; + + CONTINUE WHEN raw_text IS NULL OR raw_text = ''; + + -- insert combined node text for searching + IF idx.search_field THEN + output_row.field_class = idx.field_class; + output_row.field = idx.id; + output_row.source = rid; + output_row.value = BTRIM(REGEXP_REPLACE(raw_text, E'\\s+', ' ', 'g')); + + output_row.search_field = TRUE; + RETURN NEXT output_row; + output_row.search_field = FALSE; + END IF; + + END LOOP; + +END; + +$_$; + + +ALTER FUNCTION biblio.extract_metabib_field_entry(rid bigint, default_joiner text) OWNER TO evergreen; + +-- +-- Name: extract_quality(text, text, text); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION extract_quality(marc text, best_lang text, best_type text) RETURNS integer + LANGUAGE plpgsql + AS $$ +DECLARE + qual INT; + ldr TEXT; + tval TEXT; + tval_rec RECORD; + bval TEXT; + bval_rec RECORD; + type_map RECORD; + ff_pos RECORD; + ff_tag_data TEXT; +BEGIN + + IF marc IS NULL OR marc = '' THEN + RETURN NULL; + END IF; + + -- First, the count of tags + qual := ARRAY_UPPER(oils_xpath('*[local-name()="datafield"]', marc), 1); + + -- now go through a bunch of pain to get the record type + IF best_type IS NOT NULL THEN + ldr := (oils_xpath('//*[local-name()="leader"]/text()', marc))[1]; + + IF ldr IS NOT NULL THEN + SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same + SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same + + + tval := SUBSTRING( ldr, tval_rec.start_pos + 1, tval_rec.length ); + bval := SUBSTRING( ldr, bval_rec.start_pos + 1, bval_rec.length ); + + -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr; + + SELECT * INTO type_map FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%'; + + IF type_map.code IS NOT NULL THEN + IF best_type = type_map.code THEN + qual := qual + qual / 2; + END IF; + + FOR ff_pos IN SELECT * FROM config.marc21_ff_pos_map WHERE fixed_field = 'Lang' AND rec_type = type_map.code ORDER BY tag DESC LOOP + ff_tag_data := SUBSTRING((oils_xpath('//*[@tag="' || ff_pos.tag || '"]/text()',marc))[1], ff_pos.start_pos + 1, ff_pos.length); + IF ff_tag_data = best_lang THEN + qual := qual + 100; + END IF; + END LOOP; + END IF; + END IF; + END IF; + + -- Now look for some quality metrics + -- DCL record? + IF ARRAY_UPPER(oils_xpath('//*[@tag="040"]/*[@code="a" and contains(.,"DLC")]', marc), 1) = 1 THEN + qual := qual + 10; + END IF; + + -- From OCLC? + IF (oils_xpath('//*[@tag="003"]/text()', marc))[1] ~* E'oclo?c' THEN + qual := qual + 10; + END IF; + + RETURN qual; + +END; +$$; + + +ALTER FUNCTION biblio.extract_quality(marc text, best_lang text, best_type text) OWNER TO evergreen; + +-- +-- Name: fingerprint_trigger(); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION fingerprint_trigger() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + + -- For TG_ARGV, first param is language (like 'eng'), second is record type (like 'BKS') + + IF NEW.deleted IS TRUE THEN -- we don't much care, then, do we? + RETURN NEW; + END IF; + + NEW.fingerprint := biblio.extract_fingerprint(NEW.marc); + NEW.quality := biblio.extract_quality(NEW.marc, TG_ARGV[0], TG_ARGV[1]); + + RETURN NEW; + +END; +$$; + + +ALTER FUNCTION biblio.fingerprint_trigger() OWNER TO evergreen; + +SET search_path = metabib, pg_catalog; + +-- +-- Name: full_rec_id_seq; Type: SEQUENCE; Schema: metabib; Owner: evergreen +-- + +CREATE SEQUENCE full_rec_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE full_rec_id_seq OWNER TO evergreen; + +-- +-- Name: real_full_rec; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE real_full_rec ( + id bigint DEFAULT nextval('full_rec_id_seq'::regclass) NOT NULL, + record bigint NOT NULL, + tag character(3) NOT NULL, + ind1 text, + ind2 text, + subfield text, + value text NOT NULL, + index_vector tsvector NOT NULL +); + + +ALTER TABLE real_full_rec OWNER TO evergreen; + +-- +-- Name: full_rec; Type: VIEW; Schema: metabib; Owner: evergreen +-- + +CREATE VIEW full_rec AS + SELECT real_full_rec.id, + real_full_rec.record, + real_full_rec.tag, + real_full_rec.ind1, + real_full_rec.ind2, + real_full_rec.subfield, + "substring"(real_full_rec.value, 1, 1024) AS value, + real_full_rec.index_vector + FROM real_full_rec; + + +ALTER TABLE full_rec OWNER TO evergreen; + +SET search_path = biblio, pg_catalog; + +-- +-- Name: flatten_marc(bigint); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION flatten_marc(rid bigint) RETURNS SETOF metabib.full_rec + LANGUAGE plpgsql + AS $$ +DECLARE + bib biblio.record_entry%ROWTYPE; + output metabib.full_rec%ROWTYPE; + field RECORD; +BEGIN + SELECT INTO bib * FROM biblio.record_entry WHERE id = rid; + + FOR field IN SELECT * FROM vandelay.flatten_marc( bib.marc ) LOOP + output.record := rid; + output.ind1 := field.ind1; + output.ind2 := field.ind2; + output.tag := field.tag; + output.subfield := field.subfield; + output.value := field.value; + + RETURN NEXT output; + END LOOP; +END; +$$; + + +ALTER FUNCTION biblio.flatten_marc(rid bigint) OWNER TO evergreen; + +-- +-- Name: indexing_ingest_or_delete(); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION indexing_ingest_or_delete() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + tmp_bool BOOL; +BEGIN + + IF NEW.deleted THEN -- If this bib is deleted + + PERFORM * FROM config.internal_flag WHERE + name = 'ingest.metarecord_mapping.preserve_on_delete' AND enabled; + + tmp_bool := FOUND; -- Just in case this is changed by some other statement + + PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint, TRUE, tmp_bool ); + + IF NOT tmp_bool THEN + -- One needs to keep these around to support searches + -- with the #deleted modifier, so one should turn on the named + -- internal flag for that functionality. + DELETE FROM metabib.record_attr_vector_list WHERE source = NEW.id; + END IF; + + DELETE FROM authority.bib_linking WHERE bib = NEW.id; -- Avoid updating fields in bibs that are no longer visible + DELETE FROM biblio.peer_bib_copy_map WHERE peer_record = NEW.id; -- Separate any multi-homed items + DELETE FROM metabib.browse_entry_def_map WHERE source = NEW.id; -- Don't auto-suggest deleted bibs + RETURN NEW; -- and we're done + END IF; + + IF TG_OP = 'UPDATE' THEN -- re-ingest? + PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled; + + IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change + RETURN NEW; + END IF; + END IF; + + -- Record authority linking + PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking' AND enabled; + IF NOT FOUND THEN + PERFORM biblio.map_authority_linking( NEW.id, NEW.marc ); + END IF; + + -- Flatten and insert the mfr data + PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_full_rec' AND enabled; + IF NOT FOUND THEN + PERFORM metabib.reingest_metabib_full_rec(NEW.id); + + -- Now we pull out attribute data, which is dependent on the mfr for all but XPath-based fields + PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_rec_descriptor' AND enabled; + IF NOT FOUND THEN + PERFORM metabib.reingest_record_attributes(NEW.id, NULL, NEW.marc, TG_OP = 'INSERT' OR OLD.deleted); + END IF; + END IF; + + -- Gather and insert the field entry data + PERFORM metabib.reingest_metabib_field_entries(NEW.id); + + -- Located URI magic + IF TG_OP = 'INSERT' THEN + PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled; + IF NOT FOUND THEN + PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor ); + END IF; + ELSE + PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled; + IF NOT FOUND THEN + PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor ); + END IF; + END IF; + + -- (re)map metarecord-bib linking + IF TG_OP = 'INSERT' THEN -- if not deleted and performing an insert, check for the flag + PERFORM * FROM config.internal_flag WHERE name = 'ingest.metarecord_mapping.skip_on_insert' AND enabled; + IF NOT FOUND THEN + PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint ); + END IF; + ELSE -- we're doing an update, and we're not deleted, remap + PERFORM * FROM config.internal_flag WHERE name = 'ingest.metarecord_mapping.skip_on_update' AND enabled; + IF NOT FOUND THEN + PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint ); + END IF; + END IF; + + RETURN NEW; +END; +$$; + + +ALTER FUNCTION biblio.indexing_ingest_or_delete() OWNER TO evergreen; + +-- +-- Name: map_authority_linking(bigint, text); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION map_authority_linking(bibid bigint, marc text) RETURNS bigint + LANGUAGE sql + AS $_$ + DELETE FROM authority.bib_linking WHERE bib = $1; + INSERT INTO authority.bib_linking (bib, authority) + SELECT y.bib, + y.authority + FROM ( SELECT DISTINCT $1 AS bib, + BTRIM(remove_paren_substring(txt))::BIGINT AS authority + FROM unnest(oils_xpath('//*[@code="0"]/text()',$2)) x(txt) + WHERE BTRIM(remove_paren_substring(txt)) ~ $re$^\d+$$re$ + ) y JOIN authority.record_entry r ON r.id = y.authority; + SELECT $1; +$_$; + + +ALTER FUNCTION biblio.map_authority_linking(bibid bigint, marc text) OWNER TO evergreen; + +-- +-- Name: marc21_extract_all_fixed_fields(bigint); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION marc21_extract_all_fixed_fields(rid bigint) RETURNS SETOF record_ff_map + LANGUAGE sql + AS $_$ + SELECT $1 AS record, ff_name, ff_value FROM vandelay.marc21_extract_all_fixed_fields( (SELECT marc FROM biblio.record_entry WHERE id = $1), TRUE ); +$_$; + + +ALTER FUNCTION biblio.marc21_extract_all_fixed_fields(rid bigint) OWNER TO evergreen; + +-- +-- Name: marc21_extract_fixed_field(bigint, text); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION marc21_extract_fixed_field(rid bigint, ff text) RETURNS text + LANGUAGE sql + AS $_$ + SELECT * FROM vandelay.marc21_extract_fixed_field( (SELECT marc FROM biblio.record_entry WHERE id = $1), $2, TRUE ); +$_$; + + +ALTER FUNCTION biblio.marc21_extract_fixed_field(rid bigint, ff text) OWNER TO evergreen; + +-- +-- Name: marc21_extract_fixed_field_list(bigint, text); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION marc21_extract_fixed_field_list(rid bigint, ff text) RETURNS text[] + LANGUAGE sql + AS $_$ + SELECT * FROM vandelay.marc21_extract_fixed_field_list( (SELECT marc FROM biblio.record_entry WHERE id = $1), $2, TRUE ); +$_$; + + +ALTER FUNCTION biblio.marc21_extract_fixed_field_list(rid bigint, ff text) OWNER TO evergreen; + +-- +-- Name: marc21_physical_characteristics(bigint); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION marc21_physical_characteristics(rid bigint) RETURNS SETOF marc21_physical_characteristics + LANGUAGE sql + AS $_$ + SELECT id, $1 AS record, ptype, subfield, value FROM vandelay.marc21_physical_characteristics( (SELECT marc FROM biblio.record_entry WHERE id = $1) ); +$_$; + + +ALTER FUNCTION biblio.marc21_physical_characteristics(rid bigint) OWNER TO evergreen; + +-- +-- Name: next_autogen_tcn_value(); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION next_autogen_tcn_value() RETURNS text + LANGUAGE plpgsql + AS $$ + BEGIN RETURN 'AUTOGENERATED-' || nextval('biblio.autogen_tcn_value_seq'::TEXT); END; +$$; + + +ALTER FUNCTION biblio.next_autogen_tcn_value() OWNER TO evergreen; + +-- +-- Name: normalize_biblio_monograph_part_sortkey(); Type: FUNCTION; Schema: biblio; Owner: evergreen +-- + +CREATE FUNCTION normalize_biblio_monograph_part_sortkey() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + NEW.label_sortkey := REGEXP_REPLACE( + evergreen.lpad_number_substrings( + naco_normalize(NEW.label), + '0', + 10 + ), + E'\\s+', + '', + 'g' + ); + RETURN NEW; +END; +$$; + + +ALTER FUNCTION biblio.normalize_biblio_monograph_part_sortkey() OWNER TO evergreen; + +SET search_path = config, pg_catalog; + +-- +-- Name: interval_to_seconds(interval); Type: FUNCTION; Schema: config; Owner: evergreen +-- + +CREATE FUNCTION interval_to_seconds(interval_val interval) RETURNS integer + LANGUAGE plpgsql + AS $$ +BEGIN + RETURN EXTRACT( EPOCH FROM interval_val ); +END; +$$; + + +ALTER FUNCTION config.interval_to_seconds(interval_val interval) OWNER TO evergreen; + +-- +-- Name: interval_to_seconds(text); Type: FUNCTION; Schema: config; Owner: evergreen +-- + +CREATE FUNCTION interval_to_seconds(interval_string text) RETURNS integer + LANGUAGE plpgsql + AS $$ +BEGIN + RETURN config.interval_to_seconds( interval_string::INTERVAL ); +END; +$$; + + +ALTER FUNCTION config.interval_to_seconds(interval_string text) OWNER TO evergreen; + +-- +-- Name: marc_field; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE marc_field ( + id integer NOT NULL, + marc_format integer NOT NULL, + marc_record_type marc_record_type NOT NULL, + tag character(3) NOT NULL, + name text, + description text, + fixed_field boolean, + repeatable boolean, + mandatory boolean, + hidden boolean, + owner integer, + CONSTRAINT config_standard_marc_tags_are_fully_specified CHECK (((owner IS NOT NULL) OR ((owner IS NULL) AND (repeatable IS NOT NULL) AND (mandatory IS NOT NULL) AND (hidden IS NOT NULL)))) +); + + +ALTER TABLE marc_field OWNER TO evergreen; + +-- +-- Name: TABLE marc_field; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE marc_field IS ' +This table stores a list of MARC fields recognized by the Evergreen +instance. Note that we''re not aiming for completely generic ISO2709 +support: we''re assuming things like three characters for a tag, +one-character subfield labels, two indicators per variable data field, +and the like, all of which are technically specializations of ISO2709. + +Of particular significance is the owner column; if it''s set to a null +value, the field definition is assumed to come from a national +standards body; if it''s set to a non-null value, the field definition +is an OU-level addition to or override of the standard. +'; + + +-- +-- Name: ou_marc_fields(integer, marc_record_type, integer); Type: FUNCTION; Schema: config; Owner: evergreen +-- + +CREATE FUNCTION ou_marc_fields(marc_format integer, marc_record_type marc_record_type, ou integer) RETURNS SETOF marc_field + LANGUAGE sql + AS $_$ + SELECT id, marc_format, marc_record_type, tag, name, description, fixed_field, repeatable, mandatory, hidden, owner + FROM ( + SELECT id, marc_format, marc_record_type, tag, name, description, + fixed_field, repeatable, mandatory, hidden, owner, depth, + MAX(depth) OVER (PARTITION BY marc_format, marc_record_type, tag) AS winner + FROM config.marc_field_for_ou + WHERE (owner IS NULL + OR owner IN (SELECT id FROM actor.org_unit_ancestors($3))) + AND marc_format = $1 + AND marc_record_type = $2 + ) AS s + WHERE depth = winner + AND not hidden; +$_$; + + +ALTER FUNCTION config.ou_marc_fields(marc_format integer, marc_record_type marc_record_type, ou integer) OWNER TO evergreen; + +-- +-- Name: marc_subfield; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE marc_subfield ( + id integer NOT NULL, + marc_format integer NOT NULL, + marc_record_type marc_record_type NOT NULL, + tag character(3) NOT NULL, + code character(1) NOT NULL, + description text, + repeatable boolean, + mandatory boolean, + hidden boolean, + value_ctype text, + owner integer, + CONSTRAINT config_standard_marc_subfields_are_fully_specified CHECK (((owner IS NOT NULL) OR ((owner IS NULL) AND (repeatable IS NOT NULL) AND (mandatory IS NOT NULL) AND (hidden IS NOT NULL)))) +); + + +ALTER TABLE marc_subfield OWNER TO evergreen; + +-- +-- Name: TABLE marc_subfield; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE marc_subfield IS ' +This table stores the list of subfields recognized by this Evergreen +instance. As with config.marc_field, of particular significance is the +owner column; if it''s set to a null value, the subfield definition is +assumed to come from a national standards body; if it''s set to a non-null +value, the subfield definition is an OU-level addition to or override +of the standard. +'; + + +-- +-- Name: ou_marc_subfields(integer, marc_record_type, integer); Type: FUNCTION; Schema: config; Owner: evergreen +-- + +CREATE FUNCTION ou_marc_subfields(marc_format integer, marc_record_type marc_record_type, ou integer) RETURNS SETOF marc_subfield + LANGUAGE sql + AS $_$ + SELECT id, marc_format, marc_record_type, tag, code, description, repeatable, mandatory, + hidden, value_ctype, owner + FROM ( + SELECT id, marc_format, marc_record_type, tag, code, description, + repeatable, mandatory, hidden, value_ctype, owner, depth, + MAX(depth) OVER (PARTITION BY marc_format, marc_record_type, tag, code) AS winner + FROM config.marc_subfield_for_ou + WHERE (owner IS NULL + OR owner IN (SELECT id FROM actor.org_unit_ancestors($3))) + AND marc_format = $1 + AND marc_record_type = $2 + ) AS s + WHERE depth = winner + AND not hidden; +$_$; + + +ALTER FUNCTION config.ou_marc_subfields(marc_format integer, marc_record_type marc_record_type, ou integer) OWNER TO evergreen; + +-- +-- Name: update_coded_value_map(text, text, text, text, boolean, text, boolean, boolean); Type: FUNCTION; Schema: config; Owner: evergreen +-- + +CREATE FUNCTION update_coded_value_map(in_ctype text, in_code text, in_value text, in_description text DEFAULT NULL::text, in_opac_visible boolean DEFAULT NULL::boolean, in_search_label text DEFAULT NULL::text, in_is_simple boolean DEFAULT NULL::boolean, add_only boolean DEFAULT false) RETURNS void + LANGUAGE plpgsql + AS $$ +DECLARE + current_row config.coded_value_map%ROWTYPE; +BEGIN + -- Look for a current value + SELECT INTO current_row * FROM config.coded_value_map WHERE ctype = in_ctype AND code = in_code; + -- If we have one.. + IF FOUND AND NOT add_only THEN + -- Update anything we were handed + current_row.value := COALESCE(current_row.value, in_value); + current_row.description := COALESCE(current_row.description, in_description); + current_row.opac_visible := COALESCE(current_row.opac_visible, in_opac_visible); + current_row.search_label := COALESCE(current_row.search_label, in_search_label); + current_row.is_simple := COALESCE(current_row.is_simple, in_is_simple); + UPDATE config.coded_value_map + SET + value = current_row.value, + description = current_row.description, + opac_visible = current_row.opac_visible, + search_label = current_row.search_label, + is_simple = current_row.is_simple + WHERE id = current_row.id; + ELSE + INSERT INTO config.coded_value_map(ctype, code, value, description, opac_visible, search_label, is_simple) VALUES + (in_ctype, in_code, in_value, in_description, COALESCE(in_opac_visible, TRUE), in_search_label, COALESCE(in_is_simple, FALSE)); + END IF; +END; +$$; + + +ALTER FUNCTION config.update_coded_value_map(in_ctype text, in_code text, in_value text, in_description text, in_opac_visible boolean, in_search_label text, in_is_simple boolean, add_only boolean) OWNER TO evergreen; + +-- +-- Name: update_hard_due_dates(); Type: FUNCTION; Schema: config; Owner: evergreen +-- + +CREATE FUNCTION update_hard_due_dates() RETURNS integer + LANGUAGE plpgsql + AS $$ +DECLARE + temp_value config.hard_due_date_values%ROWTYPE; + updated INT := 0; +BEGIN + FOR temp_value IN + SELECT DISTINCT ON (hard_due_date) * + FROM config.hard_due_date_values + WHERE active_date <= NOW() -- We've passed (or are at) the rollover time + ORDER BY hard_due_date, active_date DESC -- Latest (nearest to us) active time + LOOP + UPDATE config.hard_due_date + SET ceiling_date = temp_value.ceiling_date + WHERE id = temp_value.hard_due_date + AND ceiling_date <> temp_value.ceiling_date; -- Time is equal if we've already updated the chdd + + IF FOUND THEN + updated := updated + 1; + END IF; + END LOOP; + + RETURN updated; +END; +$$; + + +ALTER FUNCTION config.update_hard_due_dates() OWNER TO evergreen; + +-- +-- Name: z3950_source_credentials_apply(text, integer, text, text); Type: FUNCTION; Schema: config; Owner: evergreen +-- + +CREATE FUNCTION z3950_source_credentials_apply(src text, org integer, uname text, passwd text) RETURNS void + LANGUAGE plpgsql + AS $$ +BEGIN + PERFORM 1 FROM config.z3950_source_credentials + WHERE owner = org AND source = src; + + IF FOUND THEN + IF COALESCE(uname, '') = '' AND COALESCE(passwd, '') = '' THEN + DELETE FROM config.z3950_source_credentials + WHERE owner = org AND source = src; + ELSE + UPDATE config.z3950_source_credentials + SET username = uname, password = passwd + WHERE owner = org AND source = src; + END IF; + ELSE + IF COALESCE(uname, '') <> '' OR COALESCE(passwd, '') <> '' THEN + INSERT INTO config.z3950_source_credentials + (source, owner, username, password) + VALUES (src, org, uname, passwd); + END IF; + END IF; +END; +$$; + + +ALTER FUNCTION config.z3950_source_credentials_apply(src text, org integer, uname text, passwd text) OWNER TO evergreen; + +-- +-- Name: z3950_source_credentials; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE z3950_source_credentials ( + id integer NOT NULL, + owner integer NOT NULL, + source text NOT NULL, + username text, + password text +); + + +ALTER TABLE z3950_source_credentials OWNER TO evergreen; + +-- +-- Name: z3950_source_credentials_lookup(text, integer); Type: FUNCTION; Schema: config; Owner: evergreen +-- + +CREATE FUNCTION z3950_source_credentials_lookup(source text, owner integer) RETURNS z3950_source_credentials + LANGUAGE sql STABLE + AS $_$ + + SELECT creds.* + FROM config.z3950_source_credentials creds + JOIN actor.org_unit aou ON (aou.id = creds.owner) + JOIN actor.org_unit_type aout ON (aout.id = aou.ou_type) + WHERE creds.source = $1 AND creds.owner IN ( + SELECT id FROM actor.org_unit_ancestors($2) + ) + ORDER BY aout.depth DESC LIMIT 1; + +$_$; + + +ALTER FUNCTION config.z3950_source_credentials_lookup(source text, owner integer) OWNER TO evergreen; + +SET search_path = container, pg_catalog; + +-- +-- Name: clear_all_expired_circ_history_items(); Type: FUNCTION; Schema: container; Owner: evergreen +-- + +CREATE FUNCTION clear_all_expired_circ_history_items() RETURNS void + LANGUAGE plpgsql + AS $$ +-- +-- Delete expired circulation bucket items for all users that have +-- a setting for patron.max_reading_list_interval. +-- +DECLARE + today TIMESTAMP WITH TIME ZONE; + threshold TIMESTAMP WITH TIME ZONE; + usr_setting RECORD; +BEGIN + SELECT date_trunc( 'day', now() ) INTO today; + -- + FOR usr_setting in + SELECT + usr, + value + FROM + actor.usr_setting + WHERE + name = 'patron.max_reading_list_interval' + LOOP + -- + -- Make sure the setting is a valid interval + -- + BEGIN + threshold := today - CAST( translate( usr_setting.value, '"', '' ) AS INTERVAL ); + EXCEPTION + WHEN OTHERS THEN + RAISE NOTICE 'Invalid setting patron.max_reading_list_interval for user %: ''%''', + usr_setting.usr, usr_setting.value; + CONTINUE; + END; + -- + --RAISE NOTICE 'User % threshold %', usr_setting.usr, threshold; + -- + DELETE FROM container.copy_bucket_item + WHERE + bucket IN + ( + SELECT + id + FROM + container.copy_bucket + WHERE + owner = usr_setting.usr + AND btype = 'circ_history' + ) + AND create_time < threshold; + END LOOP; + -- +END; +$$; + + +ALTER FUNCTION container.clear_all_expired_circ_history_items() OWNER TO evergreen; + +-- +-- Name: FUNCTION clear_all_expired_circ_history_items(); Type: COMMENT; Schema: container; Owner: evergreen +-- + +COMMENT ON FUNCTION clear_all_expired_circ_history_items() IS ' +Delete expired circulation bucket items for all users that have +a setting for patron.max_reading_list_interval. +'; + + +-- +-- Name: clear_expired_circ_history_items(integer); Type: FUNCTION; Schema: container; Owner: evergreen +-- + +CREATE FUNCTION clear_expired_circ_history_items(ac_usr integer) RETURNS void + LANGUAGE plpgsql + AS $$ +-- +-- Delete old circulation bucket items for a specified user. +-- "Old" means older than the interval specified by a +-- user-level setting, if it is so specified. +-- +DECLARE + threshold TIMESTAMP WITH TIME ZONE; +BEGIN + -- Sanity check + IF ac_usr IS NULL THEN + RETURN; + END IF; + -- Determine the threshold date that defines "old". Subtract the + -- interval from the system date, then truncate to midnight. + SELECT + date_trunc( + 'day', + now() - CAST( translate( value, '"', '' ) AS INTERVAL ) + ) + INTO + threshold + FROM + actor.usr_setting + WHERE + usr = ac_usr + AND name = 'patron.max_reading_list_interval'; + -- + IF threshold is null THEN + -- No interval defined; don't delete anything + -- RAISE NOTICE 'No interval defined for user %', ac_usr; + return; + END IF; + -- + -- RAISE NOTICE 'Date threshold: %', threshold; + -- + -- Threshold found; do the delete + delete from container.copy_bucket_item + where + bucket in + ( + select + id + from + container.copy_bucket + where + owner = ac_usr + and btype = 'circ_history' + ) + and create_time < threshold; + -- + RETURN; +END; +$$; + + +ALTER FUNCTION container.clear_expired_circ_history_items(ac_usr integer) OWNER TO evergreen; + +-- +-- Name: FUNCTION clear_expired_circ_history_items(ac_usr integer); Type: COMMENT; Schema: container; Owner: evergreen +-- + +COMMENT ON FUNCTION clear_expired_circ_history_items(ac_usr integer) IS ' +Delete old circulation bucket items for a specified user. +"Old" means older than the interval specified by a +user-level setting, if it is so specified. +'; + + +SET search_path = evergreen, pg_catalog; + +-- +-- Name: array_overlap_check(); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION array_overlap_check() RETURNS trigger + LANGUAGE plpgsql + AS $_$ +DECLARE + fld TEXT; + cnt INT; +BEGIN + fld := TG_ARGV[0]; + EXECUTE 'SELECT COUNT(*) FROM '|| TG_TABLE_SCHEMA ||'.'|| TG_TABLE_NAME ||' WHERE '|| fld ||' && ($1).'|| fld INTO cnt USING NEW; + IF cnt > 0 THEN + RAISE EXCEPTION 'Cannot insert duplicate array into field % of table %', fld, TG_TABLE_SCHEMA ||'.'|| TG_TABLE_NAME; + END IF; + RETURN NEW; +END; +$_$; + + +ALTER FUNCTION evergreen.array_overlap_check() OWNER TO evergreen; + +-- +-- Name: array_remove_item_by_value(anyarray, anyelement); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION array_remove_item_by_value(inp anyarray, el anyelement) RETURNS anyarray + LANGUAGE sql STABLE + AS $_$ + SELECT ARRAY_AGG(x.e) FROM UNNEST( $1 ) x(e) WHERE x.e <> $2; +$_$; + + +ALTER FUNCTION evergreen.array_remove_item_by_value(inp anyarray, el anyelement) OWNER TO evergreen; + +-- +-- Name: can_float(integer, integer, integer); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION can_float(copy_floating_group integer, from_ou integer, to_ou integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +DECLARE + float_member config.floating_group_member%ROWTYPE; + shared_ou_depth INT; + to_ou_depth INT; +BEGIN + -- Grab the shared OU depth. If this is less than the stop depth later we ignore the entry. + SELECT INTO shared_ou_depth max(depth) FROM actor.org_unit_common_ancestors( from_ou, to_ou ) aou JOIN actor.org_unit_type aout ON aou.ou_type = aout.id; + -- Grab the to ou depth. If this is greater than max depth we ignore the entry. + SELECT INTO to_ou_depth depth FROM actor.org_unit aou JOIN actor.org_unit_type aout ON aou.ou_type = aout.id WHERE aou.id = to_ou; + -- Grab float members that apply. We don't care what we get beyond wanting excluded ones first. + SELECT INTO float_member * + FROM + config.floating_group_member cfgm + JOIN actor.org_unit aou ON cfgm.org_unit = aou.id + JOIN actor.org_unit_type aout ON aou.ou_type = aout.id + WHERE + cfgm.floating_group = copy_floating_group + AND to_ou IN (SELECT id FROM actor.org_unit_descendants(aou.id)) + AND cfgm.stop_depth <= shared_ou_depth + AND (cfgm.max_depth IS NULL OR to_ou_depth <= max_depth) + ORDER BY + exclude DESC; + -- If we found something then we want to return the opposite of the exclude flag + IF FOUND THEN + RETURN NOT float_member.exclude; + END IF; + -- Otherwise no floating. + RETURN false; +END; +$$; + + +ALTER FUNCTION evergreen.can_float(copy_floating_group integer, from_ou integer, to_ou integer) OWNER TO evergreen; + +-- +-- Name: change_db_setting(text, text[]); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION change_db_setting(setting_name text, settings text[]) RETURNS void + LANGUAGE plpgsql + AS $$ +BEGIN + EXECUTE 'ALTER DATABASE ' || quote_ident(current_database()) || ' SET ' || quote_ident(setting_name) || ' = ' || array_to_string(settings, ','); +END; +$$; + + +ALTER FUNCTION evergreen.change_db_setting(setting_name text, settings text[]) OWNER TO evergreen; + +-- +-- Name: coded_value_map_normalizer(text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION coded_value_map_normalizer(input text, ctype text) RETURNS text + LANGUAGE sql + AS $_$ + SELECT COALESCE(value,$1) + FROM config.coded_value_map + WHERE ctype = $2 AND code = $1; +$_$; + + +ALTER FUNCTION evergreen.coded_value_map_normalizer(input text, ctype text) OWNER TO evergreen; + +-- +-- Name: could_be_serial_holding_code(text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION could_be_serial_holding_code(text) RETURNS boolean + LANGUAGE plperlu + AS $_X$ + use JSON::XS; + use MARC::Field; + + eval { + my $holding_code = (new JSON::XS)->decode(shift); + new MARC::Field('999', @$holding_code); + }; + return 0 if $@; + # verify that subfield labels are exactly one character long + foreach (keys %{ { @$holding_code } }) { + return 0 if length($_) != 1; + } + return 1; +$_X$; + + +ALTER FUNCTION evergreen.could_be_serial_holding_code(text) OWNER TO evergreen; + +-- +-- Name: FUNCTION could_be_serial_holding_code(text); Type: COMMENT; Schema: evergreen; Owner: evergreen +-- + +COMMENT ON FUNCTION could_be_serial_holding_code(text) IS 'Return true if parameter is valid JSON representing an array that at minimum doesn''t make MARC::Field balk and only has subfield labels exactly one character long. Otherwise false.'; + + +-- +-- Name: extract_marc_field(text, bigint, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION extract_marc_field(text, bigint, text) RETURNS text + LANGUAGE sql IMMUTABLE + AS $_$ + SELECT extract_marc_field($1,$2,$3,''); +$_$; + + +ALTER FUNCTION evergreen.extract_marc_field(text, bigint, text) OWNER TO evergreen; + +-- +-- Name: extract_marc_field(text, bigint, text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION extract_marc_field(text, bigint, text, text) RETURNS text + LANGUAGE plpgsql IMMUTABLE + AS $_$ +DECLARE + query TEXT; + output TEXT; +BEGIN + query := $q$ + SELECT regexp_replace( + oils_xpath_string( + $q$ || quote_literal($3) || $q$, + marc, + ' ' + ), + $q$ || quote_literal($4) || $q$, + '', + 'g') + FROM $q$ || $1 || $q$ + WHERE id = $q$ || $2; + + EXECUTE query INTO output; + + -- RAISE NOTICE 'query: %, output; %', query, output; + + RETURN output; +END; +$_$; + + +ALTER FUNCTION evergreen.extract_marc_field(text, bigint, text, text) OWNER TO evergreen; + +-- +-- Name: extract_marc_field_set(text, bigint, text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION extract_marc_field_set(text, bigint, text, text) RETURNS SETOF text + LANGUAGE plpgsql IMMUTABLE + AS $_$ +DECLARE + query TEXT; + output TEXT; +BEGIN + FOR output IN + SELECT x.t FROM ( + SELECT id,t + FROM oils_xpath_table( + 'id', 'marc', $1, $3, 'id = ' || $2) + AS t(id int, t text))x + LOOP + IF $4 IS NOT NULL THEN + SELECT INTO output (SELECT regexp_replace(output, $4, '', 'g')); + END IF; + RETURN NEXT output; + END LOOP; + RETURN; +END; +$_$; + + +ALTER FUNCTION evergreen.extract_marc_field_set(text, bigint, text, text) OWNER TO evergreen; + +-- +-- Name: facet_force_nfc(); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION facet_force_nfc() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + NEW.value := force_unicode_normal_form(NEW.value,'NFC'); + RETURN NEW; +END; +$$; + + +ALTER FUNCTION evergreen.facet_force_nfc() OWNER TO evergreen; + +-- +-- Name: fake_fkey_tgr(); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION fake_fkey_tgr() RETURNS trigger + LANGUAGE plpgsql + AS $_$ +DECLARE + copy_id BIGINT; +BEGIN + EXECUTE 'SELECT ($1).' || quote_ident(TG_ARGV[0]) INTO copy_id USING NEW; + PERFORM * FROM asset.copy WHERE id = copy_id; + IF NOT FOUND THEN + RAISE EXCEPTION 'Key (%.%=%) does not exist in asset.copy', TG_TABLE_SCHEMA, TG_TABLE_NAME, copy_id; + END IF; + RETURN NULL; +END; +$_$; + + +ALTER FUNCTION evergreen.fake_fkey_tgr() OWNER TO evergreen; + +-- +-- Name: force_unicode_normal_form(text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION force_unicode_normal_form(string text, form text) RETURNS text + LANGUAGE plperlu + AS $_X$ +use Unicode::Normalize 'normalize'; +return normalize($_[1],$_[0]); # reverse the params +$_X$; + + +ALTER FUNCTION evergreen.force_unicode_normal_form(string text, form text) OWNER TO evergreen; + +-- +-- Name: generic_map_normalizer(text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION generic_map_normalizer(text, text) RETURNS text + LANGUAGE plperlu + AS $_X$ +my $string = shift; +my %map; + +my $default = $string; + +$_ = shift; +while (/^\s*?(.*?)\s*?=>\s*?(\S+)\s*/) { + if ($1 eq '') { + $default = $2; + } else { + $map{$2} = [split(/\s*,\s*/, $1)]; + } + $_ = $'; +} + +for my $key ( keys %map ) { + return $key if (grep { $_ eq $string } @{ $map{$key} }); +} + +return $default; + +$_X$; + + +ALTER FUNCTION evergreen.generic_map_normalizer(text, text) OWNER TO evergreen; + +-- +-- Name: get_barcodes(integer, text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION get_barcodes(select_ou integer, type text, in_barcode text) RETURNS SETOF barcode_set + LANGUAGE plpgsql + AS $$ +DECLARE + cur_barcode TEXT; + barcode_len INT; + completion_len INT; + asset_barcodes TEXT[]; + actor_barcodes TEXT[]; + do_asset BOOL = false; + do_serial BOOL = false; + do_booking BOOL = false; + do_actor BOOL = false; + completion_set config.barcode_completion%ROWTYPE; +BEGIN + + IF position('asset' in type) > 0 THEN + do_asset = true; + END IF; + IF position('serial' in type) > 0 THEN + do_serial = true; + END IF; + IF position('booking' in type) > 0 THEN + do_booking = true; + END IF; + IF do_asset OR do_serial OR do_booking THEN + asset_barcodes = asset_barcodes || in_barcode; + END IF; + IF position('actor' in type) > 0 THEN + do_actor = true; + actor_barcodes = actor_barcodes || in_barcode; + END IF; + + barcode_len := length(in_barcode); + + FOR completion_set IN + SELECT * FROM config.barcode_completion + WHERE active + AND org_unit IN (SELECT aou.id FROM actor.org_unit_ancestors(select_ou) aou) + LOOP + IF completion_set.prefix IS NULL THEN + completion_set.prefix := ''; + END IF; + IF completion_set.suffix IS NULL THEN + completion_set.suffix := ''; + END IF; + IF completion_set.length = 0 OR completion_set.padding IS NULL OR length(completion_set.padding) = 0 THEN + cur_barcode = completion_set.prefix || in_barcode || completion_set.suffix; + ELSE + completion_len = completion_set.length - length(completion_set.prefix) - length(completion_set.suffix); + IF completion_len >= barcode_len THEN + IF completion_set.padding_end THEN + cur_barcode = rpad(in_barcode, completion_len, completion_set.padding); + ELSE + cur_barcode = lpad(in_barcode, completion_len, completion_set.padding); + END IF; + cur_barcode = completion_set.prefix || cur_barcode || completion_set.suffix; + END IF; + END IF; + IF completion_set.actor THEN + actor_barcodes = actor_barcodes || cur_barcode; + END IF; + IF completion_set.asset THEN + asset_barcodes = asset_barcodes || cur_barcode; + END IF; + END LOOP; + + IF do_asset AND do_serial THEN + RETURN QUERY SELECT 'asset'::TEXT, id, barcode FROM ONLY asset.copy WHERE barcode = ANY(asset_barcodes) AND deleted = false; + RETURN QUERY SELECT 'serial'::TEXT, id, barcode FROM serial.unit WHERE barcode = ANY(asset_barcodes) AND deleted = false; + ELSIF do_asset THEN + RETURN QUERY SELECT 'asset'::TEXT, id, barcode FROM asset.copy WHERE barcode = ANY(asset_barcodes) AND deleted = false; + ELSIF do_serial THEN + RETURN QUERY SELECT 'serial'::TEXT, id, barcode FROM serial.unit WHERE barcode = ANY(asset_barcodes) AND deleted = false; + END IF; + IF do_booking THEN + RETURN QUERY SELECT 'booking'::TEXT, id::BIGINT, barcode FROM booking.resource WHERE barcode = ANY(asset_barcodes); + END IF; + IF do_actor THEN + RETURN QUERY SELECT 'actor'::TEXT, c.usr::BIGINT, c.barcode FROM actor.card c JOIN actor.usr u ON c.usr = u.id WHERE + ((c.barcode = ANY(actor_barcodes) AND c.active) OR c.barcode = in_barcode) AND NOT u.deleted ORDER BY usr; + END IF; + RETURN; +END; +$$; + + +ALTER FUNCTION evergreen.get_barcodes(select_ou integer, type text, in_barcode text) OWNER TO evergreen; + +-- +-- Name: FUNCTION get_barcodes(select_ou integer, type text, in_barcode text); Type: COMMENT; Schema: evergreen; Owner: evergreen +-- + +COMMENT ON FUNCTION get_barcodes(select_ou integer, type text, in_barcode text) IS ' +Given user input, find an appropriate barcode in the proper class. + +Will add prefix/suffix information to do so, and return all results. +'; + + +-- +-- Name: get_locale_name(text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION get_locale_name(locale text, OUT name text, OUT description text) RETURNS record + LANGUAGE plpgsql STABLE COST 1 + AS $$ +DECLARE + eg_locale TEXT; +BEGIN + eg_locale := LOWER(SUBSTRING(locale FROM 1 FOR 2)) || '-' || UPPER(SUBSTRING(locale FROM 4 FOR 2)); + + SELECT i18nc.string INTO name + FROM config.i18n_locale i18nl + INNER JOIN config.i18n_core i18nc ON i18nl.code = i18nc.translation + WHERE i18nc.identity_value = eg_locale + AND code = eg_locale + AND i18nc.fq_field = 'i18n_l.name'; + + IF name IS NULL THEN + SELECT i18nl.name INTO name + FROM config.i18n_locale i18nl + WHERE code = eg_locale; + END IF; + + SELECT i18nc.string INTO description + FROM config.i18n_locale i18nl + INNER JOIN config.i18n_core i18nc ON i18nl.code = i18nc.translation + WHERE i18nc.identity_value = eg_locale + AND code = eg_locale + AND i18nc.fq_field = 'i18n_l.description'; + + IF description IS NULL THEN + SELECT i18nl.description INTO description + FROM config.i18n_locale i18nl + WHERE code = eg_locale; + END IF; +END; +$$; + + +ALTER FUNCTION evergreen.get_locale_name(locale text, OUT name text, OUT description text) OWNER TO evergreen; + +-- +-- Name: limit_oustl(); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION limit_oustl() RETURNS trigger + LANGUAGE plpgsql + AS $$ + BEGIN + -- Only keeps the most recent five settings changes. + DELETE FROM config.org_unit_setting_type_log WHERE field_name = NEW.field_name AND org = NEW.org AND date_applied NOT IN + (SELECT date_applied FROM config.org_unit_setting_type_log WHERE field_name = NEW.field_name AND org = NEW.org ORDER BY date_applied DESC LIMIT 4); + + IF (TG_OP = 'UPDATE') THEN + RETURN NEW; + ELSIF (TG_OP = 'INSERT') THEN + RETURN NEW; + END IF; + RETURN NULL; + END; +$$; + + +ALTER FUNCTION evergreen.limit_oustl() OWNER TO evergreen; + +-- +-- Name: located_uris(bigint[], integer, integer); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION located_uris(bibid bigint[], ouid integer, pref_lib integer DEFAULT NULL::integer) RETURNS TABLE(id bigint, name text, label_sortkey text, rank integer) + LANGUAGE sql STABLE + AS $_$ + WITH all_orgs AS (SELECT COALESCE( enabled, FALSE ) AS flag FROM config.global_flag WHERE name = 'opac.located_uri.act_as_copy') + SELECT DISTINCT ON (id) * FROM ( + SELECT acn.id, COALESCE(aou.name,aoud.name), acn.label_sortkey, evergreen.rank_ou(aou.id, $2, $3) AS pref_ou + FROM asset.call_number acn + INNER JOIN asset.uri_call_number_map auricnm ON acn.id = auricnm.call_number + INNER JOIN asset.uri auri ON auri.id = auricnm.uri + LEFT JOIN actor.org_unit_ancestors( COALESCE($3, $2) ) aou ON (acn.owning_lib = aou.id) + LEFT JOIN actor.org_unit_descendants( COALESCE($3, $2) ) aoud ON (acn.owning_lib = aoud.id), + all_orgs + WHERE acn.record = ANY ($1) + AND acn.deleted IS FALSE + AND auri.active IS TRUE + AND ((NOT all_orgs.flag AND aou.id IS NOT NULL) OR (all_orgs.flag AND COALESCE(aou.id,aoud.id) IS NOT NULL)) + UNION + SELECT acn.id, COALESCE(aou.name,aoud.name) AS name, acn.label_sortkey, evergreen.rank_ou(aou.id, $2, $3) AS pref_ou + FROM asset.call_number acn + INNER JOIN asset.uri_call_number_map auricnm ON acn.id = auricnm.call_number + INNER JOIN asset.uri auri ON auri.id = auricnm.uri + LEFT JOIN actor.org_unit_ancestors( $2 ) aou ON (acn.owning_lib = aou.id) + LEFT JOIN actor.org_unit_descendants( $2 ) aoud ON (acn.owning_lib = aoud.id), + all_orgs + WHERE acn.record = ANY ($1) + AND acn.deleted IS FALSE + AND auri.active IS TRUE + AND ((NOT all_orgs.flag AND aou.id IS NOT NULL) OR (all_orgs.flag AND COALESCE(aou.id,aoud.id) IS NOT NULL)))x + ORDER BY id, pref_ou DESC; +$_$; + + +ALTER FUNCTION evergreen.located_uris(bibid bigint[], ouid integer, pref_lib integer) OWNER TO evergreen; + +-- +-- Name: located_uris(bigint, integer, integer); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION located_uris(bibid bigint, ouid integer, pref_lib integer DEFAULT NULL::integer) RETURNS TABLE(id bigint, name text, label_sortkey text, rank integer) + LANGUAGE sql STABLE + AS $_$ SELECT * FROM evergreen.located_uris(ARRAY[$1],$2,$3) $_$; + + +ALTER FUNCTION evergreen.located_uris(bibid bigint, ouid integer, pref_lib integer) OWNER TO evergreen; + +-- +-- Name: lowercase(text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION lowercase(text) RETURNS text + LANGUAGE plperlu IMMUTABLE STRICT + AS $$ + return lc(shift); +$$; + + +ALTER FUNCTION evergreen.lowercase(text) OWNER TO evergreen; + +-- +-- Name: lpad_number_substrings(text, text, integer); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION lpad_number_substrings(text, text, integer) RETURNS text + LANGUAGE plperlu + AS $_$ + my $string = shift; # Source string + my $pad = shift; # string to fill. Typically '0'. This should be a single character. + my $len = shift; # length of resultant padded field + + $string =~ s/([0-9]+)/$pad x ($len - length($1)) . $1/eg; + + return $string; +$_$; + + +ALTER FUNCTION evergreen.lpad_number_substrings(text, text, integer) OWNER TO evergreen; + +-- +-- Name: maintain_901(); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION maintain_901() RETURNS trigger + LANGUAGE plperlu + AS $_X$ +use strict; +use MARC::Record; +use MARC::File::XML (BinaryEncoding => 'UTF-8'); +use MARC::Charset; +use Encode; +use Unicode::Normalize; + +MARC::Charset->assume_unicode(1); + +my $schema = $_TD->{table_schema}; +my $marc = MARC::Record->new_from_xml($_TD->{new}{marc}); + +my @old901s = $marc->field('901'); +$marc->delete_fields(@old901s); + +if ($schema eq 'biblio') { + my $tcn_value = $_TD->{new}{tcn_value}; + + # Set TCN value to record ID? + my $id_as_tcn = spi_exec_query(" + SELECT enabled + FROM config.global_flag + WHERE name = 'cat.bib.use_id_for_tcn' + "); + if (($id_as_tcn->{processed}) && $id_as_tcn->{rows}[0]->{enabled} eq 't') { + $tcn_value = $_TD->{new}{id}; + $_TD->{new}{tcn_value} = $tcn_value; + } + + my $new_901 = MARC::Field->new("901", " ", " ", + "a" => $tcn_value, + "b" => $_TD->{new}{tcn_source}, + "c" => $_TD->{new}{id}, + "t" => $schema + ); + + if ($_TD->{new}{owner}) { + $new_901->add_subfields("o" => $_TD->{new}{owner}); + } + + if ($_TD->{new}{share_depth}) { + $new_901->add_subfields("d" => $_TD->{new}{share_depth}); + } + + $marc->append_fields($new_901); +} elsif ($schema eq 'authority') { + my $new_901 = MARC::Field->new("901", " ", " ", + "c" => $_TD->{new}{id}, + "t" => $schema, + ); + $marc->append_fields($new_901); +} elsif ($schema eq 'serial') { + my $new_901 = MARC::Field->new("901", " ", " ", + "c" => $_TD->{new}{id}, + "t" => $schema, + "o" => $_TD->{new}{owning_lib}, + ); + + if ($_TD->{new}{record}) { + $new_901->add_subfields("r" => $_TD->{new}{record}); + } + + $marc->append_fields($new_901); +} else { + my $new_901 = MARC::Field->new("901", " ", " ", + "c" => $_TD->{new}{id}, + "t" => $schema, + ); + $marc->append_fields($new_901); +} + +my $xml = $marc->as_xml_record(); +$xml =~ s/\n//sgo; +$xml =~ s/^<\?xml.+\?\s*>//go; +$xml =~ s/>\s+entityize() +# to avoid having to set PERL5LIB for PostgreSQL as well + +$xml = NFC($xml); + +# Convert raw ampersands to entities +$xml =~ s/&(?!\S+;)/&/gso; + +# Convert Unicode characters to entities +$xml =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe; + +$xml =~ s/[\x00-\x1f]//go; +$_TD->{new}{marc} = $xml; + +return "MODIFY"; +$_X$; + + +ALTER FUNCTION evergreen.maintain_901() OWNER TO evergreen; + +-- +-- Name: maintain_control_numbers(); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION maintain_control_numbers() RETURNS trigger + LANGUAGE plperlu + AS $_X$ +use strict; +use MARC::Record; +use MARC::File::XML (BinaryEncoding => 'UTF-8'); +use MARC::Charset; +use Encode; +use Unicode::Normalize; + +MARC::Charset->assume_unicode(1); + +my $record = MARC::Record->new_from_xml($_TD->{new}{marc}); +my $schema = $_TD->{table_schema}; +my $rec_id = $_TD->{new}{id}; + +# Short-circuit if maintaining control numbers per MARC21 spec is not enabled +my $enable = spi_exec_query("SELECT enabled FROM config.global_flag WHERE name = 'cat.maintain_control_numbers'"); +if (!($enable->{processed}) or $enable->{rows}[0]->{enabled} eq 'f') { + return; +} + +# Get the control number identifier from an OU setting based on $_TD->{new}{owner} +my $ou_cni = 'EVRGRN'; + +my $owner; +if ($schema eq 'serial') { + $owner = $_TD->{new}{owning_lib}; +} else { + # are.owner and bre.owner can be null, so fall back to the consortial setting + $owner = $_TD->{new}{owner} || 1; +} + +my $ous_rv = spi_exec_query("SELECT value FROM actor.org_unit_ancestor_setting('cat.marc_control_number_identifier', $owner)"); +if ($ous_rv->{processed}) { + $ou_cni = $ous_rv->{rows}[0]->{value}; + $ou_cni =~ s/"//g; # Stupid VIM syntax highlighting" +} else { + # Fall back to the shortname of the OU if there was no OU setting + $ous_rv = spi_exec_query("SELECT shortname FROM actor.org_unit WHERE id = $owner"); + if ($ous_rv->{processed}) { + $ou_cni = $ous_rv->{rows}[0]->{shortname}; + } +} + +my ($create, $munge) = (0, 0); + +my @scns = $record->field('035'); + +foreach my $id_field ('001', '003') { + my $spec_value; + my @controls = $record->field($id_field); + + if ($id_field eq '001') { + $spec_value = $rec_id; + } else { + $spec_value = $ou_cni; + } + + # Create the 001/003 if none exist + if (scalar(@controls) == 1) { + # Only one field; check to see if we need to munge it + unless (grep $_->data() eq $spec_value, @controls) { + $munge = 1; + } + } else { + # Delete the other fields, as with more than 1 001/003 we do not know which 003/001 to match + foreach my $control (@controls) { + $record->delete_field($control); + } + $record->insert_fields_ordered(MARC::Field->new($id_field, $spec_value)); + $create = 1; + } +} + +my $cn = $record->field('001')->data(); +# Special handling of OCLC numbers, often found in records that lack 003 +if ($cn =~ /^o(c[nm]|n)\d/) { + $cn =~ s/^o(c[nm]|n)0*(\d+)/$2/; + $record->field('003')->data('OCoLC'); + $create = 0; +} + +# Now, if we need to munge the 001, we will first push the existing 001/003 +# into the 035; but if the record did not have one (and one only) 001 and 003 +# to begin with, skip this process +if ($munge and not $create) { + + my $scn = "(" . $record->field('003')->data() . ")" . $cn; + + # Do not create duplicate 035 fields + unless (grep $_->subfield('a') eq $scn, @scns) { + $record->insert_fields_ordered(MARC::Field->new('035', '', '', 'a' => $scn)); + } +} + +# Set the 001/003 and update the MARC +if ($create or $munge) { + $record->field('001')->data($rec_id); + $record->field('003')->data($ou_cni); + + my $xml = $record->as_xml_record(); + $xml =~ s/\n//sgo; + $xml =~ s/^<\?xml.+\?\s*>//go; + $xml =~ s/>\s+entityize() + # to avoid having to set PERL5LIB for PostgreSQL as well + + $xml = NFC($xml); + + # Convert raw ampersands to entities + $xml =~ s/&(?!\S+;)/&/gso; + + # Convert Unicode characters to entities + $xml =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe; + + $xml =~ s/[\x00-\x1f]//go; + $_TD->{new}{marc} = $xml; + + return "MODIFY"; +} + +return; +$_X$; + + +ALTER FUNCTION evergreen.maintain_control_numbers() OWNER TO evergreen; + +-- +-- Name: oils_i18n_code_tracking(); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_i18n_code_tracking() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + PERFORM oils_i18n_update_apply( OLD.code::TEXT, NEW.code::TEXT, TG_ARGV[0]::TEXT ); + RETURN NEW; +END; +$$; + + +ALTER FUNCTION evergreen.oils_i18n_code_tracking() OWNER TO evergreen; + +-- +-- Name: oils_i18n_gettext(integer, text, text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_i18n_gettext(integer, text, text, text) RETURNS text + LANGUAGE sql + AS $_$ + SELECT $2; +$_$; + + +ALTER FUNCTION evergreen.oils_i18n_gettext(integer, text, text, text) OWNER TO evergreen; + +-- +-- Name: oils_i18n_gettext(text, text, text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_i18n_gettext(text, text, text, text) RETURNS text + LANGUAGE sql + AS $_$ + SELECT $2; +$_$; + + +ALTER FUNCTION evergreen.oils_i18n_gettext(text, text, text, text) OWNER TO evergreen; + +-- +-- Name: oils_i18n_id_tracking(); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_i18n_id_tracking() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + PERFORM oils_i18n_update_apply( OLD.id::TEXT, NEW.id::TEXT, TG_ARGV[0]::TEXT ); + RETURN NEW; +END; +$$; + + +ALTER FUNCTION evergreen.oils_i18n_id_tracking() OWNER TO evergreen; + +-- +-- Name: oils_i18n_update_apply(text, text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_i18n_update_apply(old_ident text, new_ident text, hint text) RETURNS void + LANGUAGE plpgsql + AS $_$ +BEGIN + + EXECUTE $$ + UPDATE config.i18n_core + SET identity_value = $$ || quote_literal(new_ident) || $$ + WHERE fq_field LIKE '$$ || hint || $$.%' + AND identity_value = $$ || quote_literal(old_ident) || $$::TEXT;$$; + + RETURN; + +END; +$_$; + + +ALTER FUNCTION evergreen.oils_i18n_update_apply(old_ident text, new_ident text, hint text) OWNER TO evergreen; + +-- +-- Name: oils_i18n_xlate(text, text, text, text, text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_i18n_xlate(keytable text, keyclass text, keycol text, identcol text, keyvalue text, raw_locale text) RETURNS text + LANGUAGE plpgsql STABLE + AS $_$ +DECLARE + locale TEXT := REGEXP_REPLACE( REGEXP_REPLACE( raw_locale, E'[;, ].+$', '' ), E'_', '-', 'g' ); + language TEXT := REGEXP_REPLACE( locale, E'-.+$', '' ); + result config.i18n_core%ROWTYPE; + fallback TEXT; + keyfield TEXT := keyclass || '.' || keycol; +BEGIN + + -- Try the full locale + SELECT * INTO result + FROM config.i18n_core + WHERE fq_field = keyfield + AND identity_value = keyvalue + AND translation = locale; + + -- Try just the language + IF NOT FOUND THEN + SELECT * INTO result + FROM config.i18n_core + WHERE fq_field = keyfield + AND identity_value = keyvalue + AND translation = language; + END IF; + + -- Fall back to the string we passed in in the first place + IF NOT FOUND THEN + EXECUTE + 'SELECT ' || + keycol || + ' FROM ' || keytable || + ' WHERE ' || identcol || ' = ' || quote_literal(keyvalue) + INTO fallback; + RETURN fallback; + END IF; + + RETURN result.string; +END; +$_$; + + +ALTER FUNCTION evergreen.oils_i18n_xlate(keytable text, keyclass text, keycol text, identcol text, keyvalue text, raw_locale text) OWNER TO evergreen; + +-- +-- Name: oils_json_to_text(text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_json_to_text(text) RETURNS text + LANGUAGE plperlu + AS $_$ + use JSON::XS; + my $json = shift(); + my $txt; + eval { $txt = JSON::XS->new->allow_nonref->decode( $json ) }; + return undef if ($@); + return $txt +$_$; + + +ALTER FUNCTION evergreen.oils_json_to_text(text) OWNER TO evergreen; + +-- +-- Name: oils_text_as_bytea(text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_text_as_bytea(text) RETURNS bytea + LANGUAGE sql IMMUTABLE + AS $_$ + SELECT CAST(REGEXP_REPLACE(UPPER($1), $$\\$$, $$\\\\$$, 'g') AS BYTEA); +$_$; + + +ALTER FUNCTION evergreen.oils_text_as_bytea(text) OWNER TO evergreen; + +-- +-- Name: oils_xpath(text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_xpath(text, text) RETURNS text[] + LANGUAGE sql IMMUTABLE + AS $_$ + SELECT ARRAY_AGG( + CASE WHEN strpos(x,'<') = 1 THEN -- It's an element node + x + ELSE -- it's text-ish + evergreen.xml_famous5_to_text(x) + END + ) + FROM UNNEST(XPATH( $1, $2::XML)::TEXT[]) x; +$_$; + + +ALTER FUNCTION evergreen.oils_xpath(text, text) OWNER TO evergreen; + +-- +-- Name: oils_xpath(text, text, text[]); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_xpath(text, text, text[]) RETURNS text[] + LANGUAGE sql IMMUTABLE + AS $_$ + SELECT ARRAY_AGG( + CASE WHEN strpos(x,'<') = 1 THEN -- It's an element node + x + ELSE -- it's text-ish + evergreen.xml_famous5_to_text(x) + END + ) + FROM UNNEST(XPATH( $1, $2::XML, $3 )::TEXT[]) x; +$_$; + + +ALTER FUNCTION evergreen.oils_xpath(text, text, text[]) OWNER TO evergreen; + +-- +-- Name: oils_xpath_string(text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_xpath_string(text, text) RETURNS text + LANGUAGE sql IMMUTABLE + AS $_$ + SELECT oils_xpath_string( $1, $2, '{}'::TEXT[] ); +$_$; + + +ALTER FUNCTION evergreen.oils_xpath_string(text, text) OWNER TO evergreen; + +-- +-- Name: oils_xpath_string(text, text, anyarray); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_xpath_string(text, text, anyarray) RETURNS text + LANGUAGE sql IMMUTABLE + AS $_$ + SELECT oils_xpath_string( $1, $2, '', $3 ); +$_$; + + +ALTER FUNCTION evergreen.oils_xpath_string(text, text, anyarray) OWNER TO evergreen; + +-- +-- Name: oils_xpath_string(text, text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_xpath_string(text, text, text) RETURNS text + LANGUAGE sql IMMUTABLE + AS $_$ + SELECT oils_xpath_string( $1, $2, $3, '{}'::TEXT[] ); +$_$; + + +ALTER FUNCTION evergreen.oils_xpath_string(text, text, text) OWNER TO evergreen; + +-- +-- Name: oils_xpath_string(text, text, text, anyarray); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_xpath_string(text, text, text, anyarray) RETURNS text + LANGUAGE sql IMMUTABLE + AS $_$ + SELECT ARRAY_TO_STRING( + oils_xpath( + $1 || + CASE WHEN $1 ~ $re$/[^/[]*@[^]]+$$re$ OR $1 ~ $re$text\(\)$$re$ THEN '' ELSE '//text()' END, + $2, + $4 + ), + $3 + ); +$_$; + + +ALTER FUNCTION evergreen.oils_xpath_string(text, text, text, anyarray) OWNER TO evergreen; + +-- +-- Name: oils_xpath_table(text, text, text, text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_xpath_table(key text, document_field text, relation_name text, xpaths text, criteria text) RETURNS SETOF record + LANGUAGE plpgsql IMMUTABLE + AS $_$ +DECLARE + xpath_list TEXT[]; + select_list TEXT[]; + where_list TEXT[]; + q TEXT; + out_record RECORD; + empty_test RECORD; +BEGIN + xpath_list := STRING_TO_ARRAY( xpaths, '|' ); + + select_list := ARRAY_APPEND( select_list, key || '::INT AS key' ); + + FOR i IN 1 .. ARRAY_UPPER(xpath_list,1) LOOP + IF xpath_list[i] = 'null()' THEN + select_list := ARRAY_APPEND( select_list, 'NULL::TEXT AS c_' || i ); + ELSE + select_list := ARRAY_APPEND( + select_list, + $sel$ + unnest( + COALESCE( + NULLIF( + oils_xpath( + $sel$ || + quote_literal( + CASE + WHEN xpath_list[i] ~ $re$/[^/[]*@[^/]+$$re$ OR xpath_list[i] ~ $re$text\(\)$$re$ THEN xpath_list[i] + ELSE xpath_list[i] || '//text()' + END + ) || + $sel$, + $sel$ || document_field || $sel$ + ), + '{}'::TEXT[] + ), + '{NULL}'::TEXT[] + ) + ) AS c_$sel$ || i + ); + where_list := ARRAY_APPEND( + where_list, + 'c_' || i || ' IS NOT NULL' + ); + END IF; + END LOOP; + + q := $q$ +SELECT * FROM ( + SELECT $q$ || ARRAY_TO_STRING( select_list, ', ' ) || $q$ FROM $q$ || relation_name || $q$ WHERE ($q$ || criteria || $q$) +)x WHERE $q$ || ARRAY_TO_STRING( where_list, ' OR ' ); + -- RAISE NOTICE 'query: %', q; + + FOR out_record IN EXECUTE q LOOP + RETURN NEXT out_record; + END LOOP; + + RETURN; +END; +$_$; + + +ALTER FUNCTION evergreen.oils_xpath_table(key text, document_field text, relation_name text, xpaths text, criteria text) OWNER TO evergreen; + +-- +-- Name: oils_xpath_tag_to_table(text, text, text[]); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_xpath_tag_to_table(marc text, tag text, xpaths text[]) RETURNS SETOF record + LANGUAGE plpgsql + AS $_$ + +-- This function currently populates columns with the FIRST matching value +-- of each XPATH. It would be reasonable to add a 'return_arrays' option +-- where each column is an array of all matching values for each path, but +-- that remains as a TODO + +DECLARE + field RECORD; + output RECORD; + select_list TEXT[]; + from_list TEXT[]; + q TEXT; +BEGIN + -- setup query select + FOR i IN 1 .. ARRAY_UPPER(xpaths,1) LOOP + IF xpaths[i] = 'null()' THEN + select_list := ARRAY_APPEND(select_list, 'NULL::TEXT AS c_' || i ); + ELSE + select_list := ARRAY_APPEND(select_list, '(oils_xpath(' || + quote_literal( + CASE + WHEN xpaths[i] ~ $re$/[^/[]*@[^/]+$$re$ -- attribute + OR xpaths[i] ~ $re$text\(\)$$re$ + THEN xpaths[i] + ELSE xpaths[i] || '//text()' + END + ) || ', field_marc))[1] AS cl_' || i); + -- hardcoded to first value for each path + END IF; + END LOOP; + + -- run query over tag set + q := 'SELECT ' || ARRAY_TO_STRING(select_list, ',') + || ' FROM UNNEST(oils_xpath(' || quote_literal('//*[@tag="' || tag + || '"]') || ', ' || quote_literal(marc) || ')) AS field_marc;'; + --RAISE NOTICE '%', q; + + RETURN QUERY EXECUTE q; +END; + +$_$; + + +ALTER FUNCTION evergreen.oils_xpath_tag_to_table(marc text, tag text, xpaths text[]) OWNER TO evergreen; + +-- +-- Name: oils_xslt_process(text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION oils_xslt_process(text, text) RETURNS text + LANGUAGE plperlu IMMUTABLE STRICT + AS $_X$ + use strict; + + use XML::LibXSLT; + use XML::LibXML; + + my $doc = shift; + my $xslt = shift; + + # The following approach uses the older XML::LibXML 1.69 / XML::LibXSLT 1.68 + # methods of parsing XML documents and stylesheets, in the hopes of broader + # compatibility with distributions + my $parser = $_SHARED{'_xslt_process'}{parsers}{xml} || XML::LibXML->new(); + + # Cache the XML parser, if we do not already have one + $_SHARED{'_xslt_process'}{parsers}{xml} = $parser + unless ($_SHARED{'_xslt_process'}{parsers}{xml}); + + my $xslt_parser = $_SHARED{'_xslt_process'}{parsers}{xslt} || XML::LibXSLT->new(); + + # Cache the XSLT processor, if we do not already have one + $_SHARED{'_xslt_process'}{parsers}{xslt} = $xslt_parser + unless ($_SHARED{'_xslt_process'}{parsers}{xslt}); + + my $stylesheet = $_SHARED{'_xslt_process'}{stylesheets}{$xslt} || + $xslt_parser->parse_stylesheet( $parser->parse_string($xslt) ); + + $_SHARED{'_xslt_process'}{stylesheets}{$xslt} = $stylesheet + unless ($_SHARED{'_xslt_process'}{stylesheets}{$xslt}); + + return $stylesheet->output_string( + $stylesheet->transform( + $parser->parse_string($doc) + ) + ); + +$_X$; + + +ALTER FUNCTION evergreen.oils_xslt_process(text, text) OWNER TO evergreen; + +-- +-- Name: org_top(); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION org_top() RETURNS SETOF actor.org_unit + LANGUAGE sql STABLE ROWS 1 + AS $$ + SELECT * FROM actor.org_unit WHERE parent_ou IS NULL LIMIT 1; +$$; + + +ALTER FUNCTION evergreen.org_top() OWNER TO evergreen; + +-- +-- Name: ous_change_log(); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION ous_change_log() RETURNS trigger + LANGUAGE plpgsql + AS $$ + DECLARE + original TEXT; + BEGIN + -- Check for which setting is being updated, and log it. + SELECT INTO original value FROM actor.org_unit_setting WHERE name = NEW.name AND org_unit = NEW.org_unit; + + INSERT INTO config.org_unit_setting_type_log (org,original_value,new_value,field_name) VALUES (NEW.org_unit, original, NEW.value, NEW.name); + + RETURN NEW; + END; +$$; + + +ALTER FUNCTION evergreen.ous_change_log() OWNER TO evergreen; + +-- +-- Name: ous_delete_log(); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION ous_delete_log() RETURNS trigger + LANGUAGE plpgsql + AS $$ + DECLARE + original TEXT; + BEGIN + -- Check for which setting is being updated, and log it. + SELECT INTO original value FROM actor.org_unit_setting WHERE name = OLD.name AND org_unit = OLD.org_unit; + + INSERT INTO config.org_unit_setting_type_log (org,original_value,new_value,field_name) VALUES (OLD.org_unit, original, 'null', OLD.name); + + RETURN OLD; + END; +$$; + + +ALTER FUNCTION evergreen.ous_delete_log() OWNER TO evergreen; + +-- +-- Name: pg_statistics(text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION pg_statistics(tab text, col text) RETURNS TABLE(element text, frequency integer) + LANGUAGE plpgsql + AS $$ +BEGIN + -- This query will die on PG < 9.2, but the function can be created. We just won't use it where we can't. + RETURN QUERY + SELECT e, + f + FROM (SELECT ROW_NUMBER() OVER (), + (f * 100)::INT AS f + FROM (SELECT UNNEST(most_common_elem_freqs) AS f + FROM pg_stats + WHERE tablename = tab + AND attname = col + )x + ) AS f + JOIN (SELECT ROW_NUMBER() OVER (), + e + FROM (SELECT UNNEST(most_common_elems::text::text[]) AS e + FROM pg_stats + WHERE tablename = tab + AND attname = col + )y + ) AS elems USING (row_number); +END; +$$; + + +ALTER FUNCTION evergreen.pg_statistics(tab text, col text) OWNER TO evergreen; + +-- +-- Name: protect_reserved_rows_from_delete(); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION protect_reserved_rows_from_delete() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN +IF OLD.id < TG_ARGV[0]::INT THEN + RAISE EXCEPTION 'Cannot delete row with reserved ID %', OLD.id; +END IF; +RETURN OLD; +END +$$; + + +ALTER FUNCTION evergreen.protect_reserved_rows_from_delete() OWNER TO evergreen; + +-- +-- Name: query_int_wrapper(integer[], text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION query_int_wrapper(integer[], text) RETURNS boolean + LANGUAGE plpgsql STABLE + AS $_$ +BEGIN + RETURN $1 @@ $2::query_int; +END; +$_$; + + +ALTER FUNCTION evergreen.query_int_wrapper(integer[], text) OWNER TO evergreen; + +-- +-- Name: rank_cp(asset.copy); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION rank_cp(copy asset.copy) RETURNS integer + LANGUAGE plpgsql STABLE + AS $$ +DECLARE + rank INT; +BEGIN + WITH totally_available AS ( + SELECT id, 0 AS avail_rank + FROM config.copy_status + WHERE opac_visible IS TRUE + AND copy_active IS TRUE + AND id != 1 -- "Checked out" + ), almost_available AS ( + SELECT id, 10 AS avail_rank + FROM config.copy_status + WHERE holdable IS TRUE + AND opac_visible IS TRUE + AND copy_active IS FALSE + OR id = 1 -- "Checked out" + ) + SELECT COALESCE( + CASE WHEN NOT copy.opac_visible THEN 100 END, + (SELECT avail_rank FROM totally_available WHERE copy.status IN (id)), + CASE WHEN copy.holdable THEN + (SELECT avail_rank FROM almost_available WHERE copy.status IN (id)) + END, + 100 + ) INTO rank; + + RETURN rank; +END; +$$; + + +ALTER FUNCTION evergreen.rank_cp(copy asset.copy) OWNER TO evergreen; + +-- +-- Name: rank_cp(bigint); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION rank_cp(copy_id bigint) RETURNS integer + LANGUAGE plpgsql STABLE + AS $$ +DECLARE + copy asset.copy%ROWTYPE; +BEGIN + SELECT * INTO copy FROM asset.copy WHERE id = copy_id; + RETURN evergreen.rank_cp(copy); +END; +$$; + + +ALTER FUNCTION evergreen.rank_cp(copy_id bigint) OWNER TO evergreen; + +-- +-- Name: rank_ou(integer, integer, integer); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION rank_ou(lib integer, search_lib integer, pref_lib integer DEFAULT NULL::integer) RETURNS integer + LANGUAGE sql STABLE + AS $_$ + SELECT COALESCE( + + -- lib matches search_lib + (SELECT CASE WHEN $1 = $2 THEN -20000 END), + + -- lib matches pref_lib + (SELECT CASE WHEN $1 = $3 THEN -10000 END), + + + -- pref_lib is a child of search_lib and lib is a child of pref lib. + -- For example, searching CONS, pref lib is SYS1, + -- copies at BR1 and BR2 sort to the front. + (SELECT distance - 5000 + FROM actor.org_unit_descendants_distance($3) + WHERE id = $1 AND $3 IN ( + SELECT id FROM actor.org_unit_descendants($2))), + + -- lib is a child of search_lib + (SELECT distance FROM actor.org_unit_descendants_distance($2) WHERE id = $1), + + -- all others pay cash + 1000 + ); +$_$; + + +ALTER FUNCTION evergreen.rank_ou(lib integer, search_lib integer, pref_lib integer) OWNER TO evergreen; + +-- +-- Name: ranked_volumes(bigint[], integer, integer, public.hstore, public.hstore, integer, text[]); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION ranked_volumes(bibid bigint[], ouid integer, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, pref_lib integer DEFAULT NULL::integer, includes text[] DEFAULT NULL::text[]) RETURNS TABLE(id bigint, name text, label_sortkey text, rank bigint) + LANGUAGE sql STABLE ROWS 10 + AS $_$ + WITH RECURSIVE ou_depth AS ( + SELECT COALESCE( + $3, + ( + SELECT depth + FROM actor.org_unit_type aout + INNER JOIN actor.org_unit ou ON ou_type = aout.id + WHERE ou.id = $2 + ) + ) AS depth + ), descendant_depth AS ( + SELECT ou.id, + ou.parent_ou, + out.depth + FROM actor.org_unit ou + JOIN actor.org_unit_type out ON (out.id = ou.ou_type) + JOIN anscestor_depth ad ON (ad.id = ou.id), + ou_depth + WHERE ad.depth = ou_depth.depth + UNION ALL + SELECT ou.id, + ou.parent_ou, + out.depth + FROM actor.org_unit ou + JOIN actor.org_unit_type out ON (out.id = ou.ou_type) + JOIN descendant_depth ot ON (ot.id = ou.parent_ou) + ), anscestor_depth AS ( + SELECT ou.id, + ou.parent_ou, + out.depth + FROM actor.org_unit ou + JOIN actor.org_unit_type out ON (out.id = ou.ou_type) + WHERE ou.id = $2 + UNION ALL + SELECT ou.id, + ou.parent_ou, + out.depth + FROM actor.org_unit ou + JOIN actor.org_unit_type out ON (out.id = ou.ou_type) + JOIN anscestor_depth ot ON (ot.parent_ou = ou.id) + ), descendants as ( + SELECT ou.* FROM actor.org_unit ou JOIN descendant_depth USING (id) + ) + + SELECT ua.id, ua.name, ua.label_sortkey, MIN(ua.rank) AS rank FROM ( + SELECT acn.id, aou.name, acn.label_sortkey, + evergreen.rank_cp(acp), + RANK() OVER w + FROM asset.call_number acn + JOIN asset.copy acp ON (acn.id = acp.call_number) + JOIN descendants AS aou ON (acp.circ_lib = aou.id) + WHERE acn.record = ANY ($1) + AND acn.deleted IS FALSE + AND acp.deleted IS FALSE + AND CASE WHEN ('exclude_invisible_acn' = ANY($7)) THEN + EXISTS ( + SELECT 1 + FROM asset.opac_visible_copies + WHERE copy_id = acp.id AND record = acn.record + ) ELSE TRUE END + GROUP BY acn.id, evergreen.rank_cp(acp), aou.name, acn.label_sortkey, aou.id + WINDOW w AS ( + ORDER BY + COALESCE( + CASE WHEN aou.id = $2 THEN -20000 END, + CASE WHEN aou.id = $6 THEN -10000 END, + (SELECT distance - 5000 + FROM actor.org_unit_descendants_distance($6) as x + WHERE x.id = aou.id AND $6 IN ( + SELECT q.id FROM actor.org_unit_descendants($2) as q)), + (SELECT e.distance FROM actor.org_unit_descendants_distance($2) as e WHERE e.id = aou.id), + 1000 + ), + evergreen.rank_cp(acp) + ) + ) AS ua + GROUP BY ua.id, ua.name, ua.label_sortkey + ORDER BY rank, ua.name, ua.label_sortkey + LIMIT ($4 -> 'acn')::INT + OFFSET ($5 -> 'acn')::INT; +$_$; + + +ALTER FUNCTION evergreen.ranked_volumes(bibid bigint[], ouid integer, depth integer, slimit public.hstore, soffset public.hstore, pref_lib integer, includes text[]) OWNER TO evergreen; + +-- +-- Name: ranked_volumes(bigint, integer, integer, public.hstore, public.hstore, integer, text[]); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION ranked_volumes(bibid bigint, ouid integer, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, pref_lib integer DEFAULT NULL::integer, includes text[] DEFAULT NULL::text[]) RETURNS TABLE(id bigint, name text, label_sortkey text, rank bigint) + LANGUAGE sql STABLE + AS $_$ SELECT * FROM evergreen.ranked_volumes(ARRAY[$1],$2,$3,$4,$5,$6,$7) $_$; + + +ALTER FUNCTION evergreen.ranked_volumes(bibid bigint, ouid integer, depth integer, slimit public.hstore, soffset public.hstore, pref_lib integer, includes text[]) OWNER TO evergreen; + +-- +-- Name: regexp_split_to_array(text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION regexp_split_to_array(text, text) RETURNS text[] + LANGUAGE plperlu IMMUTABLE STRICT + AS $_X$ + return encode_array_literal([split $_[1], $_[0]]); +$_X$; + + +ALTER FUNCTION evergreen.regexp_split_to_array(text, text) OWNER TO evergreen; + +-- +-- Name: rel_bump(text[], text, text[], numeric[]); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION rel_bump(terms text[], value text, bumps text[], mults numeric[]) RETURNS numeric + LANGUAGE plperlu IMMUTABLE STRICT + AS $_$ +use strict; +my ($terms,$value,$bumps,$mults) = @_; + +my $retval = 1; + +for (my $id = 0; $id < @$bumps; $id++) { + if ($bumps->[$id] eq 'first_word') { + $retval *= $mults->[$id] if ($value =~ /^$terms->[0]/); + } elsif ($bumps->[$id] eq 'full_match') { + my $fullmatch = join(' ', @$terms); + $retval *= $mults->[$id] if ($value =~ /^$fullmatch$/); + } elsif ($bumps->[$id] eq 'word_order') { + my $wordorder = join('.*', @$terms); + $retval *= $mults->[$id] if ($value =~ /$wordorder/); + } +} +return $retval; +$_$; + + +ALTER FUNCTION evergreen.rel_bump(terms text[], value text, bumps text[], mults numeric[]) OWNER TO evergreen; + +-- +-- Name: tableoid2name(oid); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION tableoid2name(oid) RETURNS text + LANGUAGE plpgsql + AS $_$ + BEGIN + RETURN $1::regclass; + END; +$_$; + + +ALTER FUNCTION evergreen.tableoid2name(oid) OWNER TO evergreen; + +-- +-- Name: upgrade_deps_block_check(text, text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION upgrade_deps_block_check(my_db_patch text, my_applied_to text) RETURNS boolean + LANGUAGE plpgsql + AS $$ +DECLARE + deprecates TEXT; + supersedes TEXT; +BEGIN + IF NOT evergreen.upgrade_verify_no_dep_conflicts( my_db_patch ) THEN + SELECT STRING_AGG(patch, ', ') INTO deprecates FROM evergreen.upgrade_list_applied_deprecates(my_db_patch); + SELECT STRING_AGG(patch, ', ') INTO supersedes FROM evergreen.upgrade_list_applied_supersedes(my_db_patch); + RAISE EXCEPTION ' +Upgrade script % can not be applied: + applied deprecated scripts % + applied superseded scripts % + deprecated by % + superseded by %', + my_db_patch, + (SELECT ARRAY_AGG(patch) FROM evergreen.upgrade_list_applied_deprecates(my_db_patch)), + (SELECT ARRAY_AGG(patch) FROM evergreen.upgrade_list_applied_supersedes(my_db_patch)), + evergreen.upgrade_list_applied_deprecated(my_db_patch), + evergreen.upgrade_list_applied_superseded(my_db_patch); + END IF; + + INSERT INTO config.upgrade_log (version, applied_to) VALUES (my_db_patch, my_applied_to); + RETURN TRUE; +END; +$$; + + +ALTER FUNCTION evergreen.upgrade_deps_block_check(my_db_patch text, my_applied_to text) OWNER TO evergreen; + +-- +-- Name: upgrade_list_applied_deprecated(text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION upgrade_list_applied_deprecated(my_db_patch text) RETURNS SETOF text + LANGUAGE sql + AS $_$ + SELECT db_patch + FROM config.db_patch_dependencies + WHERE ARRAY[$1]::TEXT[] && deprecates +$_$; + + +ALTER FUNCTION evergreen.upgrade_list_applied_deprecated(my_db_patch text) OWNER TO evergreen; + +-- +-- Name: upgrade_list_applied_deprecates(text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION upgrade_list_applied_deprecates(my_db_patch text) RETURNS SETOF patch + LANGUAGE sql + AS $_$ + SELECT DISTINCT l.version + FROM config.upgrade_log l + JOIN config.db_patch_dependencies d ON (l.version = ANY(d.deprecates)) + WHERE d.db_patch = $1 +$_$; + + +ALTER FUNCTION evergreen.upgrade_list_applied_deprecates(my_db_patch text) OWNER TO evergreen; + +-- +-- Name: upgrade_list_applied_superseded(text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION upgrade_list_applied_superseded(my_db_patch text) RETURNS SETOF text + LANGUAGE sql + AS $_$ + SELECT db_patch + FROM config.db_patch_dependencies + WHERE ARRAY[$1]::TEXT[] && supersedes +$_$; + + +ALTER FUNCTION evergreen.upgrade_list_applied_superseded(my_db_patch text) OWNER TO evergreen; + +-- +-- Name: upgrade_list_applied_supersedes(text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION upgrade_list_applied_supersedes(my_db_patch text) RETURNS SETOF patch + LANGUAGE sql + AS $_$ + SELECT DISTINCT l.version + FROM config.upgrade_log l + JOIN config.db_patch_dependencies d ON (l.version = ANY(d.supersedes)) + WHERE d.db_patch = $1 +$_$; + + +ALTER FUNCTION evergreen.upgrade_list_applied_supersedes(my_db_patch text) OWNER TO evergreen; + +-- +-- Name: upgrade_verify_no_dep_conflicts(text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION upgrade_verify_no_dep_conflicts(my_db_patch text) RETURNS boolean + LANGUAGE sql + AS $_$ + SELECT COUNT(*) = 0 + FROM (SELECT * FROM evergreen.upgrade_list_applied_deprecates( $1 ) + UNION + SELECT * FROM evergreen.upgrade_list_applied_supersedes( $1 ) + UNION + SELECT * FROM evergreen.upgrade_list_applied_deprecated( $1 ) + UNION + SELECT * FROM evergreen.upgrade_list_applied_superseded( $1 ))x +$_$; + + +ALTER FUNCTION evergreen.upgrade_verify_no_dep_conflicts(my_db_patch text) OWNER TO evergreen; + +-- +-- Name: xml_escape(text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION xml_escape(str text) RETURNS text + LANGUAGE sql IMMUTABLE + AS $_$ + SELECT REPLACE(REPLACE(REPLACE($1, + '&', '&'), + '<', '<'), + '>', '>'); +$_$; + + +ALTER FUNCTION evergreen.xml_escape(str text) OWNER TO evergreen; + +-- +-- Name: xml_famous5_to_text(text); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION xml_famous5_to_text(text) RETURNS text + LANGUAGE sql IMMUTABLE + AS $_$ + SELECT REPLACE( + REPLACE( + REPLACE( + REPLACE( + REPLACE( $1, '<', '<'), + '>', + '>' + ), + ''', + $$'$$ + ), -- ' ... vim + '"', + '"' + ), + '&', + '&' + ); +$_$; + + +ALTER FUNCTION evergreen.xml_famous5_to_text(text) OWNER TO evergreen; + +-- +-- Name: xml_pretty_print(xml); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION xml_pretty_print(input xml) RETURNS xml + LANGUAGE sql + AS $_$ +SELECT xslt_process($1::text, +$$ + + + + + + + + +$$::text)::XML +$_$; + + +ALTER FUNCTION evergreen.xml_pretty_print(input xml) OWNER TO evergreen; + +-- +-- Name: FUNCTION xml_pretty_print(input xml); Type: COMMENT; Schema: evergreen; Owner: evergreen +-- + +COMMENT ON FUNCTION xml_pretty_print(input xml) IS 'Simple pretty printer for XML, as written by Andrew Dunstan at http://goo.gl/zBHIk'; + + +-- +-- Name: z3950_attr_name_is_valid(); Type: FUNCTION; Schema: evergreen; Owner: evergreen +-- + +CREATE FUNCTION z3950_attr_name_is_valid() RETURNS trigger + LANGUAGE plpgsql STABLE + AS $$ + BEGIN + + PERFORM * FROM config.z3950_attr WHERE name = NEW.z3950_attr_type; + + IF FOUND THEN + RETURN NULL; + END IF; + + RAISE EXCEPTION '% is not a valid Z39.50 attribute type', NEW.z3950_attr_type; + + END; +$$; + + +ALTER FUNCTION evergreen.z3950_attr_name_is_valid() OWNER TO evergreen; + +-- +-- Name: FUNCTION z3950_attr_name_is_valid(); Type: COMMENT; Schema: evergreen; Owner: evergreen +-- + +COMMENT ON FUNCTION z3950_attr_name_is_valid() IS ' +Used by a config.z3950_index_field_map constraint trigger +to verify z3950_attr_type maps. +'; + + +SET search_path = metabib, pg_catalog; + +-- +-- Name: autosuggest_prepare_tsquery(text); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION autosuggest_prepare_tsquery(orig text) RETURNS text[] + LANGUAGE plpgsql + AS $_$ +DECLARE + orig_ended_in_space BOOLEAN; + result RECORD; + plain TEXT; + normalized TEXT; +BEGIN + orig_ended_in_space := orig ~ E'\\s$'; + + orig := ARRAY_TO_STRING( + evergreen.regexp_split_to_array(orig, E'\\W+'), ' ' + ); + + normalized := public.naco_normalize(orig); -- also trim()s + plain := trim(orig); + + IF NOT orig_ended_in_space THEN + plain := plain || ':*'; + normalized := normalized || ':*'; + END IF; + + plain := ARRAY_TO_STRING( + evergreen.regexp_split_to_array(plain, E'\\s+'), ' & ' + ); + normalized := ARRAY_TO_STRING( + evergreen.regexp_split_to_array(normalized, E'\\s+'), ' & ' + ); + + RETURN ARRAY[normalized, plain]; +END; +$_$; + + +ALTER FUNCTION metabib.autosuggest_prepare_tsquery(orig text) OWNER TO evergreen; + +-- +-- Name: browse(integer[], text, integer, integer, boolean, bigint, integer); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION browse(search_field integer[], browse_term text, context_org integer DEFAULT NULL::integer, context_loc_group integer DEFAULT NULL::integer, staff boolean DEFAULT false, pivot_id bigint DEFAULT NULL::bigint, result_limit integer DEFAULT 10) RETURNS SETOF flat_browse_entry_appearance + LANGUAGE plpgsql + AS $$ +DECLARE + core_query TEXT; + back_query TEXT; + forward_query TEXT; + pivot_sort_value TEXT; + pivot_sort_fallback TEXT; + context_locations INT[]; + browse_superpage_size INT; + results_skipped INT := 0; + back_limit INT; + back_to_pivot INT; + forward_limit INT; + forward_to_pivot INT; +BEGIN + -- First, find the pivot if we were given a browse term but not a pivot. + IF pivot_id IS NULL THEN + pivot_id := metabib.browse_pivot(search_field, browse_term); + END IF; + + SELECT INTO pivot_sort_value, pivot_sort_fallback + sort_value, value FROM metabib.browse_entry WHERE id = pivot_id; + + -- Bail if we couldn't find a pivot. + IF pivot_sort_value IS NULL THEN + RETURN; + END IF; + + -- Transform the context_loc_group argument (if any) (logc at the + -- TPAC layer) into a form we'll be able to use. + IF context_loc_group IS NOT NULL THEN + SELECT INTO context_locations ARRAY_AGG(location) + FROM asset.copy_location_group_map + WHERE lgroup = context_loc_group; + END IF; + + -- Get the configured size of browse superpages. + SELECT INTO browse_superpage_size value -- NULL ok + FROM config.global_flag + WHERE enabled AND name = 'opac.browse.holdings_visibility_test_limit'; + + -- First we're going to search backward from the pivot, then we're going + -- to search forward. In each direction, we need two limits. At the + -- lesser of the two limits, we delineate the edge of the result set + -- we're going to return. At the greater of the two limits, we find the + -- pivot value that would represent an offset from the current pivot + -- at a distance of one "page" in either direction, where a "page" is a + -- result set of the size specified in the "result_limit" argument. + -- + -- The two limits in each direction make four derived values in total, + -- and we calculate them now. + back_limit := CEIL(result_limit::FLOAT / 2); + back_to_pivot := result_limit; + forward_limit := result_limit / 2; + forward_to_pivot := result_limit - 1; + + -- This is the meat of the SQL query that finds browse entries. We'll + -- pass this to a function which uses it with a cursor, so that individual + -- rows may be fetched in a loop until some condition is satisfied, without + -- waiting for a result set of fixed size to be collected all at once. + core_query := ' +SELECT mbe.id, + mbe.value, + mbe.sort_value + FROM metabib.browse_entry mbe + WHERE ( + EXISTS ( -- are there any bibs using this mbe via the requested fields? + SELECT 1 + FROM metabib.browse_entry_def_map mbedm + WHERE mbedm.entry = mbe.id AND mbedm.def = ANY(' || quote_literal(search_field) || ') + LIMIT 1 + ) OR EXISTS ( -- are there any authorities using this mbe via the requested fields? + SELECT 1 + FROM metabib.browse_entry_simple_heading_map mbeshm + JOIN authority.simple_heading ash ON ( mbeshm.simple_heading = ash.id ) + JOIN authority.control_set_auth_field_metabib_field_map_refs map ON ( + ash.atag = map.authority_field + AND map.metabib_field = ANY(' || quote_literal(search_field) || ') + ) + WHERE mbeshm.entry = mbe.id + ) + ) AND '; + + -- This is the variant of the query for browsing backward. + back_query := core_query || + ' mbe.sort_value <= ' || quote_literal(pivot_sort_value) || + ' ORDER BY mbe.sort_value DESC, mbe.value DESC '; + + -- This variant browses forward. + forward_query := core_query || + ' mbe.sort_value > ' || quote_literal(pivot_sort_value) || + ' ORDER BY mbe.sort_value, mbe.value '; + + -- We now call the function which applies a cursor to the provided + -- queries, stopping at the appropriate limits and also giving us + -- the next page's pivot. + RETURN QUERY + SELECT * FROM metabib.staged_browse( + back_query, search_field, context_org, context_locations, + staff, browse_superpage_size, TRUE, back_limit, back_to_pivot + ) UNION + SELECT * FROM metabib.staged_browse( + forward_query, search_field, context_org, context_locations, + staff, browse_superpage_size, FALSE, forward_limit, forward_to_pivot + ) ORDER BY row_number DESC; + +END; +$$; + + +ALTER FUNCTION metabib.browse(search_field integer[], browse_term text, context_org integer, context_loc_group integer, staff boolean, pivot_id bigint, result_limit integer) OWNER TO evergreen; + +-- +-- Name: browse(text, text, integer, integer, boolean, bigint, integer); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION browse(search_class text, browse_term text, context_org integer DEFAULT NULL::integer, context_loc_group integer DEFAULT NULL::integer, staff boolean DEFAULT false, pivot_id bigint DEFAULT NULL::bigint, result_limit integer DEFAULT 10) RETURNS SETOF flat_browse_entry_appearance + LANGUAGE plpgsql + AS $$ +BEGIN + RETURN QUERY SELECT * FROM metabib.browse( + (SELECT COALESCE(ARRAY_AGG(id), ARRAY[]::INT[]) + FROM config.metabib_field WHERE field_class = search_class), + browse_term, + context_org, + context_loc_group, + staff, + pivot_id, + result_limit + ); +END; +$$; + + +ALTER FUNCTION metabib.browse(search_class text, browse_term text, context_org integer, context_loc_group integer, staff boolean, pivot_id bigint, result_limit integer) OWNER TO evergreen; + +-- +-- Name: browse_authority_pivot(integer[], text); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION browse_authority_pivot(integer[], text) RETURNS bigint + LANGUAGE sql STABLE + AS $_$ + SELECT mbe.id + FROM metabib.browse_entry mbe + JOIN metabib.browse_entry_simple_heading_map mbeshm ON ( mbeshm.entry = mbe.id ) + JOIN authority.simple_heading ash ON ( mbeshm.simple_heading = ash.id ) + JOIN authority.control_set_auth_field_metabib_field_map_refs map ON ( + ash.atag = map.authority_field + AND map.metabib_field = ANY($1) + ) + WHERE mbe.sort_value >= public.naco_normalize($2) + ORDER BY mbe.sort_value, mbe.value LIMIT 1; +$_$; + + +ALTER FUNCTION metabib.browse_authority_pivot(integer[], text) OWNER TO evergreen; + +-- +-- Name: browse_authority_refs_pivot(integer[], text); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION browse_authority_refs_pivot(integer[], text) RETURNS bigint + LANGUAGE sql STABLE + AS $_$ + SELECT mbe.id + FROM metabib.browse_entry mbe + JOIN metabib.browse_entry_simple_heading_map mbeshm ON ( mbeshm.entry = mbe.id ) + JOIN authority.simple_heading ash ON ( mbeshm.simple_heading = ash.id ) + JOIN authority.control_set_auth_field_metabib_field_map_refs_only map ON ( + ash.atag = map.authority_field + AND map.metabib_field = ANY($1) + ) + WHERE mbe.sort_value >= public.naco_normalize($2) + ORDER BY mbe.sort_value, mbe.value LIMIT 1; +$_$; + + +ALTER FUNCTION metabib.browse_authority_refs_pivot(integer[], text) OWNER TO evergreen; + +-- +-- Name: browse_bib_pivot(integer[], text); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION browse_bib_pivot(integer[], text) RETURNS bigint + LANGUAGE sql STABLE + AS $_$ + SELECT mbe.id + FROM metabib.browse_entry mbe + JOIN metabib.browse_entry_def_map mbedm ON ( + mbedm.entry = mbe.id + AND mbedm.def = ANY($1) + ) + WHERE mbe.sort_value >= public.naco_normalize($2) + ORDER BY mbe.sort_value, mbe.value LIMIT 1; +$_$; + + +ALTER FUNCTION metabib.browse_bib_pivot(integer[], text) OWNER TO evergreen; + +-- +-- Name: browse_normalize(text, integer); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION browse_normalize(facet_text text, mapped_field integer) RETURNS text + LANGUAGE plpgsql + AS $$ +DECLARE + normalizer RECORD; +BEGIN + + FOR normalizer IN + SELECT n.func AS func, + n.param_count AS param_count, + m.params AS params + FROM config.index_normalizer n + JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id) + WHERE m.field = mapped_field AND m.pos < 0 + ORDER BY m.pos LOOP + + EXECUTE 'SELECT ' || normalizer.func || '(' || + quote_literal( facet_text ) || + CASE + WHEN normalizer.param_count > 0 + THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'') + ELSE '' + END || + ')' INTO facet_text; + + END LOOP; + + RETURN facet_text; +END; + +$$; + + +ALTER FUNCTION metabib.browse_normalize(facet_text text, mapped_field integer) OWNER TO evergreen; + +-- +-- Name: browse_pivot(integer[], text); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION browse_pivot(integer[], text) RETURNS bigint + LANGUAGE sql STABLE + AS $_$ + SELECT id FROM metabib.browse_entry + WHERE id IN ( + metabib.browse_bib_pivot($1, $2), + metabib.browse_authority_refs_pivot($1,$2) -- only look in 4xx, 5xx, 7xx of authority + ) + ORDER BY sort_value, value LIMIT 1; +$_$; + + +ALTER FUNCTION metabib.browse_pivot(integer[], text) OWNER TO evergreen; + +-- +-- Name: compile_composite_attr(integer); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION compile_composite_attr(cattr_id integer) RETURNS public.query_int + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT metabib.compile_composite_attr(definition) FROM config.composite_attr_entry_definition WHERE coded_value = $1; +$_$; + + +ALTER FUNCTION metabib.compile_composite_attr(cattr_id integer) OWNER TO evergreen; + +-- +-- Name: compile_composite_attr(text); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION compile_composite_attr(cattr_def text) RETURNS public.query_int + LANGUAGE plperlu IMMUTABLE + AS $_X$ + + use JSON::XS; + + my $json = shift; + my $def = decode_json($json); + + die("Composite attribute definition not supplied") unless $def; + + my $_cache = (exists $_SHARED{metabib_compile_composite_attr_cache}) ? 1 : 0; + + return $_SHARED{metabib_compile_composite_attr_cache}{$json} + if ($_cache && $_SHARED{metabib_compile_composite_attr_cache}{$json}); + + sub recurse { + my $d = shift; + my $j = '&'; + my @list; + + if (ref $d eq 'HASH') { # node or AND + if (exists $d->{_attr}) { # it is a node + my $plan = spi_prepare('SELECT * FROM metabib.full_attr_id_map WHERE attr = $1 AND value = $2', qw/TEXT TEXT/); + my $id = spi_exec_prepared( + $plan, {limit => 1}, $d->{_attr}, $d->{_val} + )->{rows}[0]{id}; + spi_freeplan($plan); + return $id; + } elsif (exists $d->{_not} && scalar(keys(%$d)) == 1) { # it is a NOT + return '!' . recurse($$d{_not}); + } else { # an AND list + @list = map { recurse($$d{$_}) } sort keys %$d; + } + } elsif (ref $d eq 'ARRAY') { + $j = '|'; + @list = map { recurse($_) } @$d; + } + + @list = grep { defined && $_ ne '' } @list; + + return '(' . join($j,@list) . ')' if @list; + return ''; + } + + my $val = recurse($def) || undef; + $_SHARED{metabib_compile_composite_attr_cache}{$json} = $val if $_cache; + return $val; + +$_X$; + + +ALTER FUNCTION metabib.compile_composite_attr(cattr_def text) OWNER TO evergreen; + +-- +-- Name: compile_composite_attr_cache_disable(); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION compile_composite_attr_cache_disable() RETURNS boolean + LANGUAGE plperlu + AS $_X$ + delete $_SHARED{metabib_compile_composite_attr_cache}; + return ! exists $_SHARED{metabib_compile_composite_attr_cache}; +$_X$; + + +ALTER FUNCTION metabib.compile_composite_attr_cache_disable() OWNER TO evergreen; + +-- +-- Name: compile_composite_attr_cache_init(); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION compile_composite_attr_cache_init() RETURNS boolean + LANGUAGE plperlu + AS $_X$ + $_SHARED{metabib_compile_composite_attr_cache} = {} + if ! exists $_SHARED{metabib_compile_composite_attr_cache}; + return exists $_SHARED{metabib_compile_composite_attr_cache}; +$_X$; + + +ALTER FUNCTION metabib.compile_composite_attr_cache_init() OWNER TO evergreen; + +-- +-- Name: compile_composite_attr_cache_invalidate(); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION compile_composite_attr_cache_invalidate() RETURNS boolean + LANGUAGE sql + AS $$ + SELECT metabib.compile_composite_attr_cache_disable() AND metabib.compile_composite_attr_cache_init(); +$$; + + +ALTER FUNCTION metabib.compile_composite_attr_cache_invalidate() OWNER TO evergreen; + +-- +-- Name: composite_attr_def_cache_inval_tgr(); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION composite_attr_def_cache_inval_tgr() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + PERFORM metabib.compile_composite_attr_cache_invalidate(); + RETURN NULL; +END; +$$; + + +ALTER FUNCTION metabib.composite_attr_def_cache_inval_tgr() OWNER TO evergreen; + +-- +-- Name: facet_normalize_trigger(); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION facet_normalize_trigger() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + normalizer RECORD; + facet_text TEXT; +BEGIN + facet_text := NEW.value; + + FOR normalizer IN + SELECT n.func AS func, + n.param_count AS param_count, + m.params AS params + FROM config.index_normalizer n + JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id) + WHERE m.field = NEW.field AND m.pos < 0 + ORDER BY m.pos LOOP + + EXECUTE 'SELECT ' || normalizer.func || '(' || + quote_literal( facet_text ) || + CASE + WHEN normalizer.param_count > 0 + THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'') + ELSE '' + END || + ')' INTO facet_text; + + END LOOP; + + NEW.value = facet_text; + + RETURN NEW; +END; +$$; + + +ALTER FUNCTION metabib.facet_normalize_trigger() OWNER TO evergreen; + +-- +-- Name: reingest_metabib_field_entries(bigint, boolean, boolean, boolean); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION reingest_metabib_field_entries(bib_id bigint, skip_facet boolean DEFAULT false, skip_browse boolean DEFAULT false, skip_search boolean DEFAULT false) RETURNS void + LANGUAGE plpgsql + AS $_X$ +DECLARE + fclass RECORD; + ind_data metabib.field_entry_template%ROWTYPE; + mbe_row metabib.browse_entry%ROWTYPE; + mbe_id BIGINT; + b_skip_facet BOOL; + b_skip_browse BOOL; + b_skip_search BOOL; + value_prepped TEXT; +BEGIN + + SELECT COALESCE(NULLIF(skip_facet, FALSE), EXISTS (SELECT enabled FROM config.internal_flag WHERE name = 'ingest.skip_facet_indexing' AND enabled)) INTO b_skip_facet; + SELECT COALESCE(NULLIF(skip_browse, FALSE), EXISTS (SELECT enabled FROM config.internal_flag WHERE name = 'ingest.skip_browse_indexing' AND enabled)) INTO b_skip_browse; + SELECT COALESCE(NULLIF(skip_search, FALSE), EXISTS (SELECT enabled FROM config.internal_flag WHERE name = 'ingest.skip_search_indexing' AND enabled)) INTO b_skip_search; + + PERFORM * FROM config.internal_flag WHERE name = 'ingest.assume_inserts_only' AND enabled; + IF NOT FOUND THEN + IF NOT b_skip_search THEN + FOR fclass IN SELECT * FROM config.metabib_class LOOP + -- RAISE NOTICE 'Emptying out %', fclass.name; + EXECUTE $$DELETE FROM metabib.$$ || fclass.name || $$_field_entry WHERE source = $$ || bib_id; + END LOOP; + END IF; + IF NOT b_skip_facet THEN + DELETE FROM metabib.facet_entry WHERE source = bib_id; + END IF; + IF NOT b_skip_browse THEN + DELETE FROM metabib.browse_entry_def_map WHERE source = bib_id; + END IF; + END IF; + + FOR ind_data IN SELECT * FROM biblio.extract_metabib_field_entry( bib_id ) LOOP + + -- don't store what has been normalized away + CONTINUE WHEN ind_data.value IS NULL; + + IF ind_data.field < 0 THEN + ind_data.field = -1 * ind_data.field; + END IF; + + IF ind_data.facet_field AND NOT b_skip_facet THEN + INSERT INTO metabib.facet_entry (field, source, value) + VALUES (ind_data.field, ind_data.source, ind_data.value); + END IF; + + IF ind_data.browse_field AND NOT b_skip_browse THEN + -- A caveat about this SELECT: this should take care of replacing + -- old mbe rows when data changes, but not if normalization (by + -- which I mean specifically the output of + -- evergreen.oils_tsearch2()) changes. It may or may not be + -- expensive to add a comparison of index_vector to index_vector + -- to the WHERE clause below. + + CONTINUE WHEN ind_data.sort_value IS NULL; + + value_prepped := metabib.browse_normalize(ind_data.value, ind_data.field); + SELECT INTO mbe_row * FROM metabib.browse_entry + WHERE value = value_prepped AND sort_value = ind_data.sort_value; + + IF FOUND THEN + mbe_id := mbe_row.id; + ELSE + INSERT INTO metabib.browse_entry + ( value, sort_value ) VALUES + ( value_prepped, ind_data.sort_value ); + + mbe_id := CURRVAL('metabib.browse_entry_id_seq'::REGCLASS); + END IF; + + INSERT INTO metabib.browse_entry_def_map (entry, def, source, authority) + VALUES (mbe_id, ind_data.field, ind_data.source, ind_data.authority); + END IF; + + IF ind_data.search_field AND NOT b_skip_search THEN + -- Avoid inserting duplicate rows + EXECUTE 'SELECT 1 FROM metabib.' || ind_data.field_class || + '_field_entry WHERE field = $1 AND source = $2 AND value = $3' + INTO mbe_id USING ind_data.field, ind_data.source, ind_data.value; + -- RAISE NOTICE 'Search for an already matching row returned %', mbe_id; + IF mbe_id IS NULL THEN + EXECUTE $$ + INSERT INTO metabib.$$ || ind_data.field_class || $$_field_entry (field, source, value) + VALUES ($$ || + quote_literal(ind_data.field) || $$, $$ || + quote_literal(ind_data.source) || $$, $$ || + quote_literal(ind_data.value) || + $$);$$; + END IF; + END IF; + + END LOOP; + + IF NOT b_skip_search THEN + PERFORM metabib.update_combined_index_vectors(bib_id); + END IF; + + RETURN; +END; +$_X$; + + +ALTER FUNCTION metabib.reingest_metabib_field_entries(bib_id bigint, skip_facet boolean, skip_browse boolean, skip_search boolean) OWNER TO evergreen; + +-- +-- Name: reingest_metabib_full_rec(bigint); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION reingest_metabib_full_rec(bib_id bigint) RETURNS void + LANGUAGE plpgsql + AS $$ +BEGIN + PERFORM * FROM config.internal_flag WHERE name = 'ingest.assume_inserts_only' AND enabled; + IF NOT FOUND THEN + DELETE FROM metabib.real_full_rec WHERE record = bib_id; + END IF; + INSERT INTO metabib.real_full_rec (record, tag, ind1, ind2, subfield, value) + SELECT record, tag, ind1, ind2, subfield, value FROM biblio.flatten_marc( bib_id ); + + RETURN; +END; +$$; + + +ALTER FUNCTION metabib.reingest_metabib_full_rec(bib_id bigint) OWNER TO evergreen; + +-- +-- Name: reingest_record_attributes(bigint, text[], text, boolean); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION reingest_record_attributes(rid bigint, pattr_list text[] DEFAULT NULL::text[], prmarc text DEFAULT NULL::text, rdeleted boolean DEFAULT true) RETURNS void + LANGUAGE plpgsql + AS $$ +DECLARE + transformed_xml TEXT; + rmarc TEXT := prmarc; + tmp_val TEXT; + prev_xfrm TEXT; + normalizer RECORD; + xfrm config.xml_transform%ROWTYPE; + attr_vector INT[] := '{}'::INT[]; + attr_vector_tmp INT[]; + attr_list TEXT[] := pattr_list; + attr_value TEXT[]; + norm_attr_value TEXT[]; + tmp_xml TEXT; + attr_def config.record_attr_definition%ROWTYPE; + ccvm_row config.coded_value_map%ROWTYPE; +BEGIN + + IF attr_list IS NULL OR rdeleted THEN -- need to do the full dance on INSERT or undelete + SELECT ARRAY_AGG(name) INTO attr_list FROM config.record_attr_definition; + END IF; + + IF rmarc IS NULL THEN + SELECT marc INTO rmarc FROM biblio.record_entry WHERE id = rid; + END IF; + + FOR attr_def IN SELECT * FROM config.record_attr_definition WHERE NOT composite AND name = ANY( attr_list ) ORDER BY format LOOP + + attr_value := '{}'::TEXT[]; + norm_attr_value := '{}'::TEXT[]; + attr_vector_tmp := '{}'::INT[]; + + SELECT * INTO ccvm_row FROM config.coded_value_map c WHERE c.ctype = attr_def.name LIMIT 1; + + -- tag+sf attrs only support SVF + IF attr_def.tag IS NOT NULL THEN -- tag (and optional subfield list) selection + SELECT ARRAY[ARRAY_TO_STRING(ARRAY_AGG(value), COALESCE(attr_def.joiner,' '))] INTO attr_value + FROM (SELECT * FROM metabib.full_rec ORDER BY tag, subfield) AS x + WHERE record = rid + AND tag LIKE attr_def.tag + AND CASE + WHEN attr_def.sf_list IS NOT NULL + THEN POSITION(subfield IN attr_def.sf_list) > 0 + ELSE TRUE + END + GROUP BY tag + ORDER BY tag + LIMIT 1; + + ELSIF attr_def.fixed_field IS NOT NULL THEN -- a named fixed field, see config.marc21_ff_pos_map.fixed_field + attr_value := vandelay.marc21_extract_fixed_field_list(rmarc, attr_def.fixed_field); + + IF NOT attr_def.multi THEN + attr_value := ARRAY[attr_value[1]]; + END IF; + + ELSIF attr_def.xpath IS NOT NULL THEN -- and xpath expression + + SELECT INTO xfrm * FROM config.xml_transform WHERE name = attr_def.format; + + -- See if we can skip the XSLT ... it's expensive + IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN + -- Can't skip the transform + IF xfrm.xslt <> '---' THEN + transformed_xml := oils_xslt_process(rmarc,xfrm.xslt); + ELSE + transformed_xml := rmarc; + END IF; + + prev_xfrm := xfrm.name; + END IF; + + IF xfrm.name IS NULL THEN + -- just grab the marcxml (empty) transform + SELECT INTO xfrm * FROM config.xml_transform WHERE xslt = '---' LIMIT 1; + prev_xfrm := xfrm.name; + END IF; + + FOR tmp_xml IN SELECT UNNEST(oils_xpath(attr_def.xpath, transformed_xml, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]])) LOOP + tmp_val := oils_xpath_string( + '//*', + tmp_xml, + COALESCE(attr_def.joiner,' '), + ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] + ); + IF tmp_val IS NOT NULL AND BTRIM(tmp_val) <> '' THEN + attr_value := attr_value || tmp_val; + EXIT WHEN NOT attr_def.multi; + END IF; + END LOOP; + + ELSIF attr_def.phys_char_sf IS NOT NULL THEN -- a named Physical Characteristic, see config.marc21_physical_characteristic_*_map + SELECT ARRAY_AGG(m.value) INTO attr_value + FROM vandelay.marc21_physical_characteristics(rmarc) v + LEFT JOIN config.marc21_physical_characteristic_value_map m ON (m.id = v.value) + WHERE v.subfield = attr_def.phys_char_sf AND (m.value IS NOT NULL AND BTRIM(m.value) <> '') + AND ( ccvm_row.id IS NULL OR ( ccvm_row.id IS NOT NULL AND v.id IS NOT NULL) ); + + IF NOT attr_def.multi THEN + attr_value := ARRAY[attr_value[1]]; + END IF; + + END IF; + + -- apply index normalizers to attr_value + FOR tmp_val IN SELECT value FROM UNNEST(attr_value) x(value) LOOP + FOR normalizer IN + SELECT n.func AS func, + n.param_count AS param_count, + m.params AS params + FROM config.index_normalizer n + JOIN config.record_attr_index_norm_map m ON (m.norm = n.id) + WHERE attr = attr_def.name + ORDER BY m.pos LOOP + EXECUTE 'SELECT ' || normalizer.func || '(' || + COALESCE( quote_literal( tmp_val ), 'NULL' ) || + CASE + WHEN normalizer.param_count > 0 + THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'') + ELSE '' + END || + ')' INTO tmp_val; + + END LOOP; + IF tmp_val IS NOT NULL AND tmp_val <> '' THEN + -- note that a string that contains only blanks + -- is a valid value for some attributes + norm_attr_value := norm_attr_value || tmp_val; + END IF; + END LOOP; + + IF attr_def.filter THEN + -- Create unknown uncontrolled values and find the IDs of the values + IF ccvm_row.id IS NULL THEN + FOR tmp_val IN SELECT value FROM UNNEST(norm_attr_value) x(value) LOOP + IF tmp_val IS NOT NULL AND BTRIM(tmp_val) <> '' THEN + BEGIN -- use subtransaction to isolate unique constraint violations + INSERT INTO metabib.uncontrolled_record_attr_value ( attr, value ) VALUES ( attr_def.name, tmp_val ); + EXCEPTION WHEN unique_violation THEN END; + END IF; + END LOOP; + + SELECT ARRAY_AGG(id) INTO attr_vector_tmp FROM metabib.uncontrolled_record_attr_value WHERE attr = attr_def.name AND value = ANY( norm_attr_value ); + ELSE + SELECT ARRAY_AGG(id) INTO attr_vector_tmp FROM config.coded_value_map WHERE ctype = attr_def.name AND code = ANY( norm_attr_value ); + END IF; + + -- Add the new value to the vector + attr_vector := attr_vector || attr_vector_tmp; + END IF; + + IF attr_def.sorter THEN + DELETE FROM metabib.record_sorter WHERE source = rid AND attr = attr_def.name; + IF norm_attr_value[1] IS NOT NULL THEN + INSERT INTO metabib.record_sorter (source, attr, value) VALUES (rid, attr_def.name, norm_attr_value[1]); + END IF; + END IF; + + END LOOP; + +/* We may need to rewrite the vlist to contain + the intersection of new values for requested + attrs and old values for ignored attrs. To + do this, we take the old attr vlist and + subtract any values that are valid for the + requested attrs, and then add back the new + set of attr values. */ + + IF ARRAY_LENGTH(pattr_list, 1) > 0 THEN + SELECT vlist INTO attr_vector_tmp FROM metabib.record_attr_vector_list WHERE source = rid; + SELECT attr_vector_tmp - ARRAY_AGG(id::INT) INTO attr_vector_tmp FROM metabib.full_attr_id_map WHERE attr = ANY (pattr_list); + attr_vector := attr_vector || attr_vector_tmp; + END IF; + + -- On to composite attributes, now that the record attrs have been pulled. Processed in name order, so later composite + -- attributes can depend on earlier ones. + PERFORM metabib.compile_composite_attr_cache_init(); + FOR attr_def IN SELECT * FROM config.record_attr_definition WHERE composite AND name = ANY( attr_list ) ORDER BY name LOOP + + FOR ccvm_row IN SELECT * FROM config.coded_value_map c WHERE c.ctype = attr_def.name ORDER BY value LOOP + + tmp_val := metabib.compile_composite_attr( ccvm_row.id ); + CONTINUE WHEN tmp_val IS NULL OR tmp_val = ''; -- nothing to do + + IF attr_def.filter THEN + IF attr_vector @@ tmp_val::query_int THEN + attr_vector = attr_vector + intset(ccvm_row.id); + EXIT WHEN NOT attr_def.multi; + END IF; + END IF; + + IF attr_def.sorter THEN + IF attr_vector @@ tmp_val THEN + DELETE FROM metabib.record_sorter WHERE source = rid AND attr = attr_def.name; + INSERT INTO metabib.record_sorter (source, attr, value) VALUES (rid, attr_def.name, ccvm_row.code); + END IF; + END IF; + + END LOOP; + + END LOOP; + + IF ARRAY_LENGTH(attr_vector, 1) > 0 THEN + IF rdeleted THEN -- initial insert OR revivication + DELETE FROM metabib.record_attr_vector_list WHERE source = rid; + INSERT INTO metabib.record_attr_vector_list (source, vlist) VALUES (rid, attr_vector); + ELSE + UPDATE metabib.record_attr_vector_list SET vlist = attr_vector WHERE source = rid; + END IF; + END IF; + +END; + +$$; + + +ALTER FUNCTION metabib.reingest_record_attributes(rid bigint, pattr_list text[], prmarc text, rdeleted boolean) OWNER TO evergreen; + +-- +-- Name: remap_metarecord_for_bib(bigint, text, boolean, boolean); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION remap_metarecord_for_bib(bib_id bigint, fp text, bib_is_deleted boolean DEFAULT false, retain_deleted boolean DEFAULT false) RETURNS bigint + LANGUAGE plpgsql + AS $$ +DECLARE + new_mapping BOOL := TRUE; + source_count INT; + old_mr BIGINT; + tmp_mr metabib.metarecord%ROWTYPE; + deleted_mrs BIGINT[]; +BEGIN + + -- We need to make sure we're not a deleted master record of an MR + IF bib_is_deleted THEN + FOR old_mr IN SELECT id FROM metabib.metarecord WHERE master_record = bib_id LOOP + + IF NOT retain_deleted THEN -- Go away for any MR that we're master of, unless retained + DELETE FROM metabib.metarecord_source_map WHERE source = bib_id; + END IF; + + -- Now, are there any more sources on this MR? + SELECT COUNT(*) INTO source_count FROM metabib.metarecord_source_map WHERE metarecord = old_mr; + + IF source_count = 0 AND NOT retain_deleted THEN -- No other records + deleted_mrs := ARRAY_APPEND(deleted_mrs, old_mr); -- Just in case... + DELETE FROM metabib.metarecord WHERE id = old_mr; + + ELSE -- indeed there are. Update it with a null cache and recalcualated master record + UPDATE metabib.metarecord + SET mods = NULL, + master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp AND NOT deleted ORDER BY quality DESC LIMIT 1) + WHERE id = old_mr; + END IF; + END LOOP; + + ELSE -- insert or update + + FOR tmp_mr IN SELECT m.* FROM metabib.metarecord m JOIN metabib.metarecord_source_map s ON (s.metarecord = m.id) WHERE s.source = bib_id LOOP + + -- Find the first fingerprint-matching + IF old_mr IS NULL AND fp = tmp_mr.fingerprint THEN + old_mr := tmp_mr.id; + new_mapping := FALSE; + + ELSE -- Our fingerprint changed ... maybe remove the old MR + DELETE FROM metabib.metarecord_source_map WHERE metarecord = old_mr AND source = bib_id; -- remove the old source mapping + SELECT COUNT(*) INTO source_count FROM metabib.metarecord_source_map WHERE metarecord = tmp_mr.id; + IF source_count = 0 THEN -- No other records + deleted_mrs := ARRAY_APPEND(deleted_mrs, tmp_mr.id); + DELETE FROM metabib.metarecord WHERE id = tmp_mr.id; + END IF; + END IF; + + END LOOP; + + -- we found no suitable, preexisting MR based on old source maps + IF old_mr IS NULL THEN + SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp; -- is there one for our current fingerprint? + + IF old_mr IS NULL THEN -- nope, create one and grab its id + INSERT INTO metabib.metarecord ( fingerprint, master_record ) VALUES ( fp, bib_id ); + SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp; + + ELSE -- indeed there is. update it with a null cache and recalcualated master record + UPDATE metabib.metarecord + SET mods = NULL, + master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp AND NOT deleted ORDER BY quality DESC LIMIT 1) + WHERE id = old_mr; + END IF; + + ELSE -- there was one we already attached to, update its mods cache and master_record + UPDATE metabib.metarecord + SET mods = NULL, + master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp AND NOT deleted ORDER BY quality DESC LIMIT 1) + WHERE id = old_mr; + END IF; + + IF new_mapping THEN + INSERT INTO metabib.metarecord_source_map (metarecord, source) VALUES (old_mr, bib_id); -- new source mapping + END IF; + + END IF; + + IF ARRAY_UPPER(deleted_mrs,1) > 0 THEN + UPDATE action.hold_request SET target = old_mr WHERE target IN ( SELECT unnest(deleted_mrs) ) AND hold_type = 'M'; -- if we had to delete any MRs above, make sure their holds are moved + END IF; + + RETURN old_mr; + +END; +$$; + + +ALTER FUNCTION metabib.remap_metarecord_for_bib(bib_id bigint, fp text, bib_is_deleted boolean, retain_deleted boolean) OWNER TO evergreen; + +-- +-- Name: search_class_to_registered_components(text); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION search_class_to_registered_components(search_class text) RETURNS SETOF record + LANGUAGE plpgsql ROWS 1 + AS $$ +DECLARE + search_parts TEXT[]; + field_name TEXT; + search_part_count INTEGER; + rec RECORD; + registered_class config.metabib_class%ROWTYPE; + registered_alias config.metabib_search_alias%ROWTYPE; + registered_field config.metabib_field%ROWTYPE; +BEGIN + search_parts := REGEXP_SPLIT_TO_ARRAY(search_class, E'\\|'); + + search_part_count := ARRAY_LENGTH(search_parts, 1); + IF search_part_count = 0 THEN + RETURN; + ELSE + SELECT INTO registered_class + * FROM config.metabib_class WHERE name = search_parts[1]; + IF FOUND THEN + IF search_part_count < 2 THEN -- all fields + rec := (registered_class.name, NULL::INTEGER); + RETURN NEXT rec; + RETURN; -- done + END IF; + FOR field_name IN SELECT * + FROM UNNEST(search_parts[2:search_part_count]) LOOP + SELECT INTO registered_field + * FROM config.metabib_field + WHERE name = field_name AND + field_class = registered_class.name; + IF FOUND THEN + rec := (registered_class.name, registered_field.id); + RETURN NEXT rec; + END IF; + END LOOP; + ELSE + -- maybe we have an alias? + SELECT INTO registered_alias + * FROM config.metabib_search_alias WHERE alias=search_parts[1]; + IF NOT FOUND THEN + RETURN; + ELSE + IF search_part_count < 2 THEN -- return w/e the alias says + rec := ( + registered_alias.field_class, registered_alias.field + ); + RETURN NEXT rec; + RETURN; -- done + ELSE + FOR field_name IN SELECT * + FROM UNNEST(search_parts[2:search_part_count]) LOOP + SELECT INTO registered_field + * FROM config.metabib_field + WHERE name = field_name AND + field_class = registered_alias.field_class; + IF FOUND THEN + rec := ( + registered_alias.field_class, + registered_field.id + ); + RETURN NEXT rec; + END IF; + END LOOP; + END IF; + END IF; + END IF; + END IF; +END; +$$; + + +ALTER FUNCTION metabib.search_class_to_registered_components(search_class text) OWNER TO evergreen; + +-- +-- Name: staged_browse(text, integer[], integer, integer[], boolean, integer, boolean, integer, integer); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION staged_browse(query text, fields integer[], context_org integer, context_locations integer[], staff boolean, browse_superpage_size integer, count_up_from_zero boolean, result_limit integer, next_pivot_pos integer) RETURNS SETOF flat_browse_entry_appearance + LANGUAGE plpgsql + AS $_$ +DECLARE + curs REFCURSOR; + rec RECORD; + qpfts_query TEXT; + aqpfts_query TEXT; + afields INT[]; + bfields INT[]; + result_row metabib.flat_browse_entry_appearance%ROWTYPE; + results_skipped INT := 0; + row_counter INT := 0; + row_number INT; + slice_start INT; + slice_end INT; + full_end INT; + all_records BIGINT[]; + all_brecords BIGINT[]; + all_arecords BIGINT[]; + superpage_of_records BIGINT[]; + superpage_size INT; +BEGIN + IF count_up_from_zero THEN + row_number := 0; + ELSE + row_number := -1; + END IF; + + OPEN curs FOR EXECUTE query; + + LOOP + FETCH curs INTO rec; + IF NOT FOUND THEN + IF result_row.pivot_point IS NOT NULL THEN + RETURN NEXT result_row; + END IF; + RETURN; + END IF; + + + -- Gather aggregate data based on the MBE row we're looking at now, authority axis + SELECT INTO all_arecords, result_row.sees, afields + ARRAY_AGG(DISTINCT abl.bib), -- bibs to check for visibility + STRING_AGG(DISTINCT aal.source::TEXT, $$,$$), -- authority record ids + ARRAY_AGG(DISTINCT map.metabib_field) -- authority-tag-linked CMF rows + + FROM metabib.browse_entry_simple_heading_map mbeshm + JOIN authority.simple_heading ash ON ( mbeshm.simple_heading = ash.id ) + JOIN authority.authority_linking aal ON ( ash.record = aal.source ) + JOIN authority.bib_linking abl ON ( aal.target = abl.authority ) + JOIN authority.control_set_auth_field_metabib_field_map_refs map ON ( + ash.atag = map.authority_field + AND map.metabib_field = ANY(fields) + ) + WHERE mbeshm.entry = rec.id; + + + -- Gather aggregate data based on the MBE row we're looking at now, bib axis + SELECT INTO all_brecords, result_row.authorities, bfields + ARRAY_AGG(DISTINCT source), + STRING_AGG(DISTINCT authority::TEXT, $$,$$), + ARRAY_AGG(DISTINCT def) + FROM metabib.browse_entry_def_map + WHERE entry = rec.id + AND def = ANY(fields); + + SELECT INTO result_row.fields STRING_AGG(DISTINCT x::TEXT, $$,$$) FROM UNNEST(afields || bfields) x; + + result_row.sources := 0; + result_row.asources := 0; + + -- Bib-linked vis checking + IF ARRAY_UPPER(all_brecords,1) IS NOT NULL THEN + + full_end := ARRAY_LENGTH(all_brecords, 1); + superpage_size := COALESCE(browse_superpage_size, full_end); + slice_start := 1; + slice_end := superpage_size; + + WHILE result_row.sources = 0 AND slice_start <= full_end LOOP + superpage_of_records := all_brecords[slice_start:slice_end]; + qpfts_query := + 'SELECT NULL::BIGINT AS id, ARRAY[r] AS records, ' || + '1::INT AS rel FROM (SELECT UNNEST(' || + quote_literal(superpage_of_records) || '::BIGINT[]) AS r) rr'; + + -- We use search.query_parser_fts() for visibility testing. + -- We're calling it once per browse-superpage worth of records + -- out of the set of records related to a given mbe, until we've + -- either exhausted that set of records or found at least 1 + -- visible record. + + SELECT INTO result_row.sources visible + FROM search.query_parser_fts( + context_org, NULL, qpfts_query, NULL, + context_locations, 0, NULL, NULL, FALSE, staff, FALSE + ) qpfts + WHERE qpfts.rel IS NULL; + + slice_start := slice_start + superpage_size; + slice_end := slice_end + superpage_size; + END LOOP; + + -- Accurate? Well, probably. + result_row.accurate := browse_superpage_size IS NULL OR + browse_superpage_size >= full_end; + + END IF; + + -- Authority-linked vis checking + IF ARRAY_UPPER(all_arecords,1) IS NOT NULL THEN + + full_end := ARRAY_LENGTH(all_arecords, 1); + superpage_size := COALESCE(browse_superpage_size, full_end); + slice_start := 1; + slice_end := superpage_size; + + WHILE result_row.asources = 0 AND slice_start <= full_end LOOP + superpage_of_records := all_arecords[slice_start:slice_end]; + qpfts_query := + 'SELECT NULL::BIGINT AS id, ARRAY[r] AS records, ' || + '1::INT AS rel FROM (SELECT UNNEST(' || + quote_literal(superpage_of_records) || '::BIGINT[]) AS r) rr'; + + -- We use search.query_parser_fts() for visibility testing. + -- We're calling it once per browse-superpage worth of records + -- out of the set of records related to a given mbe, via + -- authority until we've either exhausted that set of records + -- or found at least 1 visible record. + + SELECT INTO result_row.asources visible + FROM search.query_parser_fts( + context_org, NULL, qpfts_query, NULL, + context_locations, 0, NULL, NULL, FALSE, staff, FALSE + ) qpfts + WHERE qpfts.rel IS NULL; + + slice_start := slice_start + superpage_size; + slice_end := slice_end + superpage_size; + END LOOP; + + + -- Accurate? Well, probably. + result_row.aaccurate := browse_superpage_size IS NULL OR + browse_superpage_size >= full_end; + + END IF; + + IF result_row.sources > 0 OR result_row.asources > 0 THEN + + -- The function that calls this function needs row_number in order + -- to correctly order results from two different runs of this + -- functions. + result_row.row_number := row_number; + + -- Now, if row_counter is still less than limit, return a row. If + -- not, but it is less than next_pivot_pos, continue on without + -- returning actual result rows until we find + -- that next pivot, and return it. + + IF row_counter < result_limit THEN + result_row.browse_entry := rec.id; + result_row.value := rec.value; + + RETURN NEXT result_row; + ELSE + result_row.browse_entry := NULL; + result_row.authorities := NULL; + result_row.fields := NULL; + result_row.value := NULL; + result_row.sources := NULL; + result_row.sees := NULL; + result_row.accurate := NULL; + result_row.aaccurate := NULL; + result_row.pivot_point := rec.id; + + IF row_counter >= next_pivot_pos THEN + RETURN NEXT result_row; + RETURN; + END IF; + END IF; + + IF count_up_from_zero THEN + row_number := row_number + 1; + ELSE + row_number := row_number - 1; + END IF; + + -- row_counter is different from row_number. + -- It simply counts up from zero so that we know when + -- we've reached our limit. + row_counter := row_counter + 1; + END IF; + END LOOP; +END; +$_$; + + +ALTER FUNCTION metabib.staged_browse(query text, fields integer[], context_org integer, context_locations integer[], staff boolean, browse_superpage_size integer, count_up_from_zero boolean, result_limit integer, next_pivot_pos integer) OWNER TO evergreen; + +-- +-- Name: suggest_browse_entries(text, text, text, integer, integer, integer); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION suggest_browse_entries(raw_query_text text, search_class text, headline_opts text, visibility_org integer, query_limit integer, normalization integer) RETURNS TABLE(value text, field integer, buoyant_and_class_match boolean, field_match boolean, field_weight integer, rank real, buoyant boolean, match text) + LANGUAGE plpgsql + AS $_$ +DECLARE + prepared_query_texts TEXT[]; + query TSQUERY; + plain_query TSQUERY; + opac_visibility_join TEXT; + search_class_join TEXT; + r_fields RECORD; +BEGIN + prepared_query_texts := metabib.autosuggest_prepare_tsquery(raw_query_text); + + query := TO_TSQUERY('keyword', prepared_query_texts[1]); + plain_query := TO_TSQUERY('keyword', prepared_query_texts[2]); + + visibility_org := NULLIF(visibility_org,-1); + IF visibility_org IS NOT NULL THEN + opac_visibility_join := ' + JOIN asset.opac_visible_copies aovc ON ( + aovc.record = x.source AND + aovc.circ_lib IN (SELECT id FROM actor.org_unit_descendants($4)) + )'; + ELSE + opac_visibility_join := ''; + END IF; + + -- The following determines whether we only provide suggestsons matching + -- the user's selected search_class, or whether we show other suggestions + -- too. The reason for MIN() is that for search_classes like + -- 'title|proper|uniform' you would otherwise get multiple rows. The + -- implication is that if title as a class doesn't have restrict, + -- nor does the proper field, but the uniform field does, you're going + -- to get 'false' for your overall evaluation of 'should we restrict?' + -- To invert that, change from MIN() to MAX(). + + SELECT + INTO r_fields + MIN(cmc.restrict::INT) AS restrict_class, + MIN(cmf.restrict::INT) AS restrict_field + FROM metabib.search_class_to_registered_components(search_class) + AS _registered (field_class TEXT, field INT) + JOIN + config.metabib_class cmc ON (cmc.name = _registered.field_class) + LEFT JOIN + config.metabib_field cmf ON (cmf.id = _registered.field); + + -- evaluate 'should we restrict?' + IF r_fields.restrict_field::BOOL OR r_fields.restrict_class::BOOL THEN + search_class_join := ' + JOIN + metabib.search_class_to_registered_components($2) + AS _registered (field_class TEXT, field INT) ON ( + (_registered.field IS NULL AND + _registered.field_class = cmf.field_class) OR + (_registered.field = cmf.id) + ) + '; + ELSE + search_class_join := ' + LEFT JOIN + metabib.search_class_to_registered_components($2) + AS _registered (field_class TEXT, field INT) ON ( + _registered.field_class = cmc.name + ) + '; + END IF; + + RETURN QUERY EXECUTE ' +SELECT DISTINCT + x.value, + x.id, + x.push, + x.restrict, + x.weight, + x.ts_rank_cd, + x.buoyant, + TS_HEADLINE(value, $7, $3) + FROM (SELECT DISTINCT + mbe.value, + cmf.id, + cmc.buoyant AND _registered.field_class IS NOT NULL AS push, + _registered.field = cmf.id AS restrict, + cmf.weight, + TS_RANK_CD(mbe.index_vector, $1, $6), + cmc.buoyant, + mbedm.source + FROM metabib.browse_entry_def_map mbedm + JOIN (SELECT * FROM metabib.browse_entry WHERE index_vector @@ $1 LIMIT 10000) mbe ON (mbe.id = mbedm.entry) + JOIN config.metabib_field cmf ON (cmf.id = mbedm.def) + JOIN config.metabib_class cmc ON (cmf.field_class = cmc.name) + ' || search_class_join || ' + ORDER BY 3 DESC, 4 DESC NULLS LAST, 5 DESC, 6 DESC, 7 DESC, 1 ASC + LIMIT 1000) AS x + ' || opac_visibility_join || ' + ORDER BY 3 DESC, 4 DESC NULLS LAST, 5 DESC, 6 DESC, 7 DESC, 1 ASC + LIMIT $5 +' -- sic, repeat the order by clause in the outer select too + USING + query, search_class, headline_opts, + visibility_org, query_limit, normalization, plain_query + ; + + -- sort order: + -- buoyant AND chosen class = match class + -- chosen field = match field + -- field weight + -- rank + -- buoyancy + -- value itself + +END; +$_$; + + +ALTER FUNCTION metabib.suggest_browse_entries(raw_query_text text, search_class text, headline_opts text, visibility_org integer, query_limit integer, normalization integer) OWNER TO evergreen; + +-- +-- Name: update_combined_index_vectors(bigint); Type: FUNCTION; Schema: metabib; Owner: evergreen +-- + +CREATE FUNCTION update_combined_index_vectors(bib_id bigint) RETURNS void + LANGUAGE plpgsql + AS $$ +BEGIN + DELETE FROM metabib.combined_keyword_field_entry WHERE record = bib_id; + INSERT INTO metabib.combined_keyword_field_entry(record, metabib_field, index_vector) + SELECT bib_id, field, strip(COALESCE(string_agg(index_vector::TEXT,' '),'')::tsvector) + FROM metabib.keyword_field_entry WHERE source = bib_id GROUP BY field; + INSERT INTO metabib.combined_keyword_field_entry(record, metabib_field, index_vector) + SELECT bib_id, NULL, strip(COALESCE(string_agg(index_vector::TEXT,' '),'')::tsvector) + FROM metabib.keyword_field_entry WHERE source = bib_id; + + DELETE FROM metabib.combined_title_field_entry WHERE record = bib_id; + INSERT INTO metabib.combined_title_field_entry(record, metabib_field, index_vector) + SELECT bib_id, field, strip(COALESCE(string_agg(index_vector::TEXT,' '),'')::tsvector) + FROM metabib.title_field_entry WHERE source = bib_id GROUP BY field; + INSERT INTO metabib.combined_title_field_entry(record, metabib_field, index_vector) + SELECT bib_id, NULL, strip(COALESCE(string_agg(index_vector::TEXT,' '),'')::tsvector) + FROM metabib.title_field_entry WHERE source = bib_id; + + DELETE FROM metabib.combined_author_field_entry WHERE record = bib_id; + INSERT INTO metabib.combined_author_field_entry(record, metabib_field, index_vector) + SELECT bib_id, field, strip(COALESCE(string_agg(index_vector::TEXT,' '),'')::tsvector) + FROM metabib.author_field_entry WHERE source = bib_id GROUP BY field; + INSERT INTO metabib.combined_author_field_entry(record, metabib_field, index_vector) + SELECT bib_id, NULL, strip(COALESCE(string_agg(index_vector::TEXT,' '),'')::tsvector) + FROM metabib.author_field_entry WHERE source = bib_id; + + DELETE FROM metabib.combined_subject_field_entry WHERE record = bib_id; + INSERT INTO metabib.combined_subject_field_entry(record, metabib_field, index_vector) + SELECT bib_id, field, strip(COALESCE(string_agg(index_vector::TEXT,' '),'')::tsvector) + FROM metabib.subject_field_entry WHERE source = bib_id GROUP BY field; + INSERT INTO metabib.combined_subject_field_entry(record, metabib_field, index_vector) + SELECT bib_id, NULL, strip(COALESCE(string_agg(index_vector::TEXT,' '),'')::tsvector) + FROM metabib.subject_field_entry WHERE source = bib_id; + + DELETE FROM metabib.combined_series_field_entry WHERE record = bib_id; + INSERT INTO metabib.combined_series_field_entry(record, metabib_field, index_vector) + SELECT bib_id, field, strip(COALESCE(string_agg(index_vector::TEXT,' '),'')::tsvector) + FROM metabib.series_field_entry WHERE source = bib_id GROUP BY field; + INSERT INTO metabib.combined_series_field_entry(record, metabib_field, index_vector) + SELECT bib_id, NULL, strip(COALESCE(string_agg(index_vector::TEXT,' '),'')::tsvector) + FROM metabib.series_field_entry WHERE source = bib_id; + + DELETE FROM metabib.combined_identifier_field_entry WHERE record = bib_id; + INSERT INTO metabib.combined_identifier_field_entry(record, metabib_field, index_vector) + SELECT bib_id, field, strip(COALESCE(string_agg(index_vector::TEXT,' '),'')::tsvector) + FROM metabib.identifier_field_entry WHERE source = bib_id GROUP BY field; + INSERT INTO metabib.combined_identifier_field_entry(record, metabib_field, index_vector) + SELECT bib_id, NULL, strip(COALESCE(string_agg(index_vector::TEXT,' '),'')::tsvector) + FROM metabib.identifier_field_entry WHERE source = bib_id; + +END; +$$; + + +ALTER FUNCTION metabib.update_combined_index_vectors(bib_id bigint) OWNER TO evergreen; + +SET search_path = money, pg_catalog; + +-- +-- Name: mat_summary_create(); Type: FUNCTION; Schema: money; Owner: evergreen +-- + +CREATE FUNCTION mat_summary_create() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + INSERT INTO money.materialized_billable_xact_summary (id, usr, xact_start, xact_finish, total_paid, total_owed, balance_owed, xact_type) + VALUES ( NEW.id, NEW.usr, NEW.xact_start, NEW.xact_finish, 0.0, 0.0, 0.0, TG_ARGV[0]); + RETURN NEW; +END; +$$; + + +ALTER FUNCTION money.mat_summary_create() OWNER TO evergreen; + +-- +-- Name: mat_summary_delete(); Type: FUNCTION; Schema: money; Owner: evergreen +-- + +CREATE FUNCTION mat_summary_delete() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + DELETE FROM money.materialized_billable_xact_summary WHERE id = OLD.id; + RETURN OLD; +END; +$$; + + +ALTER FUNCTION money.mat_summary_delete() OWNER TO evergreen; + +-- +-- Name: mat_summary_update(); Type: FUNCTION; Schema: money; Owner: evergreen +-- + +CREATE FUNCTION mat_summary_update() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + UPDATE money.materialized_billable_xact_summary + SET usr = NEW.usr, + xact_start = NEW.xact_start, + xact_finish = NEW.xact_finish + WHERE id = NEW.id; + RETURN NEW; +END; +$$; + + +ALTER FUNCTION money.mat_summary_update() OWNER TO evergreen; + +-- +-- Name: materialized_summary_billing_add(); Type: FUNCTION; Schema: money; Owner: evergreen +-- + +CREATE FUNCTION materialized_summary_billing_add() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + IF NOT NEW.voided THEN + UPDATE money.materialized_billable_xact_summary + SET total_owed = COALESCE(total_owed, 0.0::numeric) + NEW.amount, + last_billing_ts = NEW.billing_ts, + last_billing_note = NEW.note, + last_billing_type = NEW.billing_type, + balance_owed = balance_owed + NEW.amount + WHERE id = NEW.xact; + END IF; + + RETURN NEW; +END; +$$; + + +ALTER FUNCTION money.materialized_summary_billing_add() OWNER TO evergreen; + +-- +-- Name: materialized_summary_billing_del(); Type: FUNCTION; Schema: money; Owner: evergreen +-- + +CREATE FUNCTION materialized_summary_billing_del() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + prev_billing money.billing%ROWTYPE; + old_billing money.billing%ROWTYPE; +BEGIN + SELECT * INTO prev_billing FROM money.billing WHERE xact = OLD.xact AND NOT voided ORDER BY billing_ts DESC LIMIT 1 OFFSET 1; + SELECT * INTO old_billing FROM money.billing WHERE xact = OLD.xact AND NOT voided ORDER BY billing_ts DESC LIMIT 1; + + IF OLD.id = old_billing.id THEN + UPDATE money.materialized_billable_xact_summary + SET last_billing_ts = prev_billing.billing_ts, + last_billing_note = prev_billing.note, + last_billing_type = prev_billing.billing_type + WHERE id = OLD.xact; + END IF; + + IF NOT OLD.voided THEN + UPDATE money.materialized_billable_xact_summary + SET total_owed = total_owed - OLD.amount, + balance_owed = balance_owed - OLD.amount + WHERE id = OLD.xact; + END IF; + + RETURN OLD; +END; +$$; + + +ALTER FUNCTION money.materialized_summary_billing_del() OWNER TO evergreen; + +-- +-- Name: materialized_summary_billing_update(); Type: FUNCTION; Schema: money; Owner: evergreen +-- + +CREATE FUNCTION materialized_summary_billing_update() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + old_billing money.billing%ROWTYPE; + old_voided money.billing%ROWTYPE; +BEGIN + + SELECT * INTO old_billing FROM money.billing WHERE xact = NEW.xact AND NOT voided ORDER BY billing_ts DESC LIMIT 1; + SELECT * INTO old_voided FROM money.billing WHERE xact = NEW.xact ORDER BY billing_ts DESC LIMIT 1; + + IF NEW.voided AND NOT OLD.voided THEN + IF OLD.id = old_voided.id THEN + UPDATE money.materialized_billable_xact_summary + SET last_billing_ts = old_billing.billing_ts, + last_billing_note = old_billing.note, + last_billing_type = old_billing.billing_type + WHERE id = OLD.xact; + END IF; + + UPDATE money.materialized_billable_xact_summary + SET total_owed = total_owed - NEW.amount, + balance_owed = balance_owed - NEW.amount + WHERE id = NEW.xact; + + ELSIF NOT NEW.voided AND OLD.voided THEN + + IF OLD.id = old_billing.id THEN + UPDATE money.materialized_billable_xact_summary + SET last_billing_ts = old_billing.billing_ts, + last_billing_note = old_billing.note, + last_billing_type = old_billing.billing_type + WHERE id = OLD.xact; + END IF; + + UPDATE money.materialized_billable_xact_summary + SET total_owed = total_owed + NEW.amount, + balance_owed = balance_owed + NEW.amount + WHERE id = NEW.xact; + + ELSE + UPDATE money.materialized_billable_xact_summary + SET total_owed = total_owed - (OLD.amount - NEW.amount), + balance_owed = balance_owed - (OLD.amount - NEW.amount) + WHERE id = NEW.xact; + END IF; + + RETURN NEW; +END; +$$; + + +ALTER FUNCTION money.materialized_summary_billing_update() OWNER TO evergreen; + +-- +-- Name: materialized_summary_payment_add(); Type: FUNCTION; Schema: money; Owner: evergreen +-- + +CREATE FUNCTION materialized_summary_payment_add() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + IF NOT NEW.voided THEN + UPDATE money.materialized_billable_xact_summary + SET total_paid = COALESCE(total_paid, 0.0::numeric) + NEW.amount, + last_payment_ts = NEW.payment_ts, + last_payment_note = NEW.note, + last_payment_type = TG_ARGV[0], + balance_owed = balance_owed - NEW.amount + WHERE id = NEW.xact; + END IF; + + RETURN NEW; +END; +$$; + + +ALTER FUNCTION money.materialized_summary_payment_add() OWNER TO evergreen; + +-- +-- Name: materialized_summary_payment_del(); Type: FUNCTION; Schema: money; Owner: evergreen +-- + +CREATE FUNCTION materialized_summary_payment_del() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + prev_payment money.payment_view%ROWTYPE; + old_payment money.payment_view%ROWTYPE; +BEGIN + SELECT * INTO prev_payment FROM money.payment_view WHERE xact = OLD.xact AND NOT voided ORDER BY payment_ts DESC LIMIT 1 OFFSET 1; + SELECT * INTO old_payment FROM money.payment_view WHERE xact = OLD.xact AND NOT voided ORDER BY payment_ts DESC LIMIT 1; + + IF OLD.id = old_payment.id THEN + UPDATE money.materialized_billable_xact_summary + SET last_payment_ts = prev_payment.payment_ts, + last_payment_note = prev_payment.note, + last_payment_type = prev_payment.payment_type + WHERE id = OLD.xact; + END IF; + + IF NOT OLD.voided THEN + UPDATE money.materialized_billable_xact_summary + SET total_paid = total_paid - OLD.amount, + balance_owed = balance_owed + OLD.amount + WHERE id = OLD.xact; + END IF; + + RETURN OLD; +END; +$$; + + +ALTER FUNCTION money.materialized_summary_payment_del() OWNER TO evergreen; + +-- +-- Name: materialized_summary_payment_update(); Type: FUNCTION; Schema: money; Owner: evergreen +-- + +CREATE FUNCTION materialized_summary_payment_update() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + old_payment money.payment_view%ROWTYPE; + old_voided money.payment_view%ROWTYPE; +BEGIN + + SELECT * INTO old_payment FROM money.payment_view WHERE xact = NEW.xact AND NOT voided ORDER BY payment_ts DESC LIMIT 1; + SELECT * INTO old_voided FROM money.payment_view WHERE xact = NEW.xact ORDER BY payment_ts DESC LIMIT 1; + + IF NEW.voided AND NOT OLD.voided THEN + IF OLD.id = old_voided.id THEN + UPDATE money.materialized_billable_xact_summary + SET last_payment_ts = old_payment.payment_ts, + last_payment_note = old_payment.note, + last_payment_type = old_payment.payment_type + WHERE id = OLD.xact; + END IF; + + UPDATE money.materialized_billable_xact_summary + SET total_paid = total_paid - NEW.amount, + balance_owed = balance_owed + NEW.amount + WHERE id = NEW.xact; + + ELSIF NOT NEW.voided AND OLD.voided THEN + + IF OLD.id = old_payment.id THEN + UPDATE money.materialized_billable_xact_summary + SET last_payment_ts = old_payment.payment_ts, + last_payment_note = old_payment.note, + last_payment_type = old_payment.payment_type + WHERE id = OLD.xact; + END IF; + + UPDATE money.materialized_billable_xact_summary + SET total_paid = total_paid + NEW.amount, + balance_owed = balance_owed - NEW.amount + WHERE id = NEW.xact; + + ELSE + UPDATE money.materialized_billable_xact_summary + SET total_paid = total_paid - (OLD.amount - NEW.amount), + balance_owed = balance_owed + (OLD.amount - NEW.amount) + WHERE id = NEW.xact; + END IF; + + RETURN NEW; +END; +$$; + + +ALTER FUNCTION money.materialized_summary_payment_update() OWNER TO evergreen; + +SET search_path = permission, pg_catalog; + +-- +-- Name: grp_tree; Type: TABLE; Schema: permission; Owner: evergreen +-- + +CREATE TABLE grp_tree ( + id integer NOT NULL, + name text NOT NULL, + parent integer, + usergroup boolean DEFAULT true NOT NULL, + perm_interval interval DEFAULT '3 years'::interval NOT NULL, + description text, + application_perm text, + hold_priority integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE grp_tree OWNER TO evergreen; + +-- +-- Name: grp_ancestors(integer); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION grp_ancestors(integer) RETURNS SETOF grp_tree + LANGUAGE sql ROWS 1 + AS $_$ + WITH RECURSIVE grp_ancestors_distance(id, distance) AS ( + SELECT $1, 0 + UNION + SELECT ou.parent, ouad.distance+1 + FROM permission.grp_tree ou JOIN grp_ancestors_distance ouad ON (ou.id = ouad.id) + WHERE ou.parent IS NOT NULL + ) + SELECT ou.* FROM permission.grp_tree ou JOIN grp_ancestors_distance ouad USING (id) ORDER BY ouad.distance DESC; +$_$; + + +ALTER FUNCTION permission.grp_ancestors(integer) OWNER TO evergreen; + +-- +-- Name: grp_ancestors_distance(integer); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION grp_ancestors_distance(integer) RETURNS TABLE(id integer, distance integer) + LANGUAGE sql STABLE ROWS 1 + AS $_$ + WITH RECURSIVE grp_ancestors_distance(id, distance) AS ( + SELECT $1, 0 + UNION + SELECT pgt.parent, gad.distance+1 + FROM permission.grp_tree pgt JOIN grp_ancestors_distance gad ON (pgt.id = gad.id) + WHERE pgt.parent IS NOT NULL + ) + SELECT * FROM grp_ancestors_distance; +$_$; + + +ALTER FUNCTION permission.grp_ancestors_distance(integer) OWNER TO evergreen; + +-- +-- Name: grp_descendants(integer); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION grp_descendants(integer) RETURNS SETOF grp_tree + LANGUAGE sql ROWS 1 + AS $_$ + WITH RECURSIVE descendant_depth AS ( + SELECT gr.id, + gr.parent + FROM permission.grp_tree gr + WHERE gr.id = $1 + UNION ALL + SELECT gr.id, + gr.parent + FROM permission.grp_tree gr + JOIN descendant_depth dd ON (dd.id = gr.parent) + ) SELECT gr.* FROM permission.grp_tree gr JOIN descendant_depth USING (id); +$_$; + + +ALTER FUNCTION permission.grp_descendants(integer) OWNER TO evergreen; + +-- +-- Name: grp_descendants_distance(integer); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION grp_descendants_distance(integer) RETURNS TABLE(id integer, distance integer) + LANGUAGE sql STABLE ROWS 1 + AS $_$ + WITH RECURSIVE grp_descendants_distance(id, distance) AS ( + SELECT $1, 0 + UNION + SELECT pgt.id, gdd.distance+1 + FROM permission.grp_tree pgt JOIN grp_descendants_distance gdd ON (pgt.parent = gdd.id) + ) + SELECT * FROM grp_descendants_distance; +$_$; + + +ALTER FUNCTION permission.grp_descendants_distance(integer) OWNER TO evergreen; + +-- +-- Name: grp_tree_combined_ancestors(integer, integer); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION grp_tree_combined_ancestors(integer, integer) RETURNS SETOF grp_tree + LANGUAGE sql STABLE ROWS 1 + AS $_$ + SELECT * + FROM permission.grp_ancestors($1) + UNION + SELECT * + FROM permission.grp_ancestors($2); +$_$; + + +ALTER FUNCTION permission.grp_tree_combined_ancestors(integer, integer) OWNER TO evergreen; + +-- +-- Name: grp_tree_common_ancestors(integer, integer); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION grp_tree_common_ancestors(integer, integer) RETURNS SETOF grp_tree + LANGUAGE sql STABLE ROWS 1 + AS $_$ + SELECT * + FROM permission.grp_ancestors($1) + INTERSECT + SELECT * + FROM permission.grp_ancestors($2); +$_$; + + +ALTER FUNCTION permission.grp_tree_common_ancestors(integer, integer) OWNER TO evergreen; + +-- +-- Name: grp_tree_full_path(integer); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION grp_tree_full_path(integer) RETURNS SETOF grp_tree + LANGUAGE sql STABLE ROWS 1 + AS $_$ + SELECT * + FROM permission.grp_ancestors($1) + UNION + SELECT * + FROM permission.grp_descendants($1); +$_$; + + +ALTER FUNCTION permission.grp_tree_full_path(integer) OWNER TO evergreen; + +-- +-- Name: usr_can_grant_perm(integer, text, integer); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION usr_can_grant_perm(iuser integer, tperm text, target_ou integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +DECLARE + r_usr actor.usr%ROWTYPE; + r_perm permission.usr_perm_map%ROWTYPE; +BEGIN + + SELECT * INTO r_usr FROM actor.usr WHERE id = iuser; + + IF r_usr.active = FALSE THEN + RETURN FALSE; + END IF; + + IF r_usr.super_user = TRUE THEN + RETURN TRUE; + END IF; + + FOR r_perm IN SELECT * + FROM permission.usr_perms(iuser) p + JOIN permission.perm_list l + ON (l.id = p.perm) + WHERE (l.code = tperm AND p.grantable IS TRUE) + LOOP + + PERFORM * + FROM actor.org_unit_descendants(target_ou,r_perm.depth) + WHERE id = r_usr.home_ou; + + IF FOUND THEN + RETURN TRUE; + ELSE + RETURN FALSE; + END IF; + END LOOP; + + RETURN FALSE; +END; +$$; + + +ALTER FUNCTION permission.usr_can_grant_perm(iuser integer, tperm text, target_ou integer) OWNER TO evergreen; + +-- +-- Name: usr_has_home_perm(integer, text, integer); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION usr_has_home_perm(iuser integer, tperm text, target_ou integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +DECLARE + r_usr actor.usr%ROWTYPE; + r_perm permission.usr_perm_map%ROWTYPE; +BEGIN + + SELECT * INTO r_usr FROM actor.usr WHERE id = iuser; + + IF r_usr.active = FALSE THEN + RETURN FALSE; + END IF; + + IF r_usr.super_user = TRUE THEN + RETURN TRUE; + END IF; + + FOR r_perm IN SELECT * + FROM permission.usr_perms(iuser) p + JOIN permission.perm_list l + ON (l.id = p.perm) + WHERE l.code = tperm + OR p.perm = -1 LOOP + + PERFORM * + FROM actor.org_unit_descendants(target_ou,r_perm.depth) + WHERE id = r_usr.home_ou; + + IF FOUND THEN + RETURN TRUE; + ELSE + RETURN FALSE; + END IF; + END LOOP; + + RETURN FALSE; +END; +$$; + + +ALTER FUNCTION permission.usr_has_home_perm(iuser integer, tperm text, target_ou integer) OWNER TO evergreen; + +-- +-- Name: usr_has_object_perm(integer, text, text, text); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION usr_has_object_perm(integer, text, text, text) RETURNS boolean + LANGUAGE sql + AS $_$ + SELECT permission.usr_has_object_perm( $1, $2, $3, $4, -1 ); +$_$; + + +ALTER FUNCTION permission.usr_has_object_perm(integer, text, text, text) OWNER TO evergreen; + +-- +-- Name: usr_has_object_perm(integer, text, text, text, integer); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION usr_has_object_perm(iuser integer, tperm text, obj_type text, obj_id text, target_ou integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +DECLARE + r_usr actor.usr%ROWTYPE; + res BOOL; +BEGIN + + SELECT * INTO r_usr FROM actor.usr WHERE id = iuser; + + IF r_usr.active = FALSE THEN + RETURN FALSE; + END IF; + + IF r_usr.super_user = TRUE THEN + RETURN TRUE; + END IF; + + SELECT TRUE INTO res FROM permission.usr_object_perm_map WHERE usr = r_usr.id AND object_type = obj_type AND object_id = obj_id; + + IF FOUND THEN + RETURN TRUE; + END IF; + + IF target_ou > -1 THEN + RETURN permission.usr_has_perm( iuser, tperm, target_ou); + END IF; + + RETURN FALSE; + +END; +$$; + + +ALTER FUNCTION permission.usr_has_object_perm(iuser integer, tperm text, obj_type text, obj_id text, target_ou integer) OWNER TO evergreen; + +-- +-- Name: usr_has_perm(integer, text, integer); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION usr_has_perm(integer, text, integer) RETURNS boolean + LANGUAGE sql + AS $_$ + SELECT CASE + WHEN permission.usr_has_home_perm( $1, $2, $3 ) THEN TRUE + WHEN permission.usr_has_work_perm( $1, $2, $3 ) THEN TRUE + ELSE FALSE + END; +$_$; + + +ALTER FUNCTION permission.usr_has_perm(integer, text, integer) OWNER TO evergreen; + +-- +-- Name: usr_has_perm_at(integer, text); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION usr_has_perm_at(user_id integer, perm_code text) RETURNS SETOF integer + LANGUAGE sql ROWS 1 + AS $_$ +SELECT DISTINCT * FROM permission.usr_has_perm_at_nd( $1, $2 ); +$_$; + + +ALTER FUNCTION permission.usr_has_perm_at(user_id integer, perm_code text) OWNER TO evergreen; + +-- +-- Name: usr_has_perm_at_all(integer, text); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION usr_has_perm_at_all(user_id integer, perm_code text) RETURNS SETOF integer + LANGUAGE sql ROWS 1 + AS $_$ +SELECT DISTINCT * FROM permission.usr_has_perm_at_all_nd( $1, $2 ); +$_$; + + +ALTER FUNCTION permission.usr_has_perm_at_all(user_id integer, perm_code text) OWNER TO evergreen; + +-- +-- Name: usr_has_perm_at_all_nd(integer, text); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION usr_has_perm_at_all_nd(user_id integer, perm_code text) RETURNS SETOF integer + LANGUAGE plpgsql ROWS 1 + AS $$ +-- +-- Return a set of all the org units for which a given user has a given +-- permission, granted either directly or through inheritance from a parent +-- org unit. +-- +-- The permissions apply to a minimum depth of the org unit hierarchy, and +-- to the subordinates of those org units, for the org unit(s) to which the +-- user is assigned. +-- +-- For purposes of this function, the permission.usr_work_ou_map table +-- assigns users to org units. I.e. we ignore the home_ou column of actor.usr. +-- +-- The result set may contain duplicates, which should be eliminated +-- by a DISTINCT clause. +-- +DECLARE + n_head_ou INTEGER; + n_child_ou INTEGER; +BEGIN + FOR n_head_ou IN + SELECT DISTINCT * FROM permission.usr_has_perm_at_nd( user_id, perm_code ) + LOOP + -- + -- The permission applies only at a depth greater than the work org unit. + -- Use connectby() to find all dependent org units at the specified depth. + -- + FOR n_child_ou IN + SELECT ou::INTEGER + FROM connectby( + 'actor.org_unit', -- table name + 'id', -- key column + 'parent_ou', -- recursive foreign key + n_head_ou::TEXT, -- id of starting point + 0 -- no limit on search depth + ) + AS t( + ou text, -- dependent org unit + parent_ou text, -- (ignore) + level int -- (ignore) + ) + LOOP + RETURN NEXT n_child_ou; + END LOOP; + END LOOP; + -- + RETURN; + -- +END; +$$; + + +ALTER FUNCTION permission.usr_has_perm_at_all_nd(user_id integer, perm_code text) OWNER TO evergreen; + +-- +-- Name: usr_has_perm_at_nd(integer, text); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION usr_has_perm_at_nd(user_id integer, perm_code text) RETURNS SETOF integer + LANGUAGE plpgsql ROWS 1 + AS $$ +-- +-- Return a set of all the org units for which a given user has a given +-- permission, granted directly (not through inheritance from a parent +-- org unit). +-- +-- The permissions apply to a minimum depth of the org unit hierarchy, +-- for the org unit(s) to which the user is assigned. (They also apply +-- to the subordinates of those org units, but we don't report the +-- subordinates here.) +-- +-- For purposes of this function, the permission.usr_work_ou_map table +-- defines which users belong to which org units. I.e. we ignore the +-- home_ou column of actor.usr. +-- +-- The result set may contain duplicates, which should be eliminated +-- by a DISTINCT clause. +-- +DECLARE + b_super BOOLEAN; + n_perm INTEGER; + n_min_depth INTEGER; + n_work_ou INTEGER; + n_curr_ou INTEGER; + n_depth INTEGER; + n_curr_depth INTEGER; +BEGIN + -- + -- Check for superuser + -- + SELECT INTO b_super + super_user + FROM + actor.usr + WHERE + id = user_id; + -- + IF NOT FOUND THEN + return; -- No user? No permissions. + ELSIF b_super THEN + -- + -- Super user has all permissions everywhere + -- + FOR n_work_ou IN + SELECT + id + FROM + actor.org_unit + WHERE + parent_ou IS NULL + LOOP + RETURN NEXT n_work_ou; + END LOOP; + RETURN; + END IF; + -- + -- Translate the permission name + -- to a numeric permission id + -- + SELECT INTO n_perm + id + FROM + permission.perm_list + WHERE + code = perm_code; + -- + IF NOT FOUND THEN + RETURN; -- No such permission + END IF; + -- + -- Find the highest-level org unit (i.e. the minimum depth) + -- to which the permission is applied for this user + -- + -- This query is modified from the one in permission.usr_perms(). + -- + SELECT INTO n_min_depth + min( depth ) + FROM ( + SELECT depth + FROM permission.usr_perm_map upm + WHERE upm.usr = user_id + AND (upm.perm = n_perm OR upm.perm = -1) + UNION + SELECT gpm.depth + FROM permission.grp_perm_map gpm + WHERE (gpm.perm = n_perm OR gpm.perm = -1) + AND gpm.grp IN ( + SELECT (permission.grp_ancestors( + (SELECT profile FROM actor.usr WHERE id = user_id) + )).id + ) + UNION + SELECT p.depth + FROM permission.grp_perm_map p + WHERE (p.perm = n_perm OR p.perm = -1) + AND p.grp IN ( + SELECT (permission.grp_ancestors(m.grp)).id + FROM permission.usr_grp_map m + WHERE m.usr = user_id + ) + ) AS x; + -- + IF NOT FOUND THEN + RETURN; -- No such permission for this user + END IF; + -- + -- Identify the org units to which the user is assigned. Note that + -- we pay no attention to the home_ou column in actor.usr. + -- + FOR n_work_ou IN + SELECT + work_ou + FROM + permission.usr_work_ou_map + WHERE + usr = user_id + LOOP -- For each org unit to which the user is assigned + -- + -- Determine the level of the org unit by a lookup in actor.org_unit_type. + -- We take it on faith that this depth agrees with the actual hierarchy + -- defined in actor.org_unit. + -- + SELECT INTO n_depth + type.depth + FROM + actor.org_unit_type type + INNER JOIN actor.org_unit ou + ON ( ou.ou_type = type.id ) + WHERE + ou.id = n_work_ou; + -- + IF NOT FOUND THEN + CONTINUE; -- Maybe raise exception? + END IF; + -- + -- Compare the depth of the work org unit to the + -- minimum depth, and branch accordingly + -- + IF n_depth = n_min_depth THEN + -- + -- The org unit is at the right depth, so return it. + -- + RETURN NEXT n_work_ou; + ELSIF n_depth > n_min_depth THEN + -- + -- Traverse the org unit tree toward the root, + -- until you reach the minimum depth determined above + -- + n_curr_depth := n_depth; + n_curr_ou := n_work_ou; + WHILE n_curr_depth > n_min_depth LOOP + SELECT INTO n_curr_ou + parent_ou + FROM + actor.org_unit + WHERE + id = n_curr_ou; + -- + IF FOUND THEN + n_curr_depth := n_curr_depth - 1; + ELSE + -- + -- This can happen only if the hierarchy defined in + -- actor.org_unit is corrupted, or out of sync with + -- the depths defined in actor.org_unit_type. + -- Maybe we should raise an exception here, instead + -- of silently ignoring the problem. + -- + n_curr_ou = NULL; + EXIT; + END IF; + END LOOP; + -- + IF n_curr_ou IS NOT NULL THEN + RETURN NEXT n_curr_ou; + END IF; + ELSE + -- + -- The permission applies only at a depth greater than the work org unit. + -- Use connectby() to find all dependent org units at the specified depth. + -- + FOR n_curr_ou IN + SELECT ou::INTEGER + FROM connectby( + 'actor.org_unit', -- table name + 'id', -- key column + 'parent_ou', -- recursive foreign key + n_work_ou::TEXT, -- id of starting point + (n_min_depth - n_depth) -- max depth to search, relative + ) -- to starting point + AS t( + ou text, -- dependent org unit + parent_ou text, -- (ignore) + level int -- depth relative to starting point + ) + WHERE + level = n_min_depth - n_depth + LOOP + RETURN NEXT n_curr_ou; + END LOOP; + END IF; + -- + END LOOP; + -- + RETURN; + -- +END; +$$; + + +ALTER FUNCTION permission.usr_has_perm_at_nd(user_id integer, perm_code text) OWNER TO evergreen; + +-- +-- Name: usr_has_work_perm(integer, text, integer); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION usr_has_work_perm(iuser integer, tperm text, target_ou integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +DECLARE + r_woum permission.usr_work_ou_map%ROWTYPE; + r_usr actor.usr%ROWTYPE; + r_perm permission.usr_perm_map%ROWTYPE; +BEGIN + + SELECT * INTO r_usr FROM actor.usr WHERE id = iuser; + + IF r_usr.active = FALSE THEN + RETURN FALSE; + END IF; + + IF r_usr.super_user = TRUE THEN + RETURN TRUE; + END IF; + + FOR r_perm IN SELECT * + FROM permission.usr_perms(iuser) p + JOIN permission.perm_list l + ON (l.id = p.perm) + WHERE l.code = tperm + OR p.perm = -1 + LOOP + + FOR r_woum IN SELECT * + FROM permission.usr_work_ou_map + WHERE usr = iuser + LOOP + + PERFORM * + FROM actor.org_unit_descendants(target_ou,r_perm.depth) + WHERE id = r_woum.work_ou; + + IF FOUND THEN + RETURN TRUE; + END IF; + + END LOOP; + + END LOOP; + + RETURN FALSE; +END; +$$; + + +ALTER FUNCTION permission.usr_has_work_perm(iuser integer, tperm text, target_ou integer) OWNER TO evergreen; + +-- +-- Name: usr_perm_map; Type: TABLE; Schema: permission; Owner: evergreen +-- + +CREATE TABLE usr_perm_map ( + id integer NOT NULL, + usr integer NOT NULL, + perm integer NOT NULL, + depth integer NOT NULL, + grantable boolean DEFAULT false NOT NULL +); + + +ALTER TABLE usr_perm_map OWNER TO evergreen; + +-- +-- Name: usr_perms(integer); Type: FUNCTION; Schema: permission; Owner: evergreen +-- + +CREATE FUNCTION usr_perms(integer) RETURNS SETOF usr_perm_map + LANGUAGE sql STABLE ROWS 10 + AS $_$ + SELECT DISTINCT ON (usr,perm) * + FROM ( + (SELECT * FROM permission.usr_perm_map WHERE usr = $1) + UNION ALL + (SELECT -p.id, $1 AS usr, p.perm, p.depth, p.grantable + FROM permission.grp_perm_map p + WHERE p.grp IN ( + SELECT (permission.grp_ancestors( + (SELECT profile FROM actor.usr WHERE id = $1) + )).id + ) + ) + UNION ALL + (SELECT -p.id, $1 AS usr, p.perm, p.depth, p.grantable + FROM permission.grp_perm_map p + WHERE p.grp IN (SELECT (permission.grp_ancestors(m.grp)).id FROM permission.usr_grp_map m WHERE usr = $1)) + ) AS x + ORDER BY 2, 3, 1 DESC, 5 DESC ; +$_$; + + +ALTER FUNCTION permission.usr_perms(integer) OWNER TO evergreen; + +SET search_path = public, pg_catalog; + +-- +-- Name: approximate_date(text, text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION approximate_date(text, text) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT REGEXP_REPLACE( $1, E'\\D', $2, 'g' ); +$_$; + + +ALTER FUNCTION public.approximate_date(text, text) OWNER TO evergreen; + +-- +-- Name: approximate_high_date(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION approximate_high_date(text) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT approximate_date( $1, '9'); +$_$; + + +ALTER FUNCTION public.approximate_high_date(text) OWNER TO evergreen; + +-- +-- Name: approximate_low_date(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION approximate_low_date(text) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT approximate_date( $1, '0'); +$_$; + + +ALTER FUNCTION public.approximate_low_date(text) OWNER TO evergreen; + +-- +-- Name: call_number_dewey(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION call_number_dewey(text) RETURNS text + LANGUAGE plperlu IMMUTABLE STRICT + AS $_$ + my $txt = shift; + $txt =~ s/^\s+//o; + $txt =~ s/[\[\]\{\}\(\)`'"#<>\*\?\-\+\$\\]+//og; + $txt =~ s/\s+$//o; + if ($txt =~ /(\d{3}(?:\.\d+)?)/o) { + return $1; + } else { + return (split /\s+/, $txt)[0]; + } +$_$; + + +ALTER FUNCTION public.call_number_dewey(text) OWNER TO evergreen; + +-- +-- Name: call_number_dewey(text, integer); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION call_number_dewey(text, integer) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT SUBSTRING(call_number_dewey($1) FROM 1 FOR $2); +$_$; + + +ALTER FUNCTION public.call_number_dewey(text, integer) OWNER TO evergreen; + +-- +-- Name: cleanup_acq_marc(); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION cleanup_acq_marc() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + IF TG_OP = 'UPDATE' THEN + DELETE FROM acq.lineitem_attr + WHERE lineitem = OLD.id AND attr_type IN ('lineitem_provider_attr_definition', 'lineitem_marc_attr_definition','lineitem_generated_attr_definition'); + RETURN NEW; + ELSE + DELETE FROM acq.lineitem_attr WHERE lineitem = OLD.id; + RETURN OLD; + END IF; +END; +$$; + + +ALTER FUNCTION public.cleanup_acq_marc() OWNER TO evergreen; + +-- +-- Name: content_or_null(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION content_or_null(text) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT CASE WHEN $1 ~ E'^\\s*$' THEN NULL ELSE $1 END +$_$; + + +ALTER FUNCTION public.content_or_null(text) OWNER TO evergreen; + +-- +-- Name: entityize(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION entityize(text) RETURNS text + LANGUAGE plperlu IMMUTABLE STRICT + AS $_$ + use Unicode::Normalize; + + my $x = NFC(shift); + $x =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe; + return $x; + +$_$; + + +ALTER FUNCTION public.entityize(text) OWNER TO evergreen; + +-- +-- Name: extract_acq_marc_field(bigint, text, text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION extract_acq_marc_field(bigint, text, text) RETURNS text + LANGUAGE sql + AS $_$ + SELECT extract_marc_field('acq.lineitem', $1, $2, $3); +$_$; + + +ALTER FUNCTION public.extract_acq_marc_field(bigint, text, text) OWNER TO evergreen; + +-- +-- Name: extract_acq_marc_field_set(bigint, text, text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION extract_acq_marc_field_set(bigint, text, text) RETURNS SETOF text + LANGUAGE sql + AS $_$ + SELECT extract_marc_field_set('acq.lineitem', $1, $2, $3); +$_$; + + +ALTER FUNCTION public.extract_acq_marc_field_set(bigint, text, text) OWNER TO evergreen; + +-- +-- Name: first5(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION first5(text) RETURNS text + LANGUAGE sql + AS $_$ + SELECT SUBSTRING( $1, 1, 5); +$_$; + + +ALTER FUNCTION public.first5(text) OWNER TO evergreen; + +-- +-- Name: first_agg(anyelement, anyelement); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION first_agg(anyelement, anyelement) RETURNS anyelement + LANGUAGE sql STABLE + AS $_$ + SELECT CASE WHEN $1 IS NULL THEN $2 ELSE $1 END; +$_$; + + +ALTER FUNCTION public.first_agg(anyelement, anyelement) OWNER TO evergreen; + +-- +-- Name: first_word(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION first_word(text) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_X$ + SELECT COALESCE(SUBSTRING( $1 FROM $_$^\S+$_$), ''); +$_X$; + + +ALTER FUNCTION public.first_word(text) OWNER TO evergreen; + +-- +-- Name: force_to_isbn13(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION force_to_isbn13(text) RETURNS text + LANGUAGE plperlu + AS $_$ + use Business::ISBN; + use strict; + use warnings; + + # Find the first ISBN, force it to ISBN13 and return it + + my $input = shift; + + foreach my $word (split(/\s/, $input)) { + my $isbn = Business::ISBN->new($word); + + # First check the checksum; if it is not valid, fix it and add the original + # bad-checksum ISBN to the output + if ($isbn && $isbn->is_valid_checksum() == Business::ISBN::BAD_CHECKSUM) { + $isbn->fix_checksum(); + } + + # If we now have a valid ISBN, force it to ISBN13 and return it + return $isbn->as_isbn13->isbn if ($isbn && $isbn->is_valid()); + } + return undef; +$_$; + + +ALTER FUNCTION public.force_to_isbn13(text) OWNER TO evergreen; + +-- +-- Name: FUNCTION force_to_isbn13(text); Type: COMMENT; Schema: public; Owner: evergreen +-- + +COMMENT ON FUNCTION force_to_isbn13(text) IS ' +Inspired by translate_isbn1013 + +The force_to_isbn13 function takes an input ISBN and returns the ISBN13 +version without hypens and with a repaired checksum if the checksum was bad +'; + + +-- +-- Name: ingest_acq_marc(); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION ingest_acq_marc() RETURNS trigger + LANGUAGE plpgsql + AS $_$ +DECLARE + value TEXT; + atype TEXT; + prov INT; + pos INT; + adef RECORD; + xpath_string TEXT; +BEGIN + FOR adef IN SELECT *,tableoid FROM acq.lineitem_attr_definition LOOP + + SELECT relname::TEXT INTO atype FROM pg_class WHERE oid = adef.tableoid; + + IF (atype NOT IN ('lineitem_usr_attr_definition','lineitem_local_attr_definition')) THEN + IF (atype = 'lineitem_provider_attr_definition') THEN + SELECT provider INTO prov FROM acq.lineitem_provider_attr_definition WHERE id = adef.id; + CONTINUE WHEN NEW.provider IS NULL OR prov <> NEW.provider; + END IF; + + IF (atype = 'lineitem_provider_attr_definition') THEN + SELECT xpath INTO xpath_string FROM acq.lineitem_provider_attr_definition WHERE id = adef.id; + ELSIF (atype = 'lineitem_marc_attr_definition') THEN + SELECT xpath INTO xpath_string FROM acq.lineitem_marc_attr_definition WHERE id = adef.id; + ELSIF (atype = 'lineitem_generated_attr_definition') THEN + SELECT xpath INTO xpath_string FROM acq.lineitem_generated_attr_definition WHERE id = adef.id; + END IF; + + xpath_string := REGEXP_REPLACE(xpath_string,$re$//?text\(\)$$re$,''); + + IF (adef.code = 'title' OR adef.code = 'author') THEN + -- title and author should not be split + -- FIXME: once oils_xpath can grok XPATH 2.0 functions, we can use + -- string-join in the xpath and remove this special case + SELECT extract_acq_marc_field(id, xpath_string, adef.remove) INTO value FROM acq.lineitem WHERE id = NEW.id; + IF (value IS NOT NULL AND value <> '') THEN + INSERT INTO acq.lineitem_attr (lineitem, definition, attr_type, attr_name, attr_value) + VALUES (NEW.id, adef.id, atype, adef.code, value); + END IF; + ELSE + pos := 1; + LOOP + -- each application of the regex may produce multiple values + FOR value IN + SELECT * FROM extract_acq_marc_field_set( + NEW.id, xpath_string || '[' || pos || ']', adef.remove) + LOOP + + IF (value IS NOT NULL AND value <> '') THEN + INSERT INTO acq.lineitem_attr + (lineitem, definition, attr_type, attr_name, attr_value) + VALUES (NEW.id, adef.id, atype, adef.code, value); + ELSE + EXIT; + END IF; + END LOOP; + IF NOT FOUND THEN + EXIT; + END IF; + pos := pos + 1; + END LOOP; + END IF; + + END IF; + + END LOOP; + + RETURN NULL; +END; +$_$; + + +ALTER FUNCTION public.ingest_acq_marc() OWNER TO evergreen; + +-- +-- Name: integer_or_null(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION integer_or_null(text) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT CASE WHEN $1 ~ E'^\\d+$' THEN $1 ELSE NULL END +$_$; + + +ALTER FUNCTION public.integer_or_null(text) OWNER TO evergreen; + +-- +-- Name: last_agg(anyelement, anyelement); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION last_agg(anyelement, anyelement) RETURNS anyelement + LANGUAGE sql STABLE + AS $_$ + SELECT $2; +$_$; + + +ALTER FUNCTION public.last_agg(anyelement, anyelement) OWNER TO evergreen; + +-- +-- Name: left_trunc(text, integer); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION left_trunc(text, integer) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT SUBSTRING($1,$2); +$_$; + + +ALTER FUNCTION public.left_trunc(text, integer) OWNER TO evergreen; + +-- +-- Name: lowercase(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION lowercase(text) RETURNS text + LANGUAGE plperlu IMMUTABLE STRICT + AS $$ + return lc(shift); +$$; + + +ALTER FUNCTION public.lowercase(text) OWNER TO evergreen; + +-- +-- Name: naco_normalize(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION naco_normalize(text) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT public.naco_normalize($1,''); +$_$; + + +ALTER FUNCTION public.naco_normalize(text) OWNER TO evergreen; + +-- +-- Name: naco_normalize(text, text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION naco_normalize(text, text) RETURNS text + LANGUAGE plperlu IMMUTABLE STRICT + AS $_$ + + use strict; + use Unicode::Normalize; + use Encode; + + my $str = shift; + my $sf = shift; + + # Apply NACO normalization to input string; based on + # http://www.loc.gov/catdir/pcc/naco/SCA_PccNormalization_Final_revised.pdf + # + # Note that unlike a strict reading of the NACO normalization rules, + # output is returned as lowercase instead of uppercase for compatibility + # with previous versions of the Evergreen naco_normalize routine. + + # Convert to upper-case first; even though final output will be lowercase, doing this will + # ensure that the German eszett (ß) and certain ligatures (ff, fi, ffl, etc.) will be handled correctly. + # If there are any bugs in Perl's implementation of upcasing, they will be passed through here. + $str = uc $str; + + # remove non-filing strings + $str =~ s/\x{0098}.*?\x{009C}//g; + + $str = NFKD($str); + + # additional substitutions - 3.6. + $str =~ s/\x{00C6}/AE/g; + $str =~ s/\x{00DE}/TH/g; + $str =~ s/\x{0152}/OE/g; + $str =~ tr/\x{0110}\x{00D0}\x{00D8}\x{0141}\x{2113}\x{02BB}\x{02BC}]['/DDOLl/d; + + # transformations based on Unicode category codes + $str =~ s/[\p{Cc}\p{Cf}\p{Co}\p{Cs}\p{Lm}\p{Mc}\p{Me}\p{Mn}]//g; + + if ($sf && $sf =~ /^a/o) { + my $commapos = index($str, ','); + if ($commapos > -1) { + if ($commapos != length($str) - 1) { + $str =~ s/,/\x07/; # preserve first comma + } + } + } + + # since we've stripped out the control characters, we can now + # use a few as placeholders temporarily + $str =~ tr/+&@\x{266D}\x{266F}#/\x01\x02\x03\x04\x05\x06/; + $str =~ s/[\p{Pc}\p{Pd}\p{Pe}\p{Pf}\p{Pi}\p{Po}\p{Ps}\p{Sk}\p{Sm}\p{So}\p{Zl}\p{Zp}\p{Zs}]/ /g; + $str =~ tr/\x01\x02\x03\x04\x05\x06\x07/+&@\x{266D}\x{266F}#,/; + + # decimal digits + $str =~ tr/\x{0660}-\x{0669}\x{06F0}-\x{06F9}\x{07C0}-\x{07C9}\x{0966}-\x{096F}\x{09E6}-\x{09EF}\x{0A66}-\x{0A6F}\x{0AE6}-\x{0AEF}\x{0B66}-\x{0B6F}\x{0BE6}-\x{0BEF}\x{0C66}-\x{0C6F}\x{0CE6}-\x{0CEF}\x{0D66}-\x{0D6F}\x{0E50}-\x{0E59}\x{0ED0}-\x{0ED9}\x{0F20}-\x{0F29}\x{1040}-\x{1049}\x{1090}-\x{1099}\x{17E0}-\x{17E9}\x{1810}-\x{1819}\x{1946}-\x{194F}\x{19D0}-\x{19D9}\x{1A80}-\x{1A89}\x{1A90}-\x{1A99}\x{1B50}-\x{1B59}\x{1BB0}-\x{1BB9}\x{1C40}-\x{1C49}\x{1C50}-\x{1C59}\x{A620}-\x{A629}\x{A8D0}-\x{A8D9}\x{A900}-\x{A909}\x{A9D0}-\x{A9D9}\x{AA50}-\x{AA59}\x{ABF0}-\x{ABF9}\x{FF10}-\x{FF19}/0-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-9/; + + # intentionally skipping step 8 of the NACO algorithm; if the string + # gets normalized away, that's fine. + + # leading and trailing spaces + $str =~ s/\s+/ /g; + $str =~ s/^\s+//; + $str =~ s/\s+$//g; + + return lc $str; +$_$; + + +ALTER FUNCTION public.naco_normalize(text, text) OWNER TO evergreen; + +-- +-- Name: naco_normalize_keep_comma(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION naco_normalize_keep_comma(text) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT public.naco_normalize($1,'a'); +$_$; + + +ALTER FUNCTION public.naco_normalize_keep_comma(text) OWNER TO evergreen; + +-- +-- Name: non_filing_normalize(text, "char"); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION non_filing_normalize(text, "char") RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT SUBSTRING( + REGEXP_REPLACE( + REGEXP_REPLACE( + $1, + E'\W*$', + '' + ), + ' ', + ' ' + ), + CASE + WHEN $2::INT NOT BETWEEN 48 AND 57 THEN 1 + ELSE $2::TEXT::INT + 1 + END + ); +$_$; + + +ALTER FUNCTION public.non_filing_normalize(text, "char") OWNER TO evergreen; + +-- +-- Name: normalize_space(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION normalize_space(text) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT regexp_replace(regexp_replace(regexp_replace($1, E'\\n', ' ', 'g'), E'(?:^\\s+)|(\\s+$)', '', 'g'), E'\\s+', ' ', 'g'); +$_$; + + +ALTER FUNCTION public.normalize_space(text) OWNER TO evergreen; + +-- +-- Name: oils_tsearch2(); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION oils_tsearch2() RETURNS trigger + LANGUAGE plpgsql + AS $_$ +DECLARE + normalizer RECORD; + value TEXT := ''; + temp_vector TEXT := ''; + ts_rec RECORD; + cur_weight "char"; +BEGIN + + value := NEW.value; + NEW.index_vector = ''::tsvector; + + IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN + FOR normalizer IN + SELECT n.func AS func, + n.param_count AS param_count, + m.params AS params + FROM config.index_normalizer n + JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id) + WHERE field = NEW.field AND m.pos < 0 + ORDER BY m.pos LOOP + EXECUTE 'SELECT ' || normalizer.func || '(' || + quote_literal( value ) || + CASE + WHEN normalizer.param_count > 0 + THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'') + ELSE '' + END || + ')' INTO value; + + END LOOP; + + NEW.value = value; + + FOR normalizer IN + SELECT n.func AS func, + n.param_count AS param_count, + m.params AS params + FROM config.index_normalizer n + JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id) + WHERE field = NEW.field AND m.pos >= 0 + ORDER BY m.pos LOOP + EXECUTE 'SELECT ' || normalizer.func || '(' || + quote_literal( value ) || + CASE + WHEN normalizer.param_count > 0 + THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'') + ELSE '' + END || + ')' INTO value; + + END LOOP; + END IF; + + IF TG_TABLE_NAME::TEXT ~ 'browse_entry$' THEN + + value := ARRAY_TO_STRING( + evergreen.regexp_split_to_array(value, E'\\W+'), ' ' + ); + value := public.search_normalize(value); + NEW.index_vector = to_tsvector(TG_ARGV[0]::regconfig, value); + + ELSIF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN + FOR ts_rec IN + + SELECT DISTINCT m.ts_config, m.index_weight + FROM config.metabib_class_ts_map m + LEFT JOIN metabib.record_attr_vector_list r ON (r.source = NEW.source) + LEFT JOIN config.coded_value_map ccvm ON ( + ccvm.ctype IN ('item_lang', 'language') AND + ccvm.code = m.index_lang AND + r.vlist @> intset(ccvm.id) + ) + WHERE m.field_class = TG_ARGV[0] + AND m.active + AND (m.always OR NOT EXISTS (SELECT 1 FROM config.metabib_field_ts_map WHERE metabib_field = NEW.field)) + AND (m.index_lang IS NULL OR ccvm.id IS NOT NULL) + UNION + SELECT DISTINCT m.ts_config, m.index_weight + FROM config.metabib_field_ts_map m + LEFT JOIN metabib.record_attr_vector_list r ON (r.source = NEW.source) + LEFT JOIN config.coded_value_map ccvm ON ( + ccvm.ctype IN ('item_lang', 'language') AND + ccvm.code = m.index_lang AND + r.vlist @> intset(ccvm.id) + ) + WHERE m.metabib_field = NEW.field + AND m.active + AND (m.index_lang IS NULL OR ccvm.id IS NOT NULL) + ORDER BY index_weight ASC + + LOOP + + IF cur_weight IS NOT NULL AND cur_weight != ts_rec.index_weight THEN + NEW.index_vector = NEW.index_vector || setweight(temp_vector::tsvector,cur_weight); + temp_vector = ''; + END IF; + + cur_weight = ts_rec.index_weight; + SELECT INTO temp_vector temp_vector || ' ' || to_tsvector(ts_rec.ts_config::regconfig, value)::TEXT; + + END LOOP; + NEW.index_vector = NEW.index_vector || setweight(temp_vector::tsvector,cur_weight); + ELSE + NEW.index_vector = to_tsvector(TG_ARGV[0]::regconfig, value); + END IF; + + RETURN NEW; +END; +$_$; + + +ALTER FUNCTION public.oils_tsearch2() OWNER TO evergreen; + +-- +-- Name: remove_commas(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION remove_commas(text) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT regexp_replace($1, ',', '', 'g'); +$_$; + + +ALTER FUNCTION public.remove_commas(text) OWNER TO evergreen; + +-- +-- Name: remove_diacritics(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION remove_diacritics(text) RETURNS text + LANGUAGE plperlu IMMUTABLE STRICT + AS $_$ + use Unicode::Normalize; + + my $x = NFD(shift); + $x =~ s/\pM+//go; + return $x; + +$_$; + + +ALTER FUNCTION public.remove_diacritics(text) OWNER TO evergreen; + +-- +-- Name: remove_paren_substring(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION remove_paren_substring(text) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT regexp_replace($1, $$\([^)]+\)$$, '', 'g'); +$_$; + + +ALTER FUNCTION public.remove_paren_substring(text) OWNER TO evergreen; + +-- +-- Name: remove_whitespace(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION remove_whitespace(text) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT regexp_replace(normalize_space($1), E'\\s+', '', 'g'); +$_$; + + +ALTER FUNCTION public.remove_whitespace(text) OWNER TO evergreen; + +-- +-- Name: right_trunc(text, integer); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION right_trunc(text, integer) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT SUBSTRING($1,1,$2); +$_$; + + +ALTER FUNCTION public.right_trunc(text, integer) OWNER TO evergreen; + +-- +-- Name: search_normalize(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION search_normalize(text) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT public.search_normalize($1,''); +$_$; + + +ALTER FUNCTION public.search_normalize(text) OWNER TO evergreen; + +-- +-- Name: search_normalize(text, text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION search_normalize(text, text) RETURNS text + LANGUAGE plperlu IMMUTABLE STRICT + AS $_$ + + use strict; + use Unicode::Normalize; + use Encode; + + my $str = shift; + my $sf = shift; + + # Apply NACO normalization to input string; based on + # http://www.loc.gov/catdir/pcc/naco/SCA_PccNormalization_Final_revised.pdf + # + # Note that unlike a strict reading of the NACO normalization rules, + # output is returned as lowercase instead of uppercase for compatibility + # with previous versions of the Evergreen naco_normalize routine. + + # Convert to upper-case first; even though final output will be lowercase, doing this will + # ensure that the German eszett (ß) and certain ligatures (ff, fi, ffl, etc.) will be handled correctly. + # If there are any bugs in Perl's implementation of upcasing, they will be passed through here. + $str = uc $str; + + # remove non-filing strings + $str =~ s/\x{0098}.*?\x{009C}//g; + + $str = NFKD($str); + + # additional substitutions - 3.6. + $str =~ s/\x{00C6}/AE/g; + $str =~ s/\x{00DE}/TH/g; + $str =~ s/\x{0152}/OE/g; + $str =~ tr/\x{0110}\x{00D0}\x{00D8}\x{0141}\x{2113}\x{02BB}\x{02BC}][/DDOLl/d; + + # transformations based on Unicode category codes + $str =~ s/[\p{Cc}\p{Cf}\p{Co}\p{Cs}\p{Lm}\p{Mc}\p{Me}\p{Mn}]//g; + + if ($sf && $sf =~ /^a/o) { + my $commapos = index($str, ','); + if ($commapos > -1) { + if ($commapos != length($str) - 1) { + $str =~ s/,/\x07/; # preserve first comma + } + } + } + + # since we've stripped out the control characters, we can now + # use a few as placeholders temporarily + $str =~ tr/+&@\x{266D}\x{266F}#/\x01\x02\x03\x04\x05\x06/; + $str =~ s/[\p{Pc}\p{Pd}\p{Pe}\p{Pf}\p{Pi}\p{Po}\p{Ps}\p{Sk}\p{Sm}\p{So}\p{Zl}\p{Zp}\p{Zs}]/ /g; + $str =~ tr/\x01\x02\x03\x04\x05\x06\x07/+&@\x{266D}\x{266F}#,/; + + # decimal digits + $str =~ tr/\x{0660}-\x{0669}\x{06F0}-\x{06F9}\x{07C0}-\x{07C9}\x{0966}-\x{096F}\x{09E6}-\x{09EF}\x{0A66}-\x{0A6F}\x{0AE6}-\x{0AEF}\x{0B66}-\x{0B6F}\x{0BE6}-\x{0BEF}\x{0C66}-\x{0C6F}\x{0CE6}-\x{0CEF}\x{0D66}-\x{0D6F}\x{0E50}-\x{0E59}\x{0ED0}-\x{0ED9}\x{0F20}-\x{0F29}\x{1040}-\x{1049}\x{1090}-\x{1099}\x{17E0}-\x{17E9}\x{1810}-\x{1819}\x{1946}-\x{194F}\x{19D0}-\x{19D9}\x{1A80}-\x{1A89}\x{1A90}-\x{1A99}\x{1B50}-\x{1B59}\x{1BB0}-\x{1BB9}\x{1C40}-\x{1C49}\x{1C50}-\x{1C59}\x{A620}-\x{A629}\x{A8D0}-\x{A8D9}\x{A900}-\x{A909}\x{A9D0}-\x{A9D9}\x{AA50}-\x{AA59}\x{ABF0}-\x{ABF9}\x{FF10}-\x{FF19}/0-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-90-9/; + + # intentionally skipping step 8 of the NACO algorithm; if the string + # gets normalized away, that's fine. + + # leading and trailing spaces + $str =~ s/\s+/ /g; + $str =~ s/^\s+//; + $str =~ s/\s+$//g; + + return lc $str; +$_$; + + +ALTER FUNCTION public.search_normalize(text, text) OWNER TO evergreen; + +-- +-- Name: search_normalize_keep_comma(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION search_normalize_keep_comma(text) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT public.search_normalize($1,'a'); +$_$; + + +ALTER FUNCTION public.search_normalize_keep_comma(text) OWNER TO evergreen; + +-- +-- Name: split_date_range(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION split_date_range(text) RETURNS text + LANGUAGE sql IMMUTABLE STRICT + AS $_$ + SELECT REGEXP_REPLACE( $1, E'(\\d{4})-(\\d{4})', E'\\1 \\2', 'g' ); +$_$; + + +ALTER FUNCTION public.split_date_range(text) OWNER TO evergreen; + +-- +-- Name: text_concat(text, text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION text_concat(text, text) RETURNS text + LANGUAGE sql STABLE + AS $_$ +SELECT + CASE WHEN $1 IS NULL + THEN $2 + WHEN $2 IS NULL + THEN $1 + ELSE $1 || ' ' || $2 + END; +$_$; + + +ALTER FUNCTION public.text_concat(text, text) OWNER TO evergreen; + +-- +-- Name: translate_isbn1013(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION translate_isbn1013(text) RETURNS text + LANGUAGE plperlu + AS $_$ + use Business::ISBN; + use strict; + use warnings; + + # For each ISBN found in a single string containing a set of ISBNs: + # * Normalize an incoming ISBN to have the correct checksum and no hyphens + # * Convert an incoming ISBN10 or ISBN13 to its counterpart and return + + my $input = shift; + my $output = ''; + + foreach my $word (split(/\s/, $input)) { + my $isbn = Business::ISBN->new($word); + + # First check the checksum; if it is not valid, fix it and add the original + # bad-checksum ISBN to the output + if ($isbn && $isbn->is_valid_checksum() == Business::ISBN::BAD_CHECKSUM) { + $output .= $isbn->isbn() . " "; + $isbn->fix_checksum(); + } + + # If we now have a valid ISBN, convert it to its counterpart ISBN10/ISBN13 + # and add the normalized original ISBN to the output + if ($isbn && $isbn->is_valid()) { + my $isbn_xlated = ($isbn->type eq "ISBN13") ? $isbn->as_isbn10 : $isbn->as_isbn13; + $output .= $isbn->isbn . " "; + + # If we successfully converted the ISBN to its counterpart, add the + # converted ISBN to the output as well + $output .= ($isbn_xlated->isbn . " ") if ($isbn_xlated); + } + } + return $output if $output; + + # If there were no valid ISBNs, just return the raw input + return $input; +$_$; + + +ALTER FUNCTION public.translate_isbn1013(text) OWNER TO evergreen; + +-- +-- Name: FUNCTION translate_isbn1013(text); Type: COMMENT; Schema: public; Owner: evergreen +-- + +COMMENT ON FUNCTION translate_isbn1013(text) IS ' +The translate_isbn1013 function takes an input ISBN and returns the +following in a single space-delimited string if the input ISBN is valid: + - The normalized input ISBN (hyphens stripped) + - The normalized input ISBN with a fixed checksum if the checksum was bad + - The ISBN converted to its ISBN10 or ISBN13 counterpart, if possible +'; + + +-- +-- Name: uppercase(text); Type: FUNCTION; Schema: public; Owner: evergreen +-- + +CREATE FUNCTION uppercase(text) RETURNS text + LANGUAGE plperlu IMMUTABLE STRICT + AS $$ + return uc(shift); +$$; + + +ALTER FUNCTION public.uppercase(text) OWNER TO evergreen; + +SET search_path = reporter, pg_catalog; + +-- +-- Name: disable_materialized_simple_record_trigger(); Type: FUNCTION; Schema: reporter; Owner: evergreen +-- + +CREATE FUNCTION disable_materialized_simple_record_trigger() RETURNS void + LANGUAGE sql + AS $$ + DROP TRIGGER IF EXISTS bbb_simple_rec_trigger ON biblio.record_entry; +$$; + + +ALTER FUNCTION reporter.disable_materialized_simple_record_trigger() OWNER TO evergreen; + +-- +-- Name: enable_materialized_simple_record_trigger(); Type: FUNCTION; Schema: reporter; Owner: evergreen +-- + +CREATE FUNCTION enable_materialized_simple_record_trigger() RETURNS void + LANGUAGE sql + AS $$ + + DELETE FROM reporter.materialized_simple_record; + + INSERT INTO reporter.materialized_simple_record + (id,fingerprint,quality,tcn_source,tcn_value,title,author,publisher,pubdate,isbn,issn) + SELECT DISTINCT ON (id) * FROM reporter.old_super_simple_record; + + CREATE TRIGGER bbb_simple_rec_trigger + AFTER INSERT OR UPDATE OR DELETE ON biblio.record_entry + FOR EACH ROW EXECUTE PROCEDURE reporter.simple_rec_trigger(); + +$$; + + +ALTER FUNCTION reporter.enable_materialized_simple_record_trigger() OWNER TO evergreen; + +-- +-- Name: refresh_materialized_simple_record(); Type: FUNCTION; Schema: reporter; Owner: evergreen +-- + +CREATE FUNCTION refresh_materialized_simple_record() RETURNS void + LANGUAGE sql + AS $$ + SELECT reporter.disable_materialized_simple_record_trigger(); + SELECT reporter.enable_materialized_simple_record_trigger(); +$$; + + +ALTER FUNCTION reporter.refresh_materialized_simple_record() OWNER TO evergreen; + +-- +-- Name: simple_rec_delete(bigint); Type: FUNCTION; Schema: reporter; Owner: evergreen +-- + +CREATE FUNCTION simple_rec_delete(r_id bigint) RETURNS boolean + LANGUAGE sql + AS $_$ + SELECT reporter.simple_rec_update($1, TRUE); +$_$; + + +ALTER FUNCTION reporter.simple_rec_delete(r_id bigint) OWNER TO evergreen; + +-- +-- Name: simple_rec_trigger(); Type: FUNCTION; Schema: reporter; Owner: evergreen +-- + +CREATE FUNCTION simple_rec_trigger() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + IF TG_OP = 'DELETE' THEN + PERFORM reporter.simple_rec_delete(NEW.id); + ELSE + PERFORM reporter.simple_rec_update(NEW.id); + END IF; + + RETURN NEW; +END; +$$; + + +ALTER FUNCTION reporter.simple_rec_trigger() OWNER TO evergreen; + +-- +-- Name: simple_rec_update(bigint); Type: FUNCTION; Schema: reporter; Owner: evergreen +-- + +CREATE FUNCTION simple_rec_update(r_id bigint) RETURNS boolean + LANGUAGE sql + AS $_$ + SELECT reporter.simple_rec_update($1, FALSE); +$_$; + + +ALTER FUNCTION reporter.simple_rec_update(r_id bigint) OWNER TO evergreen; + +-- +-- Name: simple_rec_update(bigint, boolean); Type: FUNCTION; Schema: reporter; Owner: evergreen +-- + +CREATE FUNCTION simple_rec_update(r_id bigint, deleted boolean) RETURNS boolean + LANGUAGE plpgsql + AS $$ +BEGIN + + DELETE FROM reporter.materialized_simple_record WHERE id = r_id; + + IF NOT deleted THEN + INSERT INTO reporter.materialized_simple_record SELECT DISTINCT ON (id) * FROM reporter.old_super_simple_record WHERE id = r_id; + END IF; + + RETURN TRUE; + +END; +$$; + + +ALTER FUNCTION reporter.simple_rec_update(r_id bigint, deleted boolean) OWNER TO evergreen; + +SET search_path = search, pg_catalog; + +-- +-- Name: facets_for_metarecord_set(text[], bigint[]); Type: FUNCTION; Schema: search; Owner: evergreen +-- + +CREATE FUNCTION facets_for_metarecord_set(ignore_facet_classes text[], hits bigint[]) RETURNS TABLE(id integer, value text, count bigint) + LANGUAGE sql + AS $_$ + SELECT id, value, count FROM ( + SELECT mfae.field AS id, + mfae.value, + COUNT(DISTINCT mmrsm.metarecord), + row_number() OVER ( + PARTITION BY mfae.field ORDER BY COUNT(distinct mmrsm.metarecord) DESC + ) AS rownum + FROM metabib.facet_entry mfae + JOIN metabib.metarecord_source_map mmrsm ON (mfae.source = mmrsm.source) + JOIN config.metabib_field cmf ON (cmf.id = mfae.field) + WHERE mmrsm.metarecord IN (SELECT * FROM unnest($2)) + AND cmf.facet_field + AND cmf.field_class NOT IN (SELECT * FROM unnest($1)) + GROUP by 1, 2 + ) all_facets + WHERE rownum <= (SELECT COALESCE((SELECT value::INT FROM config.global_flag WHERE name = 'search.max_facets_per_field' AND enabled), 1000)); +$_$; + + +ALTER FUNCTION search.facets_for_metarecord_set(ignore_facet_classes text[], hits bigint[]) OWNER TO evergreen; + +-- +-- Name: facets_for_record_set(text[], bigint[]); Type: FUNCTION; Schema: search; Owner: evergreen +-- + +CREATE FUNCTION facets_for_record_set(ignore_facet_classes text[], hits bigint[]) RETURNS TABLE(id integer, value text, count bigint) + LANGUAGE sql + AS $_$ + SELECT id, value, count FROM ( + SELECT mfae.field AS id, + mfae.value, + COUNT(DISTINCT mmrsm.source), + row_number() OVER ( + PARTITION BY mfae.field ORDER BY COUNT(distinct mmrsm.source) DESC + ) AS rownum + FROM metabib.facet_entry mfae + JOIN metabib.metarecord_source_map mmrsm ON (mfae.source = mmrsm.source) + JOIN config.metabib_field cmf ON (cmf.id = mfae.field) + WHERE mmrsm.source IN (SELECT * FROM unnest($2)) + AND cmf.facet_field + AND cmf.field_class NOT IN (SELECT * FROM unnest($1)) + GROUP by 1, 2 + ) all_facets + WHERE rownum <= (SELECT COALESCE((SELECT value::INT FROM config.global_flag WHERE name = 'search.max_facets_per_field' AND enabled), 1000)); +$_$; + + +ALTER FUNCTION search.facets_for_record_set(ignore_facet_classes text[], hits bigint[]) OWNER TO evergreen; + +-- +-- Name: query_parser_fts(integer, integer, text, integer[], integer[], integer, integer, integer, boolean, boolean, boolean, integer); Type: FUNCTION; Schema: search; Owner: evergreen +-- + +CREATE FUNCTION query_parser_fts(param_search_ou integer, param_depth integer, param_query text, param_statuses integer[], param_locations integer[], param_offset integer, param_check integer, param_limit integer, metarecord boolean, staff boolean, deleted_search boolean, param_pref_ou integer DEFAULT NULL::integer) RETURNS SETOF search_result + LANGUAGE plpgsql + AS $$ +DECLARE + + current_res search.search_result%ROWTYPE; + search_org_list INT[]; + luri_org_list INT[]; + tmp_int_list INT[]; + + check_limit INT; + core_limit INT; + core_offset INT; + tmp_int INT; + + core_result RECORD; + core_cursor REFCURSOR; + core_rel_query TEXT; + + total_count INT := 0; + check_count INT := 0; + deleted_count INT := 0; + visible_count INT := 0; + excluded_count INT := 0; + + luri_as_copy BOOL; +BEGIN + + check_limit := COALESCE( param_check, 1000 ); + core_limit := COALESCE( param_limit, 25000 ); + core_offset := COALESCE( param_offset, 0 ); + + SELECT COALESCE( enabled, FALSE ) INTO luri_as_copy FROM config.global_flag WHERE name = 'opac.located_uri.act_as_copy'; + + -- core_skip_chk := COALESCE( param_skip_chk, 1 ); + + IF param_search_ou > 0 THEN + IF param_depth IS NOT NULL THEN + SELECT ARRAY_AGG(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou, param_depth ); + ELSE + SELECT ARRAY_AGG(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou ); + END IF; + + IF luri_as_copy THEN + SELECT ARRAY_AGG(distinct id) INTO luri_org_list FROM actor.org_unit_full_path( param_search_ou ); + ELSE + SELECT ARRAY_AGG(distinct id) INTO luri_org_list FROM actor.org_unit_ancestors( param_search_ou ); + END IF; + + ELSIF param_search_ou < 0 THEN + SELECT ARRAY_AGG(distinct org_unit) INTO search_org_list FROM actor.org_lasso_map WHERE lasso = -param_search_ou; + + FOR tmp_int IN SELECT * FROM UNNEST(search_org_list) LOOP + + IF luri_as_copy THEN + SELECT ARRAY_AGG(distinct id) INTO tmp_int_list FROM actor.org_unit_full_path( tmp_int ); + ELSE + SELECT ARRAY_AGG(distinct id) INTO tmp_int_list FROM actor.org_unit_ancestors( tmp_int ); + END IF; + + luri_org_list := luri_org_list || tmp_int_list; + END LOOP; + + SELECT ARRAY_AGG(DISTINCT x.id) INTO luri_org_list FROM UNNEST(luri_org_list) x(id); + + ELSIF param_search_ou = 0 THEN + -- reserved for user lassos (ou_buckets/type='lasso') with ID passed in depth ... hack? sure. + END IF; + + IF param_pref_ou IS NOT NULL THEN + IF luri_as_copy THEN + SELECT ARRAY_AGG(distinct id) INTO tmp_int_list FROM actor.org_unit_full_path( param_pref_ou ); + ELSE + SELECT ARRAY_AGG(distinct id) INTO tmp_int_list FROM actor.org_unit_ancestors( param_pref_ou ); + END IF; + + luri_org_list := luri_org_list || tmp_int_list; + END IF; + + OPEN core_cursor FOR EXECUTE param_query; + + LOOP + + FETCH core_cursor INTO core_result; + EXIT WHEN NOT FOUND; + EXIT WHEN total_count >= core_limit; + + total_count := total_count + 1; + + CONTINUE WHEN total_count NOT BETWEEN core_offset + 1 AND check_limit + core_offset; + + check_count := check_count + 1; + + IF NOT deleted_search THEN + + PERFORM 1 FROM biblio.record_entry b WHERE NOT b.deleted AND b.id IN ( SELECT * FROM unnest( core_result.records ) ); + IF NOT FOUND THEN + -- RAISE NOTICE ' % were all deleted ... ', core_result.records; + deleted_count := deleted_count + 1; + CONTINUE; + END IF; + + PERFORM 1 + FROM biblio.record_entry b + JOIN config.bib_source s ON (b.source = s.id) + WHERE s.transcendant + AND b.id IN ( SELECT * FROM unnest( core_result.records ) ); + + IF FOUND THEN + -- RAISE NOTICE ' % were all transcendant ... ', core_result.records; + visible_count := visible_count + 1; + + current_res.id = core_result.id; + current_res.rel = core_result.rel; + + tmp_int := 1; + IF metarecord THEN + SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id; + END IF; + + IF tmp_int = 1 THEN + current_res.record = core_result.records[1]; + ELSE + current_res.record = NULL; + END IF; + + RETURN NEXT current_res; + + CONTINUE; + END IF; + + PERFORM 1 + FROM asset.call_number cn + JOIN asset.uri_call_number_map map ON (map.call_number = cn.id) + JOIN asset.uri uri ON (map.uri = uri.id) + WHERE NOT cn.deleted + AND cn.label = '##URI##' + AND uri.active + AND ( param_locations IS NULL OR array_upper(param_locations, 1) IS NULL ) + AND cn.record IN ( SELECT * FROM unnest( core_result.records ) ) + AND cn.owning_lib IN ( SELECT * FROM unnest( luri_org_list ) ) + LIMIT 1; + + IF FOUND THEN + -- RAISE NOTICE ' % have at least one URI ... ', core_result.records; + visible_count := visible_count + 1; + + current_res.id = core_result.id; + current_res.rel = core_result.rel; + + tmp_int := 1; + IF metarecord THEN + SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id; + END IF; + + IF tmp_int = 1 THEN + current_res.record = core_result.records[1]; + ELSE + current_res.record = NULL; + END IF; + + RETURN NEXT current_res; + + CONTINUE; + END IF; + + IF param_statuses IS NOT NULL AND array_upper(param_statuses, 1) > 0 THEN + + PERFORM 1 + FROM asset.call_number cn + JOIN asset.copy cp ON (cp.call_number = cn.id) + WHERE NOT cn.deleted + AND NOT cp.deleted + AND cp.status IN ( SELECT * FROM unnest( param_statuses ) ) + AND cn.record IN ( SELECT * FROM unnest( core_result.records ) ) + AND cp.circ_lib IN ( SELECT * FROM unnest( search_org_list ) ) + LIMIT 1; + + IF NOT FOUND THEN + PERFORM 1 + FROM biblio.peer_bib_copy_map pr + JOIN asset.copy cp ON (cp.id = pr.target_copy) + WHERE NOT cp.deleted + AND cp.status IN ( SELECT * FROM unnest( param_statuses ) ) + AND pr.peer_record IN ( SELECT * FROM unnest( core_result.records ) ) + AND cp.circ_lib IN ( SELECT * FROM unnest( search_org_list ) ) + LIMIT 1; + + IF NOT FOUND THEN + -- RAISE NOTICE ' % and multi-home linked records were all status-excluded ... ', core_result.records; + excluded_count := excluded_count + 1; + CONTINUE; + END IF; + END IF; + + END IF; + + IF param_locations IS NOT NULL AND array_upper(param_locations, 1) > 0 THEN + + PERFORM 1 + FROM asset.call_number cn + JOIN asset.copy cp ON (cp.call_number = cn.id) + WHERE NOT cn.deleted + AND NOT cp.deleted + AND cp.location IN ( SELECT * FROM unnest( param_locations ) ) + AND cn.record IN ( SELECT * FROM unnest( core_result.records ) ) + AND cp.circ_lib IN ( SELECT * FROM unnest( search_org_list ) ) + LIMIT 1; + + IF NOT FOUND THEN + PERFORM 1 + FROM biblio.peer_bib_copy_map pr + JOIN asset.copy cp ON (cp.id = pr.target_copy) + WHERE NOT cp.deleted + AND cp.location IN ( SELECT * FROM unnest( param_locations ) ) + AND pr.peer_record IN ( SELECT * FROM unnest( core_result.records ) ) + AND cp.circ_lib IN ( SELECT * FROM unnest( search_org_list ) ) + LIMIT 1; + + IF NOT FOUND THEN + -- RAISE NOTICE ' % and multi-home linked records were all copy_location-excluded ... ', core_result.records; + excluded_count := excluded_count + 1; + CONTINUE; + END IF; + END IF; + + END IF; + + IF staff IS NULL OR NOT staff THEN + + PERFORM 1 + FROM asset.opac_visible_copies + WHERE circ_lib IN ( SELECT * FROM unnest( search_org_list ) ) + AND record IN ( SELECT * FROM unnest( core_result.records ) ) + LIMIT 1; + + IF NOT FOUND THEN + PERFORM 1 + FROM biblio.peer_bib_copy_map pr + JOIN asset.opac_visible_copies cp ON (cp.copy_id = pr.target_copy) + WHERE cp.circ_lib IN ( SELECT * FROM unnest( search_org_list ) ) + AND pr.peer_record IN ( SELECT * FROM unnest( core_result.records ) ) + LIMIT 1; + + IF NOT FOUND THEN + + -- RAISE NOTICE ' % and multi-home linked records were all visibility-excluded ... ', core_result.records; + excluded_count := excluded_count + 1; + CONTINUE; + END IF; + END IF; + + ELSE + + PERFORM 1 + FROM asset.call_number cn + JOIN asset.copy cp ON (cp.call_number = cn.id) + WHERE NOT cn.deleted + AND NOT cp.deleted + AND cp.circ_lib IN ( SELECT * FROM unnest( search_org_list ) ) + AND cn.record IN ( SELECT * FROM unnest( core_result.records ) ) + LIMIT 1; + + IF NOT FOUND THEN + + PERFORM 1 + FROM biblio.peer_bib_copy_map pr + JOIN asset.copy cp ON (cp.id = pr.target_copy) + WHERE NOT cp.deleted + AND cp.circ_lib IN ( SELECT * FROM unnest( search_org_list ) ) + AND pr.peer_record IN ( SELECT * FROM unnest( core_result.records ) ) + LIMIT 1; + + IF NOT FOUND THEN + + PERFORM 1 + FROM asset.call_number cn + JOIN asset.copy cp ON (cp.call_number = cn.id) + WHERE cn.record IN ( SELECT * FROM unnest( core_result.records ) ) + AND NOT cp.deleted + LIMIT 1; + + IF NOT FOUND THEN + -- Recheck Located URI visibility in the case of no "foreign" copies + PERFORM 1 + FROM asset.call_number cn + JOIN asset.uri_call_number_map map ON (map.call_number = cn.id) + JOIN asset.uri uri ON (map.uri = uri.id) + WHERE NOT cn.deleted + AND cn.label = '##URI##' + AND uri.active + AND cn.record IN ( SELECT * FROM unnest( core_result.records ) ) + AND cn.owning_lib NOT IN ( SELECT * FROM unnest( luri_org_list ) ) + LIMIT 1; + + IF FOUND THEN + -- RAISE NOTICE ' % were excluded for foreign located URIs... ', core_result.records; + excluded_count := excluded_count + 1; + CONTINUE; + END IF; + ELSE + -- RAISE NOTICE ' % and multi-home linked records were all visibility-excluded ... ', core_result.records; + excluded_count := excluded_count + 1; + CONTINUE; + END IF; + END IF; + + END IF; + + END IF; + + END IF; + + visible_count := visible_count + 1; + + current_res.id = core_result.id; + current_res.rel = core_result.rel; + + tmp_int := 1; + IF metarecord THEN + SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id; + END IF; + + IF tmp_int = 1 THEN + current_res.record = core_result.records[1]; + ELSE + current_res.record = NULL; + END IF; + + RETURN NEXT current_res; + + IF visible_count % 1000 = 0 THEN + -- RAISE NOTICE ' % visible so far ... ', visible_count; + END IF; + + END LOOP; + + current_res.id = NULL; + current_res.rel = NULL; + current_res.record = NULL; + current_res.total = total_count; + current_res.checked = check_count; + current_res.deleted = deleted_count; + current_res.visible = visible_count; + current_res.excluded = excluded_count; + + CLOSE core_cursor; + + RETURN NEXT current_res; + +END; +$$; + + +ALTER FUNCTION search.query_parser_fts(param_search_ou integer, param_depth integer, param_query text, param_statuses integer[], param_locations integer[], param_offset integer, param_check integer, param_limit integer, metarecord boolean, staff boolean, deleted_search boolean, param_pref_ou integer) OWNER TO evergreen; + +SET search_path = serial, pg_catalog; + +-- +-- Name: materialize_holding_code(); Type: FUNCTION; Schema: serial; Owner: evergreen +-- + +CREATE FUNCTION materialize_holding_code() RETURNS trigger + LANGUAGE plperlu + AS $_X$ +use strict; + +use MARC::Field; +use JSON::XS; + +if (not defined $_TD->{new}{holding_code}) { + elog(WARNING, 'NULL in "holding_code" column of serial.issuance allowed for now, but may not be useful'); + return; +} + +# Do nothing if holding_code has not changed... + +if ($_TD->{new}{holding_code} eq $_TD->{old}{holding_code}) { + # ... unless the following internal flag is set. + + my $flag_rv = spi_exec_query(q{ + SELECT * FROM config.internal_flag + WHERE name = 'serial.rematerialize_on_same_holding_code' AND enabled + }, 1); + return unless $flag_rv->{processed}; +} + + +my $holding_code = (new JSON::XS)->decode($_TD->{new}{holding_code}); + +my $field = new MARC::Field('999', @$holding_code); # tag doesnt matter + +my $dstmt = spi_prepare( + 'DELETE FROM serial.materialized_holding_code WHERE issuance = $1', + 'INT' +); +spi_exec_prepared($dstmt, $_TD->{new}{id}); + +my $istmt = spi_prepare( + q{ + INSERT INTO serial.materialized_holding_code ( + issuance, subfield, value + ) VALUES ($1, $2, $3) + }, qw{INT CHAR TEXT} +); + +foreach ($field->subfields) { + spi_exec_prepared( + $istmt, + $_TD->{new}{id}, + $_->[0], + $_->[1] + ); +} + +return; + +$_X$; + + +ALTER FUNCTION serial.materialize_holding_code() OWNER TO evergreen; + +SET search_path = staging, pg_catalog; + +-- +-- Name: purge_pending_users(); Type: FUNCTION; Schema: staging; Owner: evergreen +-- + +CREATE FUNCTION purge_pending_users() RETURNS void + LANGUAGE plpgsql + AS $$ +DECLARE + org_id INT; + intvl TEXT; +BEGIN + FOR org_id IN SELECT DISTINCT(home_ou) FROM staging.user_stage LOOP + + SELECT INTO intvl value FROM + actor.org_unit_ancestor_setting( + 'opac.pending_user_expire_interval', org_id); + + CONTINUE WHEN intvl IS NULL OR intvl ILIKE 'null'; + + -- de-JSON-ify the string + SELECT INTO intvl TRIM(BOTH '"' FROM intvl); + + DELETE FROM staging.user_stage + WHERE home_ou = org_id AND row_date + intvl::INTERVAL < NOW(); + + END LOOP; +END; +$$; + + +ALTER FUNCTION staging.purge_pending_users() OWNER TO evergreen; + +SET search_path = unapi, pg_catalog; + +-- +-- Name: acl(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION acl(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name location, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + id AS ident, + holdable, + opac_visible, + label_prefix AS prefix, + label_suffix AS suffix + ), + name + ) + FROM asset.copy_location + WHERE id = $1; +$_$; + + +ALTER FUNCTION unapi.acl(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: acn(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION acn(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name volume, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@acn/' || acn.id AS id, + acn.id AS vol_id, o.shortname AS lib, + o.opac_visible AS opac_visible, + deleted, label, label_sortkey, label_class, record + ), + unapi.aou( owning_lib, $2, 'owning_lib', evergreen.array_remove_item_by_value($4,'acn'), $5, $6, $7, $8), + CASE + WHEN ('acp' = ANY ($4)) THEN + CASE WHEN $6 IS NOT NULL THEN + XMLELEMENT( name copies, + (SELECT XMLAGG(acp ORDER BY rank_avail) FROM ( + SELECT unapi.acp( cp.id, 'xml', 'copy', evergreen.array_remove_item_by_value($4,'acn'), $5, $6, $7, $8, FALSE), + evergreen.rank_cp(cp) AS rank_avail + FROM asset.copy cp + JOIN actor.org_unit_descendants( (SELECT id FROM actor.org_unit WHERE shortname = $5), $6) aoud ON (cp.circ_lib = aoud.id) + WHERE cp.call_number = acn.id + AND cp.deleted IS FALSE + ORDER BY rank_avail, COALESCE(cp.copy_number,0), cp.barcode + LIMIT ($7 -> 'acp')::INT + OFFSET ($8 -> 'acp')::INT + )x) + ) + ELSE + XMLELEMENT( name copies, + (SELECT XMLAGG(acp ORDER BY rank_avail) FROM ( + SELECT unapi.acp( cp.id, 'xml', 'copy', evergreen.array_remove_item_by_value($4,'acn'), $5, $6, $7, $8, FALSE), + evergreen.rank_cp(cp) AS rank_avail + FROM asset.copy cp + JOIN actor.org_unit_descendants( (SELECT id FROM actor.org_unit WHERE shortname = $5) ) aoud ON (cp.circ_lib = aoud.id) + WHERE cp.call_number = acn.id + AND cp.deleted IS FALSE + ORDER BY rank_avail, COALESCE(cp.copy_number,0), cp.barcode + LIMIT ($7 -> 'acp')::INT + OFFSET ($8 -> 'acp')::INT + )x) + ) + END + ELSE NULL + END, + XMLELEMENT( + name uris, + (SELECT XMLAGG(auri) FROM (SELECT unapi.auri(uri,'xml','uri', evergreen.array_remove_item_by_value($4,'acn'), $5, $6, $7, $8, FALSE) FROM asset.uri_call_number_map WHERE call_number = acn.id)x) + ), + unapi.acnp( acn.prefix, 'marcxml', 'prefix', evergreen.array_remove_item_by_value($4,'acn'), $5, $6, $7, $8, FALSE), + unapi.acns( acn.suffix, 'marcxml', 'suffix', evergreen.array_remove_item_by_value($4,'acn'), $5, $6, $7, $8, FALSE), + CASE WHEN ('bre' = ANY ($4)) THEN unapi.bre( acn.record, 'marcxml', 'record', evergreen.array_remove_item_by_value($4,'acn'), $5, $6, $7, $8, FALSE) ELSE NULL END + ) AS x + FROM asset.call_number acn + JOIN actor.org_unit o ON (o.id = acn.owning_lib) + WHERE acn.id = $1 + AND acn.deleted IS FALSE + GROUP BY acn.id, o.shortname, o.opac_visible, deleted, label, label_sortkey, label_class, owning_lib, record, acn.prefix, acn.suffix; +$_$; + + +ALTER FUNCTION unapi.acn(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: acnp(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION acnp(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name call_number_prefix, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + id AS ident, + label, + 'tag:open-ils.org:U2@aou/' || owning_lib AS owning_lib, + label_sortkey + ) + ) + FROM asset.call_number_prefix + WHERE id = $1; +$_$; + + +ALTER FUNCTION unapi.acnp(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: acns(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION acns(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name call_number_suffix, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + id AS ident, + label, + 'tag:open-ils.org:U2@aou/' || owning_lib AS owning_lib, + label_sortkey + ) + ) + FROM asset.call_number_suffix + WHERE id = $1; +$_$; + + +ALTER FUNCTION unapi.acns(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: acp(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION acp(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name copy, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@acp/' || id AS id, id AS copy_id, + create_date, edit_date, copy_number, circulate, deposit, + ref, holdable, deleted, deposit_amount, price, barcode, + circ_modifier, circ_as_type, opac_visible, age_protect + ), + unapi.ccs( status, $2, 'status', evergreen.array_remove_item_by_value($4,'acp'), $5, $6, $7, $8, FALSE), + unapi.acl( location, $2, 'location', evergreen.array_remove_item_by_value($4,'acp'), $5, $6, $7, $8, FALSE), + unapi.aou( circ_lib, $2, 'circ_lib', evergreen.array_remove_item_by_value($4,'acp'), $5, $6, $7, $8), + unapi.aou( circ_lib, $2, 'circlib', evergreen.array_remove_item_by_value($4,'acp'), $5, $6, $7, $8), + CASE WHEN ('acn' = ANY ($4)) THEN unapi.acn( call_number, $2, 'call_number', evergreen.array_remove_item_by_value($4,'acp'), $5, $6, $7, $8, FALSE) ELSE NULL END, + CASE + WHEN ('acpn' = ANY ($4)) THEN + XMLELEMENT( name copy_notes, + (SELECT XMLAGG(acpn) FROM ( + SELECT unapi.acpn( id, 'xml', 'copy_note', evergreen.array_remove_item_by_value($4,'acp'), $5, $6, $7, $8, FALSE) + FROM asset.copy_note + WHERE owning_copy = cp.id AND pub + )x) + ) + ELSE NULL + END, + CASE + WHEN ('ascecm' = ANY ($4)) THEN + XMLELEMENT( name statcats, + (SELECT XMLAGG(ascecm) FROM ( + SELECT unapi.ascecm( stat_cat_entry, 'xml', 'statcat', evergreen.array_remove_item_by_value($4,'acp'), $5, $6, $7, $8, FALSE) + FROM asset.stat_cat_entry_copy_map + WHERE owning_copy = cp.id + )x) + ) + ELSE NULL + END, + CASE + WHEN ('bre' = ANY ($4)) THEN + XMLELEMENT( name foreign_records, + (SELECT XMLAGG(bre) FROM ( + SELECT unapi.bre(peer_record,'marcxml','record','{}'::TEXT[], $5, $6, $7, $8, FALSE) + FROM biblio.peer_bib_copy_map + WHERE target_copy = cp.id + )x) + + ) + ELSE NULL + END, + CASE + WHEN ('bmp' = ANY ($4)) THEN + XMLELEMENT( name monograph_parts, + (SELECT XMLAGG(bmp) FROM ( + SELECT unapi.bmp( part, 'xml', 'monograph_part', evergreen.array_remove_item_by_value($4,'acp'), $5, $6, $7, $8, FALSE) + FROM asset.copy_part_map + WHERE target_copy = cp.id + )x) + ) + ELSE NULL + END, + CASE + WHEN ('circ' = ANY ($4)) THEN + XMLELEMENT( name current_circulation, + (SELECT XMLAGG(circ) FROM ( + SELECT unapi.circ( id, 'xml', 'circ', evergreen.array_remove_item_by_value($4,'circ'), $5, $6, $7, $8, FALSE) + FROM action.circulation + WHERE target_copy = cp.id + AND checkin_time IS NULL + )x) + ) + ELSE NULL + END + ) + FROM asset.copy cp + WHERE id = $1 + AND cp.deleted IS FALSE + GROUP BY id, status, location, circ_lib, call_number, create_date, + edit_date, copy_number, circulate, deposit, ref, holdable, + deleted, deposit_amount, price, barcode, circ_modifier, + circ_as_type, opac_visible, age_protect; +$_$; + + +ALTER FUNCTION unapi.acp(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: acpn(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION acpn(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name copy_note, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + create_date AS date, + title + ), + value + ) + FROM asset.copy_note + WHERE id = $1; +$_$; + + +ALTER FUNCTION unapi.acpn(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: aou(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION aou(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE plpgsql STABLE + AS $_$ +DECLARE + output XML; +BEGIN + IF ename = 'circlib' THEN + SELECT XMLELEMENT( + name circlib, + XMLATTRIBUTES( + 'http://open-ils.org/spec/actors/v1' AS xmlns, + id AS ident + ), + name + ) INTO output + FROM actor.org_unit aou + WHERE id = obj_id; + ELSE + EXECUTE $$SELECT XMLELEMENT( + name $$ || ename || $$, + XMLATTRIBUTES( + 'http://open-ils.org/spec/actors/v1' AS xmlns, + 'tag:open-ils.org:U2@aou/' || id AS id, + shortname, name, opac_visible + ) + ) + FROM actor.org_unit aou + WHERE id = $1 $$ INTO output USING obj_id; + END IF; + + RETURN output; + +END; +$_$; + + +ALTER FUNCTION unapi.aou(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: ascecm(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION ascecm(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name statcat, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + sc.name, + sc.opac_visible + ), + asce.value + ) + FROM asset.stat_cat_entry asce + JOIN asset.stat_cat sc ON (sc.id = asce.stat_cat) + WHERE asce.id = $1; +$_$; + + +ALTER FUNCTION unapi.ascecm(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: auri(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION auri(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name uri, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@auri/' || uri.id AS id, + use_restriction, + href, + label + ), + CASE + WHEN ('acn' = ANY ($4)) THEN + XMLELEMENT( name copies, + (SELECT XMLAGG(acn) FROM (SELECT unapi.acn( call_number, 'xml', 'copy', evergreen.array_remove_item_by_value($4,'auri'), $5, $6, $7, $8, FALSE) FROM asset.uri_call_number_map WHERE uri = uri.id)x) + ) + ELSE NULL + END + ) AS x + FROM asset.uri uri + WHERE uri.id = $1 + GROUP BY uri.id, use_restriction, href, label; +$_$; + + +ALTER FUNCTION unapi.auri(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: biblio_record_entry_feed(bigint[], text, text[], text, integer, public.hstore, public.hstore, boolean, text, text, text, text, text, xml); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION biblio_record_entry_feed(id_list bigint[], format text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true, title text DEFAULT NULL::text, description text DEFAULT NULL::text, creator text DEFAULT NULL::text, update_ts text DEFAULT NULL::text, unapi_url text DEFAULT NULL::text, header_xml xml DEFAULT NULL::xml) RETURNS xml + LANGUAGE plpgsql STABLE + AS $_$ +DECLARE + layout unapi.bre_output_layout%ROWTYPE; + transform config.xml_transform%ROWTYPE; + item_format TEXT; + tmp_xml TEXT; + xmlns_uri TEXT := 'http://open-ils.org/spec/feed-xml/v1'; + ouid INT; + element_list TEXT[]; +BEGIN + + IF org = '-' OR org IS NULL THEN + SELECT shortname INTO org FROM evergreen.org_top(); + END IF; + + SELECT id INTO ouid FROM actor.org_unit WHERE shortname = org; + SELECT * INTO layout FROM unapi.bre_output_layout WHERE name = format; + + IF layout.name IS NULL THEN + RETURN NULL::XML; + END IF; + + SELECT * INTO transform FROM config.xml_transform WHERE name = layout.transform; + xmlns_uri := COALESCE(transform.namespace_uri,xmlns_uri); + + -- Gather the bib xml + SELECT XMLAGG( unapi.bre(i, format, '', includes, org, depth, slimit, soffset, include_xmlns)) INTO tmp_xml FROM UNNEST( id_list ) i; + + IF layout.title_element IS NOT NULL THEN + EXECUTE 'SELECT XMLCONCAT( XMLELEMENT( name '|| layout.title_element ||', XMLATTRIBUTES( $1 AS xmlns), $3), $2)' INTO tmp_xml USING xmlns_uri, tmp_xml::XML, title; + END IF; + + IF layout.description_element IS NOT NULL THEN + EXECUTE 'SELECT XMLCONCAT( XMLELEMENT( name '|| layout.description_element ||', XMLATTRIBUTES( $1 AS xmlns), $3), $2)' INTO tmp_xml USING xmlns_uri, tmp_xml::XML, description; + END IF; + + IF layout.creator_element IS NOT NULL THEN + EXECUTE 'SELECT XMLCONCAT( XMLELEMENT( name '|| layout.creator_element ||', XMLATTRIBUTES( $1 AS xmlns), $3), $2)' INTO tmp_xml USING xmlns_uri, tmp_xml::XML, creator; + END IF; + + IF layout.update_ts_element IS NOT NULL THEN + EXECUTE 'SELECT XMLCONCAT( XMLELEMENT( name '|| layout.update_ts_element ||', XMLATTRIBUTES( $1 AS xmlns), $3), $2)' INTO tmp_xml USING xmlns_uri, tmp_xml::XML, update_ts; + END IF; + + IF unapi_url IS NOT NULL THEN + EXECUTE $$SELECT XMLCONCAT( XMLELEMENT( name link, XMLATTRIBUTES( 'http://www.w3.org/1999/xhtml' AS xmlns, 'unapi-server' AS rel, $1 AS href, 'unapi' AS title)), $2)$$ INTO tmp_xml USING unapi_url, tmp_xml::XML; + END IF; + + IF header_xml IS NOT NULL THEN tmp_xml := XMLCONCAT(header_xml,tmp_xml::XML); END IF; + + element_list := regexp_split_to_array(layout.feed_top,E'\\.'); + FOR i IN REVERSE ARRAY_UPPER(element_list, 1) .. 1 LOOP + EXECUTE 'SELECT XMLELEMENT( name '|| quote_ident(element_list[i]) ||', XMLATTRIBUTES( $1 AS xmlns), $2)' INTO tmp_xml USING xmlns_uri, tmp_xml::XML; + END LOOP; + + RETURN tmp_xml::XML; +END; +$_$; + + +ALTER FUNCTION unapi.biblio_record_entry_feed(id_list bigint[], format text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean, title text, description text, creator text, update_ts text, unapi_url text, header_xml xml) OWNER TO evergreen; + +-- +-- Name: bmp(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION bmp(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name monograph_part, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@bmp/' || id AS id, + id AS ident, + label, + label_sortkey, + 'tag:open-ils.org:U2@bre/' || record AS record + ), + CASE + WHEN ('acp' = ANY ($4)) THEN + XMLELEMENT( name copies, + (SELECT XMLAGG(acp) FROM ( + SELECT unapi.acp( cp.id, 'xml', 'copy', evergreen.array_remove_item_by_value($4,'bmp'), $5, $6, $7, $8, FALSE) + FROM asset.copy cp + JOIN asset.copy_part_map cpm ON (cpm.target_copy = cp.id) + WHERE cpm.part = $1 + AND cp.deleted IS FALSE + ORDER BY COALESCE(cp.copy_number,0), cp.barcode + LIMIT ($7 -> 'acp')::INT + OFFSET ($8 -> 'acp')::INT + + )x) + ) + ELSE NULL + END, + CASE WHEN ('bre' = ANY ($4)) THEN unapi.bre( record, 'marcxml', 'record', evergreen.array_remove_item_by_value($4,'bmp'), $5, $6, $7, $8, FALSE) ELSE NULL END + ) + FROM biblio.monograph_part + WHERE NOT deleted AND id = $1 + GROUP BY id, label, label_sortkey, record; +$_$; + + +ALTER FUNCTION unapi.bmp(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: bre(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean, integer); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION bre(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true, pref_lib integer DEFAULT NULL::integer) RETURNS xml + LANGUAGE plpgsql STABLE + AS $_$ +DECLARE + me biblio.record_entry%ROWTYPE; + layout unapi.bre_output_layout%ROWTYPE; + xfrm config.xml_transform%ROWTYPE; + ouid INT; + tmp_xml TEXT; + top_el TEXT; + output XML; + hxml XML; + axml XML; + source XML; +BEGIN + + IF org = '-' OR org IS NULL THEN + SELECT shortname INTO org FROM evergreen.org_top(); + END IF; + + SELECT id INTO ouid FROM actor.org_unit WHERE shortname = org; + + IF ouid IS NULL THEN + RETURN NULL::XML; + END IF; + + IF format = 'holdings_xml' THEN -- the special case + output := unapi.holdings_xml( obj_id, ouid, org, depth, includes, slimit, soffset, include_xmlns); + RETURN output; + END IF; + + SELECT * INTO layout FROM unapi.bre_output_layout WHERE name = format; + + IF layout.name IS NULL THEN + RETURN NULL::XML; + END IF; + + SELECT * INTO xfrm FROM config.xml_transform WHERE name = layout.transform; + + SELECT * INTO me FROM biblio.record_entry WHERE id = obj_id; + + -- grab bib_source, if any + IF ('cbs' = ANY (includes) AND me.source IS NOT NULL) THEN + source := unapi.cbs(me.source,NULL,NULL,NULL,NULL); + ELSE + source := NULL::XML; + END IF; + + -- grab SVF if we need them + IF ('mra' = ANY (includes)) THEN + axml := unapi.mra(obj_id,NULL,NULL,NULL,NULL); + ELSE + axml := NULL::XML; + END IF; + + -- grab holdings if we need them + IF ('holdings_xml' = ANY (includes)) THEN + hxml := unapi.holdings_xml(obj_id, ouid, org, depth, evergreen.array_remove_item_by_value(includes,'holdings_xml'), slimit, soffset, include_xmlns, pref_lib); + ELSE + hxml := NULL::XML; + END IF; + + + -- generate our item node + + + IF format = 'marcxml' THEN + tmp_xml := me.marc; + IF tmp_xml !~ E'(.*?)$', source || '\\1'); + END IF; + + IF axml IS NOT NULL THEN + tmp_xml := REGEXP_REPLACE(tmp_xml, '(.*?)$', axml || '\\1'); + END IF; + + IF hxml IS NOT NULL THEN -- XXX how do we configure the holdings position? + tmp_xml := REGEXP_REPLACE(tmp_xml, '(.*?)$', hxml || '\\1'); + END IF; + + IF ('bre.unapi' = ANY (includes)) THEN + output := REGEXP_REPLACE( + tmp_xml, + '(.*?)', + XMLELEMENT( + name abbr, + XMLATTRIBUTES( + 'http://www.w3.org/1999/xhtml' AS xmlns, + 'unapi-id' AS class, + 'tag:open-ils.org:U2@bre/' || obj_id || '/' || org AS title + ) + )::TEXT || '\\1' + ); + ELSE + output := tmp_xml; + END IF; + + IF ('bre.extern' = ANY (includes)) THEN + output := REGEXP_REPLACE( + tmp_xml, + '(.*?)', + XMLELEMENT( + name extern, + XMLATTRIBUTES( + 'http://open-ils.org/spec/biblio/v1' AS xmlns, + me.creator AS creator, + me.editor AS editor, + me.create_date AS create_date, + me.edit_date AS edit_date, + me.quality AS quality, + me.fingerprint AS fingerprint, + me.tcn_source AS tcn_source, + me.tcn_value AS tcn_value, + me.owner AS owner, + me.share_depth AS share_depth, + me.active AS active, + me.deleted AS deleted + ) + )::TEXT || '\\1' + ); + ELSE + output := tmp_xml; + END IF; + + output := REGEXP_REPLACE(output::TEXT,E'>\\s+<','><','gs')::XML; + RETURN output; +END; +$_$; + + +ALTER FUNCTION unapi.bre(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean, pref_lib integer) OWNER TO evergreen; + +-- +-- Name: cbs(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION cbs(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name bib_source, + XMLATTRIBUTES( + NULL AS xmlns, -- TODO needs equivalent to http://open-ils.org/spec/holdings/v1 + id AS ident, + quality, + transcendant, + can_have_copies + ), + source + ) + FROM config.bib_source + WHERE id = $1; +$_$; + + +ALTER FUNCTION unapi.cbs(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: ccs(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION ccs(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name status, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + id AS ident, + holdable, + opac_visible + ), + name + ) + FROM config.copy_status + WHERE id = $1; +$_$; + + +ALTER FUNCTION unapi.ccs(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: circ(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION circ(obj_id bigint, format text, ename text, includes text[], org text DEFAULT '-'::text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name circ, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@circ/' || id AS id, + xact_start, + due_date + ), + CASE WHEN ('aou' = ANY ($4)) THEN unapi.aou( circ_lib, $2, 'circ_lib', evergreen.array_remove_item_by_value($4,'circ'), $5, $6, $7, $8, FALSE) ELSE NULL END, + CASE WHEN ('acp' = ANY ($4)) THEN unapi.acp( circ_lib, $2, 'target_copy', evergreen.array_remove_item_by_value($4,'circ'), $5, $6, $7, $8, FALSE) ELSE NULL END + ) + FROM action.circulation + WHERE id = $1; +$_$; + + +ALTER FUNCTION unapi.circ(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: holdings_xml(bigint, integer, text, integer, text[], public.hstore, public.hstore, boolean, integer); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION holdings_xml(bid bigint, ouid integer, org text, depth integer DEFAULT NULL::integer, includes text[] DEFAULT NULL::text[], slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true, pref_lib integer DEFAULT NULL::integer) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name holdings, + XMLATTRIBUTES( + CASE WHEN $8 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + CASE WHEN ('bre' = ANY ($5)) THEN 'tag:open-ils.org:U2@bre/' || $1 || '/' || $3 ELSE NULL END AS id, + (SELECT record_has_holdable_copy FROM asset.record_has_holdable_copy($1)) AS has_holdable + ), + XMLELEMENT( + name counts, + (SELECT XMLAGG(XMLELEMENT::XML) FROM ( + SELECT XMLELEMENT( + name count, + XMLATTRIBUTES('public' as type, depth, org_unit, coalesce(transcendant,0) as transcendant, available, visible as count, unshadow) + )::text + FROM asset.opac_ou_record_copy_count($2, $1) + UNION + SELECT XMLELEMENT( + name count, + XMLATTRIBUTES('staff' as type, depth, org_unit, coalesce(transcendant,0) as transcendant, available, visible as count, unshadow) + )::text + FROM asset.staff_ou_record_copy_count($2, $1) + UNION + SELECT XMLELEMENT( + name count, + XMLATTRIBUTES('pref_lib' as type, depth, org_unit, coalesce(transcendant,0) as transcendant, available, visible as count, unshadow) + )::text + FROM asset.opac_ou_record_copy_count($9, $1) + ORDER BY 1 + )x) + ), + CASE + WHEN ('bmp' = ANY ($5)) THEN + XMLELEMENT( + name monograph_parts, + (SELECT XMLAGG(bmp) FROM ( + SELECT unapi.bmp( id, 'xml', 'monograph_part', evergreen.array_remove_item_by_value( evergreen.array_remove_item_by_value($5,'bre'), 'holdings_xml'), $3, $4, $6, $7, FALSE) + FROM biblio.monograph_part + WHERE NOT deleted AND record = $1 + )x) + ) + ELSE NULL + END, + XMLELEMENT( + name volumes, + (SELECT XMLAGG(acn ORDER BY rank, name, label_sortkey) FROM ( + -- Physical copies + SELECT unapi.acn(y.id,'xml','volume',evergreen.array_remove_item_by_value( evergreen.array_remove_item_by_value($5,'holdings_xml'),'bre'), $3, $4, $6, $7, FALSE), y.rank, name, label_sortkey + FROM evergreen.ranked_volumes($1, $2, $4, $6, $7, $9, $5) AS y + UNION ALL + -- Located URIs + SELECT unapi.acn(uris.id,'xml','volume',evergreen.array_remove_item_by_value( evergreen.array_remove_item_by_value($5,'holdings_xml'),'bre'), $3, $4, $6, $7, FALSE), uris.rank, name, label_sortkey + FROM evergreen.located_uris($1, $2, $9) AS uris + )x) + ), + CASE WHEN ('ssub' = ANY ($5)) THEN + XMLELEMENT( + name subscriptions, + (SELECT XMLAGG(ssub) FROM ( + SELECT unapi.ssub(id,'xml','subscription','{}'::TEXT[], $3, $4, $6, $7, FALSE) + FROM serial.subscription + WHERE record_entry = $1 + )x) + ) + ELSE NULL END, + CASE WHEN ('acp' = ANY ($5)) THEN + XMLELEMENT( + name foreign_copies, + (SELECT XMLAGG(acp) FROM ( + SELECT unapi.acp(p.target_copy,'xml','copy',evergreen.array_remove_item_by_value($5,'acp'), $3, $4, $6, $7, FALSE) + FROM biblio.peer_bib_copy_map p + JOIN asset.copy c ON (p.target_copy = c.id) + WHERE NOT c.deleted AND p.peer_record = $1 + LIMIT ($6 -> 'acp')::INT + OFFSET ($7 -> 'acp')::INT + )x) + ) + ELSE NULL END + ); +$_$; + + +ALTER FUNCTION unapi.holdings_xml(bid bigint, ouid integer, org text, depth integer, includes text[], slimit public.hstore, soffset public.hstore, include_xmlns boolean, pref_lib integer) OWNER TO evergreen; + +-- +-- Name: memoize(text, bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION memoize(classname text, obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE plpgsql STABLE + AS $_$ +DECLARE + key TEXT; + output XML; +BEGIN + key := + 'id' || COALESCE(obj_id::TEXT,'') || + 'format' || COALESCE(format::TEXT,'') || + 'ename' || COALESCE(ename::TEXT,'') || + 'includes' || COALESCE(includes::TEXT,'{}'::TEXT[]::TEXT) || + 'org' || COALESCE(org::TEXT,'') || + 'depth' || COALESCE(depth::TEXT,'') || + 'slimit' || COALESCE(slimit::TEXT,'') || + 'soffset' || COALESCE(soffset::TEXT,'') || + 'include_xmlns' || COALESCE(include_xmlns::TEXT,''); + -- RAISE NOTICE 'memoize key: %', key; + + key := MD5(key); + -- RAISE NOTICE 'memoize hash: %', key; + + -- XXX cache logic ... memcached? table? + + EXECUTE $$SELECT unapi.$$ || classname || $$( $1, $2, $3, $4, $5, $6, $7, $8, $9);$$ INTO output USING obj_id, format, ename, includes, org, depth, slimit, soffset, include_xmlns; + RETURN output; +END; +$_$; + + +ALTER FUNCTION unapi.memoize(classname text, obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: mmr(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean, integer); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION mmr(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true, pref_lib integer DEFAULT NULL::integer) RETURNS xml + LANGUAGE plpgsql STABLE + AS $_$ +DECLARE + mmrec metabib.metarecord%ROWTYPE; + leadrec biblio.record_entry%ROWTYPE; + subrec biblio.record_entry%ROWTYPE; + layout unapi.bre_output_layout%ROWTYPE; + xfrm config.xml_transform%ROWTYPE; + ouid INT; + xml_buf TEXT; -- growing XML document + tmp_xml TEXT; -- single-use XML string + xml_frag TEXT; -- single-use XML fragment + top_el TEXT; + output XML; + hxml XML; + axml XML; + subxml XML; -- subordinate records elements + sub_xpath TEXT; + parts TEXT[]; +BEGIN + + -- xpath for extracting bre.marc values from subordinate records + -- so they may be appended to the MARC of the master record prior + -- to XSLT processing. + -- subjects, isbn, issn, upc -- anything else? + sub_xpath := + '//*[starts-with(@tag, "6") or @tag="020" or @tag="022" or @tag="024"]'; + + IF org = '-' OR org IS NULL THEN + SELECT shortname INTO org FROM evergreen.org_top(); + END IF; + + SELECT id INTO ouid FROM actor.org_unit WHERE shortname = org; + + IF ouid IS NULL THEN + RETURN NULL::XML; + END IF; + + SELECT INTO mmrec * FROM metabib.metarecord WHERE id = obj_id; + IF NOT FOUND THEN + RETURN NULL::XML; + END IF; + + -- TODO: aggregate holdings from constituent records + IF format = 'holdings_xml' THEN -- the special case + output := unapi.mmr_holdings_xml( + obj_id, ouid, org, depth, + evergreen.array_remove_item_by_value(includes,'holdings_xml'), + slimit, soffset, include_xmlns, pref_lib); + RETURN output; + END IF; + + SELECT * INTO layout FROM unapi.bre_output_layout WHERE name = format; + + IF layout.name IS NULL THEN + RETURN NULL::XML; + END IF; + + SELECT * INTO xfrm FROM config.xml_transform WHERE name = layout.transform; + + SELECT INTO leadrec * FROM biblio.record_entry WHERE id = mmrec.master_record; + + -- Grab distinct MVF for all records if requested + IF ('mra' = ANY (includes)) THEN + axml := unapi.mmr_mra(obj_id,NULL,NULL,NULL,org,depth,NULL,NULL,TRUE,pref_lib); + ELSE + axml := NULL::XML; + END IF; + + xml_buf = leadrec.marc; + + hxml := NULL::XML; + IF ('holdings_xml' = ANY (includes)) THEN + hxml := unapi.mmr_holdings_xml( + obj_id, ouid, org, depth, + evergreen.array_remove_item_by_value(includes,'holdings_xml'), + slimit, soffset, include_xmlns, pref_lib); + END IF; + + subxml := NULL::XML; + parts := '{}'::TEXT[]; + FOR subrec IN SELECT bre.* FROM biblio.record_entry bre + JOIN metabib.metarecord_source_map mmsm ON (mmsm.source = bre.id) + JOIN metabib.metarecord mmr ON (mmr.id = mmsm.metarecord) + WHERE mmr.id = obj_id AND NOT bre.deleted + ORDER BY CASE WHEN bre.id = mmr.master_record THEN 0 ELSE bre.id END + LIMIT COALESCE((slimit->'bre')::INT, 5) LOOP + + IF subrec.id = leadrec.id THEN CONTINUE; END IF; + -- Append choice data from the the non-lead records to the + -- the lead record document + + parts := parts || xpath(sub_xpath, subrec.marc::XML)::TEXT[]; + END LOOP; + + SELECT ARRAY_TO_STRING( ARRAY_AGG( DISTINCT p ), '' )::XML INTO subxml FROM UNNEST(parts) p; + + -- append data from the subordinate records to the + -- main record document before applying the XSLT + + IF subxml IS NOT NULL THEN + xml_buf := REGEXP_REPLACE(xml_buf, + '
(.*?)$', subxml || '' || E'\\1'); + END IF; + + IF format = 'marcxml' THEN + -- If we're not using the prefixed namespace in + -- this record, then remove all declarations of it + IF xml_buf !~ E' mods) + top_el := REGEXP_REPLACE(xml_buf, E'^.*?<((?:\\S+:)?' || + layout.holdings_element || ').*$', E'\\1'); + + IF axml IS NOT NULL THEN + xml_buf := REGEXP_REPLACE(xml_buf, + '(.*?)$', axml || '\\1'); + END IF; + + IF hxml IS NOT NULL THEN + xml_buf := REGEXP_REPLACE(xml_buf, + '(.*?)$', hxml || '\\1'); + END IF; + + IF ('mmr.unapi' = ANY (includes)) THEN + output := REGEXP_REPLACE( + xml_buf, + '(.*?)', + XMLELEMENT( + name abbr, + XMLATTRIBUTES( + 'http://www.w3.org/1999/xhtml' AS xmlns, + 'unapi-id' AS class, + 'tag:open-ils.org:U2@mmr/' || obj_id || '/' || org AS title + ) + )::TEXT || '\\1' + ); + ELSE + output := xml_buf; + END IF; + + -- remove ignorable whitesace + output := REGEXP_REPLACE(output::TEXT,E'>\\s+<','><','gs')::XML; + RETURN output; +END; +$_$; + + +ALTER FUNCTION unapi.mmr(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean, pref_lib integer) OWNER TO evergreen; + +-- +-- Name: mmr_holdings_xml(bigint, integer, text, integer, text[], public.hstore, public.hstore, boolean, integer); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION mmr_holdings_xml(mid bigint, ouid integer, org text, depth integer DEFAULT NULL::integer, includes text[] DEFAULT NULL::text[], slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true, pref_lib integer DEFAULT NULL::integer) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name holdings, + XMLATTRIBUTES( + CASE WHEN $8 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + CASE WHEN ('mmr' = ANY ($5)) THEN 'tag:open-ils.org:U2@mmr/' || $1 || '/' || $3 ELSE NULL END AS id, + (SELECT metarecord_has_holdable_copy FROM asset.metarecord_has_holdable_copy($1)) AS has_holdable + ), + XMLELEMENT( + name counts, + (SELECT XMLAGG(XMLELEMENT::XML) FROM ( + SELECT XMLELEMENT( + name count, + XMLATTRIBUTES('public' as type, depth, org_unit, coalesce(transcendant,0) as transcendant, available, visible as count, unshadow) + )::text + FROM asset.opac_ou_metarecord_copy_count($2, $1) + UNION + SELECT XMLELEMENT( + name count, + XMLATTRIBUTES('staff' as type, depth, org_unit, coalesce(transcendant,0) as transcendant, available, visible as count, unshadow) + )::text + FROM asset.staff_ou_metarecord_copy_count($2, $1) + UNION + SELECT XMLELEMENT( + name count, + XMLATTRIBUTES('pref_lib' as type, depth, org_unit, coalesce(transcendant,0) as transcendant, available, visible as count, unshadow) + )::text + FROM asset.opac_ou_metarecord_copy_count($9, $1) + ORDER BY 1 + )x) + ), + -- XXX monograph_parts and foreign_copies are skipped in MRs ... put them back some day? + XMLELEMENT( + name volumes, + (SELECT XMLAGG(acn ORDER BY rank, name, label_sortkey) FROM ( + -- Physical copies + SELECT unapi.acn(y.id,'xml','volume',evergreen.array_remove_item_by_value( evergreen.array_remove_item_by_value($5,'holdings_xml'),'bre'), $3, $4, $6, $7, FALSE), y.rank, name, label_sortkey + FROM evergreen.ranked_volumes((SELECT ARRAY_AGG(source) FROM metabib.metarecord_source_map WHERE metarecord = $1), $2, $4, $6, $7, $9, $5) AS y + UNION ALL + -- Located URIs + SELECT unapi.acn(uris.id,'xml','volume',evergreen.array_remove_item_by_value( evergreen.array_remove_item_by_value($5,'holdings_xml'),'bre'), $3, $4, $6, $7, FALSE), uris.rank, name, label_sortkey + FROM evergreen.located_uris((SELECT ARRAY_AGG(source) FROM metabib.metarecord_source_map WHERE metarecord = $1), $2, $9) AS uris + )x) + ), + CASE WHEN ('ssub' = ANY ($5)) THEN + XMLELEMENT( + name subscriptions, + (SELECT XMLAGG(ssub) FROM ( + SELECT unapi.ssub(id,'xml','subscription','{}'::TEXT[], $3, $4, $6, $7, FALSE) + FROM serial.subscription + WHERE record_entry IN (SELECT source FROM metabib.metarecord_source_map WHERE metarecord = $1) + )x) + ) + ELSE NULL END + ); +$_$; + + +ALTER FUNCTION unapi.mmr_holdings_xml(mid bigint, ouid integer, org text, depth integer, includes text[], slimit public.hstore, soffset public.hstore, include_xmlns boolean, pref_lib integer) OWNER TO evergreen; + +-- +-- Name: mmr_mra(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean, integer); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION mmr_mra(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true, pref_lib integer DEFAULT NULL::integer) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name attributes, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/indexing/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@mmr/' || $1 AS metarecord + ), + (SELECT XMLAGG(foo.y) + FROM ( + WITH sourcelist AS ( + WITH aou AS (SELECT COALESCE(id, (evergreen.org_top()).id) AS id + FROM actor.org_unit WHERE shortname = $5 LIMIT 1) + SELECT source + FROM metabib.metarecord_source_map, aou + WHERE metarecord = $1 AND ( + EXISTS ( + SELECT 1 FROM asset.opac_visible_copies + WHERE record = source AND circ_lib IN ( + SELECT id FROM actor.org_unit_descendants(aou.id, $6)) + LIMIT 1 + ) + OR EXISTS (SELECT 1 FROM located_uris(source, aou.id, $10) LIMIT 1) + ) + ) + SELECT cmra.aid, + XMLELEMENT( + name field, + XMLATTRIBUTES( + cmra.attr AS name, + cmra.value AS "coded-value", + cmra.aid AS "cvmid", + rad.composite, + rad.multi, + rad.filter, + rad.sorter + ), + cmra.value + ) + FROM ( + SELECT DISTINCT aid, attr, value + FROM ( + SELECT v.source AS id, + c.id AS aid, + c.ctype AS attr, + c.code AS value + FROM metabib.record_attr_vector_list v + JOIN config.coded_value_map c ON ( c.id = ANY( v.vlist ) ) + ) AS x + JOIN sourcelist ON (x.id = sourcelist.source) + ) AS cmra + JOIN config.record_attr_definition rad ON (cmra.attr = rad.name) + UNION ALL + SELECT umra.aid, + XMLELEMENT( + name field, + XMLATTRIBUTES( + umra.attr AS name, + rad.composite, + rad.multi, + rad.filter, + rad.sorter + ), + umra.value + ) + FROM ( + SELECT DISTINCT aid, attr, value + FROM ( + SELECT v.source AS id, + m.id AS aid, + m.attr AS attr, + m.value AS value + FROM metabib.record_attr_vector_list v + JOIN metabib.uncontrolled_record_attr_value m ON ( m.id = ANY( v.vlist ) ) + ) AS x + JOIN sourcelist ON (x.id = sourcelist.source) + ) AS umra + JOIN config.record_attr_definition rad ON (umra.attr = rad.name) + ORDER BY 1 + + )foo(id,y) + ) + ) +$_$; + + +ALTER FUNCTION unapi.mmr_mra(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean, pref_lib integer) OWNER TO evergreen; + +-- +-- Name: mra(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION mra(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name attributes, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/indexing/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@mra/' || $1 AS id, + 'tag:open-ils.org:U2@bre/' || $1 AS record + ), + (SELECT XMLAGG(foo.y) + FROM ( + SELECT XMLELEMENT( + name field, + XMLATTRIBUTES( + mra.attr AS name, + cvm.value AS "coded-value", + cvm.id AS "cvmid", + rad.composite, + rad.multi, + rad.filter, + rad.sorter + ), + mra.value + ) + FROM metabib.record_attr_flat mra + JOIN config.record_attr_definition rad ON (mra.attr = rad.name) + LEFT JOIN config.coded_value_map cvm ON (cvm.ctype = mra.attr AND code = mra.value) + WHERE mra.id = $1 + )foo(y) + ) + ) +$_$; + + +ALTER FUNCTION unapi.mra(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: sbsum(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION sbsum(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name serial_summary, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@sbsum/' || id AS id, + 'sbsum' AS type, generated_coverage, textual_holdings, show_generated + ), + CASE WHEN ('sdist' = ANY ($4)) THEN unapi.sdist( distribution, 'xml', 'distribtion', evergreen.array_remove_item_by_value($4,'ssum'), $5, $6, $7, $8, FALSE) ELSE NULL END + ) + FROM serial.basic_summary ssum + WHERE id = $1 + GROUP BY id, generated_coverage, textual_holdings, distribution, show_generated; +$_$; + + +ALTER FUNCTION unapi.sbsum(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: sdist(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION sdist(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name distribution, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@sdist/' || id AS id, + 'tag:open-ils.org:U2@acn/' || receive_call_number AS receive_call_number, + 'tag:open-ils.org:U2@acn/' || bind_call_number AS bind_call_number, + unit_label_prefix, label, unit_label_suffix, summary_method + ), + unapi.aou( holding_lib, $2, 'holding_lib', evergreen.array_remove_item_by_value($4,'sdist'), $5, $6, $7, $8), + CASE WHEN subscription IS NOT NULL AND ('ssub' = ANY ($4)) THEN unapi.ssub( subscription, 'xml', 'subscription', evergreen.array_remove_item_by_value($4,'sdist'), $5, $6, $7, $8, FALSE) ELSE NULL END, + CASE + WHEN ('sstr' = ANY ($4)) THEN + XMLELEMENT( name streams, + (SELECT XMLAGG(sstr) FROM ( + SELECT unapi.sstr( id, 'xml', 'stream', evergreen.array_remove_item_by_value($4,'sdist'), $5, $6, $7, $8, FALSE) + FROM serial.stream + WHERE distribution = sdist.id + )x) + ) + ELSE NULL + END, + XMLELEMENT( name summaries, + CASE + WHEN ('sbsum' = ANY ($4)) THEN + (SELECT XMLAGG(sbsum) FROM ( + SELECT unapi.sbsum( id, 'xml', 'serial_summary', evergreen.array_remove_item_by_value($4,'sdist'), $5, $6, $7, $8, FALSE) + FROM serial.basic_summary + WHERE distribution = sdist.id + )x) + ELSE NULL + END, + CASE + WHEN ('sisum' = ANY ($4)) THEN + (SELECT XMLAGG(sisum) FROM ( + SELECT unapi.sisum( id, 'xml', 'serial_summary', evergreen.array_remove_item_by_value($4,'sdist'), $5, $6, $7, $8, FALSE) + FROM serial.index_summary + WHERE distribution = sdist.id + )x) + ELSE NULL + END, + CASE + WHEN ('sssum' = ANY ($4)) THEN + (SELECT XMLAGG(sssum) FROM ( + SELECT unapi.sssum( id, 'xml', 'serial_summary', evergreen.array_remove_item_by_value($4,'sdist'), $5, $6, $7, $8, FALSE) + FROM serial.supplement_summary + WHERE distribution = sdist.id + )x) + ELSE NULL + END + ) + ) + FROM serial.distribution sdist + WHERE id = $1 + GROUP BY id, label, unit_label_prefix, unit_label_suffix, holding_lib, summary_method, subscription, receive_call_number, bind_call_number; +$_$; + + +ALTER FUNCTION unapi.sdist(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: siss(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION siss(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name issuance, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@siss/' || id AS id, + create_date, edit_date, label, date_published, + holding_code, holding_type, holding_link_id + ), + CASE WHEN subscription IS NOT NULL AND ('ssub' = ANY ($4)) THEN unapi.ssub( subscription, 'xml', 'subscription', evergreen.array_remove_item_by_value($4,'siss'), $5, $6, $7, $8, FALSE) ELSE NULL END, + CASE + WHEN ('sitem' = ANY ($4)) THEN + XMLELEMENT( name items, + (SELECT XMLAGG(sitem) FROM ( + SELECT unapi.sitem( id, 'xml', 'serial_item', evergreen.array_remove_item_by_value($4,'siss'), $5, $6, $7, $8, FALSE) + FROM serial.item + WHERE issuance = sstr.id + )x) + ) + ELSE NULL + END + ) + FROM serial.issuance sstr + WHERE id = $1 + GROUP BY id, create_date, edit_date, label, date_published, holding_code, holding_type, holding_link_id, subscription; +$_$; + + +ALTER FUNCTION unapi.siss(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: sisum(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION sisum(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name serial_summary, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@sbsum/' || id AS id, + 'sisum' AS type, generated_coverage, textual_holdings, show_generated + ), + CASE WHEN ('sdist' = ANY ($4)) THEN unapi.sdist( distribution, 'xml', 'distribtion', evergreen.array_remove_item_by_value($4,'ssum'), $5, $6, $7, $8, FALSE) ELSE NULL END + ) + FROM serial.index_summary ssum + WHERE id = $1 + GROUP BY id, generated_coverage, textual_holdings, distribution, show_generated; +$_$; + + +ALTER FUNCTION unapi.sisum(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: sitem(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION sitem(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name serial_item, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@sitem/' || id AS id, + 'tag:open-ils.org:U2@siss/' || issuance AS issuance, + date_expected, date_received + ), + CASE WHEN issuance IS NOT NULL AND ('siss' = ANY ($4)) THEN unapi.siss( issuance, $2, 'issuance', evergreen.array_remove_item_by_value($4,'sitem'), $5, $6, $7, $8, FALSE) ELSE NULL END, + CASE WHEN stream IS NOT NULL AND ('sstr' = ANY ($4)) THEN unapi.sstr( stream, $2, 'stream', evergreen.array_remove_item_by_value($4,'sitem'), $5, $6, $7, $8, FALSE) ELSE NULL END, + CASE WHEN unit IS NOT NULL AND ('sunit' = ANY ($4)) THEN unapi.sunit( unit, $2, 'serial_unit', evergreen.array_remove_item_by_value($4,'sitem'), $5, $6, $7, $8, FALSE) ELSE NULL END, + CASE WHEN uri IS NOT NULL AND ('auri' = ANY ($4)) THEN unapi.auri( uri, $2, 'uri', evergreen.array_remove_item_by_value($4,'sitem'), $5, $6, $7, $8, FALSE) ELSE NULL END +-- XMLELEMENT( name notes, +-- CASE +-- WHEN ('acpn' = ANY ($4)) THEN +-- (SELECT XMLAGG(acpn) FROM ( +-- SELECT unapi.acpn( id, 'xml', 'copy_note', evergreen.array_remove_item_by_value($4,'acp'), $5, $6, $7, $8) +-- FROM asset.copy_note +-- WHERE owning_copy = cp.id AND pub +-- )x) +-- ELSE NULL +-- END +-- ) + ) + FROM serial.item sitem + WHERE id = $1; +$_$; + + +ALTER FUNCTION unapi.sitem(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: sssum(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION sssum(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name serial_summary, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@sbsum/' || id AS id, + 'sssum' AS type, generated_coverage, textual_holdings, show_generated + ), + CASE WHEN ('sdist' = ANY ($4)) THEN unapi.sdist( distribution, 'xml', 'distribtion', evergreen.array_remove_item_by_value($4,'ssum'), $5, $6, $7, $8, FALSE) ELSE NULL END + ) + FROM serial.supplement_summary ssum + WHERE id = $1 + GROUP BY id, generated_coverage, textual_holdings, distribution, show_generated; +$_$; + + +ALTER FUNCTION unapi.sssum(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: sstr(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION sstr(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name stream, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@sstr/' || id AS id, + routing_label + ), + CASE WHEN distribution IS NOT NULL AND ('sdist' = ANY ($4)) THEN unapi.sssum( distribution, 'xml', 'distribtion', evergreen.array_remove_item_by_value($4,'sstr'), $5, $6, $7, $8, FALSE) ELSE NULL END, + CASE + WHEN ('sitem' = ANY ($4)) THEN + XMLELEMENT( name items, + (SELECT XMLAGG(sitem) FROM ( + SELECT unapi.sitem( id, 'xml', 'serial_item', evergreen.array_remove_item_by_value($4,'sstr'), $5, $6, $7, $8, FALSE) + FROM serial.item + WHERE stream = sstr.id + )x) + ) + ELSE NULL + END + ) + FROM serial.stream sstr + WHERE id = $1 + GROUP BY id, routing_label, distribution; +$_$; + + +ALTER FUNCTION unapi.sstr(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: ssub(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION ssub(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name subscription, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@ssub/' || id AS id, + 'tag:open-ils.org:U2@aou/' || owning_lib AS owning_lib, + start_date AS start, end_date AS end, expected_date_offset + ), + CASE + WHEN ('sdist' = ANY ($4)) THEN + XMLELEMENT( name distributions, + (SELECT XMLAGG(sdist) FROM ( + SELECT unapi.sdist( id, 'xml', 'distribution', evergreen.array_remove_item_by_value($4,'ssub'), $5, $6, $7, $8, FALSE) + FROM serial.distribution + WHERE subscription = ssub.id + )x) + ) + ELSE NULL + END + ) + FROM serial.subscription ssub + WHERE id = $1 + GROUP BY id, start_date, end_date, expected_date_offset, owning_lib; +$_$; + + +ALTER FUNCTION unapi.ssub(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +-- +-- Name: sunit(bigint, text, text, text[], text, integer, public.hstore, public.hstore, boolean); Type: FUNCTION; Schema: unapi; Owner: evergreen +-- + +CREATE FUNCTION sunit(obj_id bigint, format text, ename text, includes text[], org text, depth integer DEFAULT NULL::integer, slimit public.hstore DEFAULT NULL::public.hstore, soffset public.hstore DEFAULT NULL::public.hstore, include_xmlns boolean DEFAULT true) RETURNS xml + LANGUAGE sql STABLE + AS $_$ + SELECT XMLELEMENT( + name serial_unit, + XMLATTRIBUTES( + CASE WHEN $9 THEN 'http://open-ils.org/spec/holdings/v1' ELSE NULL END AS xmlns, + 'tag:open-ils.org:U2@acp/' || id AS id, id AS copy_id, + create_date, edit_date, copy_number, circulate, deposit, + ref, holdable, deleted, deposit_amount, price, barcode, + circ_modifier, circ_as_type, opac_visible, age_protect, + status_changed_time, floating, mint_condition, + detailed_contents, sort_key, summary_contents, cost + ), + unapi.ccs( status, $2, 'status', evergreen.array_remove_item_by_value( evergreen.array_remove_item_by_value($4,'acp'),'sunit'), $5, $6, $7, $8, FALSE), + unapi.acl( location, $2, 'location', evergreen.array_remove_item_by_value( evergreen.array_remove_item_by_value($4,'acp'),'sunit'), $5, $6, $7, $8, FALSE), + unapi.aou( circ_lib, $2, 'circ_lib', evergreen.array_remove_item_by_value( evergreen.array_remove_item_by_value($4,'acp'),'sunit'), $5, $6, $7, $8), + unapi.aou( circ_lib, $2, 'circlib', evergreen.array_remove_item_by_value( evergreen.array_remove_item_by_value($4,'acp'),'sunit'), $5, $6, $7, $8), + CASE WHEN ('acn' = ANY ($4)) THEN unapi.acn( call_number, $2, 'call_number', evergreen.array_remove_item_by_value($4,'acp'), $5, $6, $7, $8, FALSE) ELSE NULL END, + XMLELEMENT( name copy_notes, + CASE + WHEN ('acpn' = ANY ($4)) THEN + (SELECT XMLAGG(acpn) FROM ( + SELECT unapi.acpn( id, 'xml', 'copy_note', evergreen.array_remove_item_by_value( evergreen.array_remove_item_by_value($4,'acp'),'sunit'), $5, $6, $7, $8, FALSE) + FROM asset.copy_note + WHERE owning_copy = cp.id AND pub + )x) + ELSE NULL + END + ), + XMLELEMENT( name statcats, + CASE + WHEN ('ascecm' = ANY ($4)) THEN + (SELECT XMLAGG(ascecm) FROM ( + SELECT unapi.ascecm( stat_cat_entry, 'xml', 'statcat', evergreen.array_remove_item_by_value($4,'acp'), $5, $6, $7, $8, FALSE) + FROM asset.stat_cat_entry_copy_map + WHERE owning_copy = cp.id + )x) + ELSE NULL + END + ), + XMLELEMENT( name foreign_records, + CASE + WHEN ('bre' = ANY ($4)) THEN + (SELECT XMLAGG(bre) FROM ( + SELECT unapi.bre(peer_record,'marcxml','record','{}'::TEXT[], $5, $6, $7, $8, FALSE) + FROM biblio.peer_bib_copy_map + WHERE target_copy = cp.id + )x) + ELSE NULL + END + ), + CASE + WHEN ('bmp' = ANY ($4)) THEN + XMLELEMENT( name monograph_parts, + (SELECT XMLAGG(bmp) FROM ( + SELECT unapi.bmp( part, 'xml', 'monograph_part', evergreen.array_remove_item_by_value($4,'acp'), $5, $6, $7, $8, FALSE) + FROM asset.copy_part_map + WHERE target_copy = cp.id + )x) + ) + ELSE NULL + END, + CASE + WHEN ('circ' = ANY ($4)) THEN + XMLELEMENT( name current_circulation, + (SELECT XMLAGG(circ) FROM ( + SELECT unapi.circ( id, 'xml', 'circ', evergreen.array_remove_item_by_value($4,'circ'), $5, $6, $7, $8, FALSE) + FROM action.circulation + WHERE target_copy = cp.id + AND checkin_time IS NULL + )x) + ) + ELSE NULL + END + ) + FROM serial.unit cp + WHERE id = $1 + AND cp.deleted IS FALSE + GROUP BY id, status, location, circ_lib, call_number, create_date, + edit_date, copy_number, circulate, floating, mint_condition, + deposit, ref, holdable, deleted, deposit_amount, price, + barcode, circ_modifier, circ_as_type, opac_visible, + status_changed_time, detailed_contents, sort_key, + summary_contents, cost, age_protect; +$_$; + + +ALTER FUNCTION unapi.sunit(obj_id bigint, format text, ename text, includes text[], org text, depth integer, slimit public.hstore, soffset public.hstore, include_xmlns boolean) OWNER TO evergreen; + +SET search_path = url_verify, pg_catalog; + +-- +-- Name: extract_urls(integer, integer); Type: FUNCTION; Schema: url_verify; Owner: evergreen +-- + +CREATE FUNCTION extract_urls(session_id integer, item_id integer) RETURNS integer + LANGUAGE plpgsql + AS $$ +DECLARE + last_seen_tag TEXT; + current_tag TEXT; + current_sf TEXT; + current_url TEXT; + current_ord INT; + current_url_pos INT; + current_selector url_verify.url_selector%ROWTYPE; +BEGIN + current_ord := 1; + + FOR current_selector IN SELECT * FROM url_verify.url_selector s WHERE s.session = session_id LOOP + current_url_pos := 1; + LOOP + SELECT (oils_xpath(current_selector.xpath || '/text()', b.marc))[current_url_pos] INTO current_url + FROM biblio.record_entry b + JOIN container.biblio_record_entry_bucket_item c ON (c.target_biblio_record_entry = b.id) + WHERE c.id = item_id; + + EXIT WHEN current_url IS NULL; + + SELECT (oils_xpath(current_selector.xpath || '/../@tag', b.marc))[current_url_pos] INTO current_tag + FROM biblio.record_entry b + JOIN container.biblio_record_entry_bucket_item c ON (c.target_biblio_record_entry = b.id) + WHERE c.id = item_id; + + IF current_tag IS NULL THEN + current_tag := last_seen_tag; + ELSE + last_seen_tag := current_tag; + END IF; + + SELECT (oils_xpath(current_selector.xpath || '/@code', b.marc))[current_url_pos] INTO current_sf + FROM biblio.record_entry b + JOIN container.biblio_record_entry_bucket_item c ON (c.target_biblio_record_entry = b.id) + WHERE c.id = item_id; + + INSERT INTO url_verify.url (session, item, url_selector, tag, subfield, ord, full_url) + VALUES ( session_id, item_id, current_selector.id, current_tag, current_sf, current_ord, current_url); + + current_url_pos := current_url_pos + 1; + current_ord := current_ord + 1; + END LOOP; + END LOOP; + + RETURN current_ord - 1; +END; +$$; + + +ALTER FUNCTION url_verify.extract_urls(session_id integer, item_id integer) OWNER TO evergreen; + +-- +-- Name: ingest_url(); Type: FUNCTION; Schema: url_verify; Owner: evergreen +-- + +CREATE FUNCTION ingest_url() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + tmp_row url_verify.url%ROWTYPE; +BEGIN + SELECT * INTO tmp_row FROM url_verify.parse_url(NEW.full_url); + + NEW.scheme := tmp_row.scheme; + NEW.username := tmp_row.username; + NEW.password := tmp_row.password; + NEW.host := tmp_row.host; + NEW.domain := tmp_row.domain; + NEW.tld := tmp_row.tld; + NEW.port := tmp_row.port; + NEW.path := tmp_row.path; + NEW.page := tmp_row.page; + NEW.query := tmp_row.query; + NEW.fragment := tmp_row.fragment; + + RETURN NEW; +END; +$$; + + +ALTER FUNCTION url_verify.ingest_url() OWNER TO evergreen; + +-- +-- Name: url; Type: TABLE; Schema: url_verify; Owner: evergreen +-- + +CREATE TABLE url ( + id integer NOT NULL, + redirect_from integer, + item integer, + session integer, + url_selector integer, + tag text, + subfield text, + ord integer, + full_url text NOT NULL, + scheme text, + username text, + password text, + host text, + domain text, + tld text, + port text, + path text, + page text, + query text, + fragment text, + CONSTRAINT redirect_or_from_item CHECK (((redirect_from IS NOT NULL) OR ((item IS NOT NULL) AND (url_selector IS NOT NULL) AND (tag IS NOT NULL) AND (subfield IS NOT NULL) AND (ord IS NOT NULL)))) +); + + +ALTER TABLE url OWNER TO evergreen; + +-- +-- Name: parse_url(text); Type: FUNCTION; Schema: url_verify; Owner: evergreen +-- + +CREATE FUNCTION parse_url(url_in text) RETURNS url + LANGUAGE plperlu + AS $_X$ + +use Rose::URI; + +my $url_in = shift; +my $url = Rose::URI->new($url_in); + +my %parts = map { $_ => $url->$_ } qw/scheme username password host port path query fragment/; + +$parts{full_url} = $url_in; +($parts{domain} = $parts{host}) =~ s/^[^.]+\.//; +($parts{tld} = $parts{domain}) =~ s/(?:[^.]+\.)+//; +($parts{page} = $parts{path}) =~ s#(?:[^/]*/)+##; + +return \%parts; + +$_X$; + + +ALTER FUNCTION url_verify.parse_url(url_in text) OWNER TO evergreen; + +SET search_path = vandelay, pg_catalog; + +-- +-- Name: match_set_point; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE match_set_point ( + id integer NOT NULL, + match_set integer, + parent integer, + bool_op text, + svf text, + tag text, + subfield text, + negate boolean DEFAULT false, + quality integer DEFAULT 1 NOT NULL, + heading boolean DEFAULT false NOT NULL, + CONSTRAINT match_set_point_bool_op_check CHECK (((bool_op IS NULL) OR (bool_op = ANY (ARRAY['AND'::text, 'OR'::text, 'NOT'::text])))), + CONSTRAINT vmsp_need_a_subfield_with_a_tag CHECK ((((tag IS NOT NULL) AND (subfield IS NOT NULL)) OR (tag IS NULL))), + CONSTRAINT vmsp_need_a_tag_or_a_ff_or_a_bo CHECK ((((tag IS NOT NULL) AND (svf IS NULL) AND (heading IS FALSE) AND (bool_op IS NULL)) OR ((tag IS NULL) AND (svf IS NOT NULL) AND (heading IS FALSE) AND (bool_op IS NULL)) OR ((tag IS NULL) AND (svf IS NULL) AND (heading IS TRUE) AND (bool_op IS NULL)) OR ((tag IS NULL) AND (svf IS NULL) AND (heading IS FALSE) AND (bool_op IS NOT NULL)))) +); + + +ALTER TABLE match_set_point OWNER TO evergreen; + +-- +-- Name: _get_expr_push_jrow(match_set_point, public.hstore, text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION _get_expr_push_jrow(node match_set_point, tags_rstore public.hstore, auth_heading text) RETURNS void + LANGUAGE plpgsql + AS $_$ +DECLARE + jrow TEXT; + my_alias TEXT; + op TEXT; + tagkey TEXT; + caseless BOOL; + jrow_count INT; + my_using TEXT; + my_join TEXT; + rec_table TEXT; +BEGIN + -- remember $1 is tags_rstore, and $2 is svf_rstore + -- a non-NULL auth_heading means we're matching authority records + + IF auth_heading IS NOT NULL THEN + rec_table := 'authority.full_rec'; + ELSE + rec_table := 'metabib.full_rec'; + END IF; + + caseless := FALSE; + SELECT COUNT(*) INTO jrow_count FROM _vandelay_tmp_jrows; + IF jrow_count > 0 THEN + my_using := ' USING (record)'; + my_join := 'FULL OUTER JOIN'; + ELSE + my_using := ''; + my_join := 'FROM'; + END IF; + + IF node.tag IS NOT NULL THEN + caseless := (node.tag IN ('020', '022', '024')); + tagkey := node.tag; + IF node.subfield IS NOT NULL THEN + tagkey := tagkey || node.subfield; + END IF; + END IF; + + IF node.negate THEN + IF caseless THEN + op := 'NOT LIKE'; + ELSE + op := '<>'; + END IF; + ELSE + IF caseless THEN + op := 'LIKE'; + ELSE + op := '='; + END IF; + END IF; + + my_alias := 'n' || node.id::TEXT; + + jrow := my_join || ' (SELECT *, '; + IF node.tag IS NOT NULL THEN + jrow := jrow || node.quality || + ' AS quality FROM ' || rec_table || ' mfr WHERE mfr.tag = ''' || + node.tag || ''''; + IF node.subfield IS NOT NULL THEN + jrow := jrow || ' AND mfr.subfield = ''' || + node.subfield || ''''; + END IF; + jrow := jrow || ' AND ('; + jrow := jrow || vandelay._node_tag_comparisons(caseless, op, tags_rstore, tagkey); + jrow := jrow || ')) ' || my_alias || my_using || E'\n'; + ELSE -- svf + IF auth_heading IS NOT NULL THEN -- authority record + IF node.heading AND auth_heading <> '' THEN + jrow := jrow || 'id AS record, ' || node.quality || + ' AS quality FROM authority.record_entry are ' || + ' WHERE are.heading = ''' || auth_heading || ''''; + jrow := jrow || ') ' || my_alias || my_using || E'\n'; + END IF; + ELSE -- bib record + jrow := jrow || 'id AS record, ' || node.quality || + ' AS quality FROM metabib.record_attr_flat mraf WHERE mraf.attr = ''' || + node.svf || ''' AND mraf.value ' || op || ' $2->''' || node.svf || ''') ' || + my_alias || my_using || E'\n'; + END IF; + END IF; + INSERT INTO _vandelay_tmp_jrows (j) VALUES (jrow); +END; +$_$; + + +ALTER FUNCTION vandelay._get_expr_push_jrow(node match_set_point, tags_rstore public.hstore, auth_heading text) OWNER TO evergreen; + +-- +-- Name: _get_expr_push_qrow(match_set_point); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION _get_expr_push_qrow(node match_set_point) RETURNS void + LANGUAGE plpgsql + AS $$ +DECLARE +BEGIN + INSERT INTO _vandelay_tmp_qrows (q) VALUES (node.id); +END; +$$; + + +ALTER FUNCTION vandelay._get_expr_push_qrow(node match_set_point) OWNER TO evergreen; + +-- +-- Name: _get_expr_render_one(match_set_point); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION _get_expr_render_one(node match_set_point) RETURNS text + LANGUAGE plpgsql + AS $$ +DECLARE + s TEXT; +BEGIN + IF node.bool_op IS NOT NULL THEN + RETURN node.bool_op; + ELSE + RETURN '(n' || node.id::TEXT || '.id IS NOT NULL)'; + END IF; +END; +$$; + + +ALTER FUNCTION vandelay._get_expr_render_one(node match_set_point) OWNER TO evergreen; + +-- +-- Name: _node_tag_comparisons(boolean, text, public.hstore, text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION _node_tag_comparisons(caseless boolean, op text, tags_rstore public.hstore, tagkey text) RETURNS text + LANGUAGE plpgsql + AS $$ +DECLARE + result TEXT; + i INT; + vals TEXT[]; +BEGIN + i := 1; + vals := tags_rstore->tagkey; + result := ''; + + WHILE TRUE LOOP + IF i > 1 THEN + IF vals[i] IS NULL THEN + EXIT; + ELSE + result := result || ' OR '; + END IF; + END IF; + + IF caseless THEN + result := result || 'LOWER(mfr.value) ' || op; + ELSE + result := result || 'mfr.value ' || op; + END IF; + + result := result || ' ' || COALESCE('''' || vals[i] || '''', 'NULL'); + + IF vals[i] IS NULL THEN + EXIT; + END IF; + i := i + 1; + END LOOP; + + RETURN result; + +END; +$$; + + +ALTER FUNCTION vandelay._node_tag_comparisons(caseless boolean, op text, tags_rstore public.hstore, tagkey text) OWNER TO evergreen; + +-- +-- Name: add_field(text, text, text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION add_field(target_xml text, source_xml text, field text) RETURNS text + LANGUAGE sql + AS $_$ + SELECT vandelay.add_field( $1, $2, $3, 0 ); +$_$; + + +ALTER FUNCTION vandelay.add_field(target_xml text, source_xml text, field text) OWNER TO evergreen; + +-- +-- Name: add_field(text, text, text, integer); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION add_field(target_xml text, source_xml text, field text, force_add integer) RETURNS text + LANGUAGE plperlu + AS $_X$ + + use MARC::Record; + use MARC::File::XML (BinaryEncoding => 'UTF-8'); + use MARC::Charset; + use strict; + + MARC::Charset->assume_unicode(1); + + my $target_xml = shift; + my $source_xml = shift; + my $field_spec = shift; + my $force_add = shift || 0; + + my $target_r = MARC::Record->new_from_xml( $target_xml ); + my $source_r = MARC::Record->new_from_xml( $source_xml ); + + return $target_xml unless ($target_r && $source_r); + + my @field_list = split(',', $field_spec); + + my %fields; + for my $f (@field_list) { + $f =~ s/^\s*//; $f =~ s/\s*$//; + if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) { + my $field = $1; + $field =~ s/\s+//; + my $sf = $2; + $sf =~ s/\s+//; + my $match = $3; + $match =~ s/^\s*//; $match =~ s/\s*$//; + $fields{$field} = { sf => [ split('', $sf) ] }; + if ($match) { + my ($msf,$mre) = split('~', $match); + if (length($msf) > 0 and length($mre) > 0) { + $msf =~ s/^\s*//; $msf =~ s/\s*$//; + $mre =~ s/^\s*//; $mre =~ s/\s*$//; + $fields{$field}{match} = { sf => $msf, re => qr/$mre/ }; + } + } + } + } + + for my $f ( keys %fields) { + if ( @{$fields{$f}{sf}} ) { + for my $from_field ($source_r->field( $f )) { + my @tos = $target_r->field( $f ); + if (!@tos) { + next if (exists($fields{$f}{match}) and !$force_add); + my @new_fields = map { $_->clone } $source_r->field( $f ); + $target_r->insert_fields_ordered( @new_fields ); + } else { + for my $to_field (@tos) { + if (exists($fields{$f}{match})) { + next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf})); + } + for my $old_sf ($from_field->subfields) { + $to_field->add_subfields( @$old_sf ) if grep(/$$old_sf[0]/,@{$fields{$f}{sf}}); + } + } + } + } + } else { + my @new_fields = map { $_->clone } $source_r->field( $f ); + $target_r->insert_fields_ordered( @new_fields ); + } + } + + $target_xml = $target_r->as_xml_record; + $target_xml =~ s/^<\?.+?\?>$//mo; + $target_xml =~ s/\n//sgo; + $target_xml =~ s/>\s+ 1 THEN + -- RAISE NOTICE 'not an exact match'; + RETURN FALSE; + END IF; + + SELECT m.eg_record INTO eg_id + FROM vandelay.authority_match m + WHERE m.queued_record = import_id + LIMIT 1; + + IF eg_id IS NULL THEN + RETURN FALSE; + END IF; + + RETURN vandelay.overlay_authority_record( import_id, eg_id, merge_profile_id ); +END; +$$; + + +ALTER FUNCTION vandelay.auto_overlay_authority_record(import_id bigint, merge_profile_id integer) OWNER TO evergreen; + +-- +-- Name: auto_overlay_authority_record_with_best(bigint, integer, numeric); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION auto_overlay_authority_record_with_best(import_id bigint, merge_profile_id integer, lwm_ratio_value_p numeric) RETURNS boolean + LANGUAGE plpgsql + AS $$ +DECLARE + eg_id BIGINT; + lwm_ratio_value NUMERIC; +BEGIN + + lwm_ratio_value := COALESCE(lwm_ratio_value_p, 0.0); + + PERFORM * FROM vandelay.queued_authority_record WHERE import_time IS NOT NULL AND id = import_id; + + IF FOUND THEN + -- RAISE NOTICE 'already imported, cannot auto-overlay' + RETURN FALSE; + END IF; + + SELECT m.eg_record INTO eg_id + FROM vandelay.authority_match m + JOIN vandelay.queued_authority_record qr ON (m.queued_record = qr.id) + JOIN vandelay.authority_queue q ON (qr.queue = q.id) + JOIN authority.record_entry r ON (r.id = m.eg_record) + WHERE m.queued_record = import_id + AND qr.quality::NUMERIC / COALESCE(NULLIF(m.quality,0),1)::NUMERIC >= lwm_ratio_value + ORDER BY m.match_score DESC, -- required match score + qr.quality::NUMERIC / COALESCE(NULLIF(m.quality,0),1)::NUMERIC DESC, -- quality tie breaker + m.id -- when in doubt, use the first match + LIMIT 1; + + IF eg_id IS NULL THEN + -- RAISE NOTICE 'incoming record is not of high enough quality'; + RETURN FALSE; + END IF; + + RETURN vandelay.overlay_authority_record( import_id, eg_id, merge_profile_id ); +END; +$$; + + +ALTER FUNCTION vandelay.auto_overlay_authority_record_with_best(import_id bigint, merge_profile_id integer, lwm_ratio_value_p numeric) OWNER TO evergreen; + +-- +-- Name: auto_overlay_bib_queue(bigint); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION auto_overlay_bib_queue(queue_id bigint) RETURNS SETOF bigint + LANGUAGE sql + AS $_$ + SELECT * FROM vandelay.auto_overlay_bib_queue( $1, NULL ); +$_$; + + +ALTER FUNCTION vandelay.auto_overlay_bib_queue(queue_id bigint) OWNER TO evergreen; + +-- +-- Name: auto_overlay_bib_queue(bigint, integer); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION auto_overlay_bib_queue(queue_id bigint, merge_profile_id integer) RETURNS SETOF bigint + LANGUAGE plpgsql + AS $$ +DECLARE + queued_record vandelay.queued_bib_record%ROWTYPE; +BEGIN + + FOR queued_record IN SELECT * FROM vandelay.queued_bib_record WHERE queue = queue_id AND import_time IS NULL LOOP + + IF vandelay.auto_overlay_bib_record( queued_record.id, merge_profile_id ) THEN + RETURN NEXT queued_record.id; + END IF; + + END LOOP; + + RETURN; + +END; +$$; + + +ALTER FUNCTION vandelay.auto_overlay_bib_queue(queue_id bigint, merge_profile_id integer) OWNER TO evergreen; + +-- +-- Name: auto_overlay_bib_queue_with_best(bigint, integer); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION auto_overlay_bib_queue_with_best(import_id bigint, merge_profile_id integer) RETURNS SETOF bigint + LANGUAGE sql + AS $_$ + SELECT vandelay.auto_overlay_bib_queue_with_best( $1, $2, p.lwm_ratio ) FROM vandelay.merge_profile p WHERE id = $2; +$_$; + + +ALTER FUNCTION vandelay.auto_overlay_bib_queue_with_best(import_id bigint, merge_profile_id integer) OWNER TO evergreen; + +-- +-- Name: auto_overlay_bib_queue_with_best(bigint, integer, numeric); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION auto_overlay_bib_queue_with_best(queue_id bigint, merge_profile_id integer, lwm_ratio_value numeric) RETURNS SETOF bigint + LANGUAGE plpgsql + AS $$ +DECLARE + queued_record vandelay.queued_bib_record%ROWTYPE; +BEGIN + + FOR queued_record IN SELECT * FROM vandelay.queued_bib_record WHERE queue = queue_id AND import_time IS NULL LOOP + + IF vandelay.auto_overlay_bib_record_with_best( queued_record.id, merge_profile_id, lwm_ratio_value ) THEN + RETURN NEXT queued_record.id; + END IF; + + END LOOP; + + RETURN; + +END; +$$; + + +ALTER FUNCTION vandelay.auto_overlay_bib_queue_with_best(queue_id bigint, merge_profile_id integer, lwm_ratio_value numeric) OWNER TO evergreen; + +-- +-- Name: auto_overlay_bib_record(bigint, integer); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION auto_overlay_bib_record(import_id bigint, merge_profile_id integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +DECLARE + eg_id BIGINT; + match_count INT; +BEGIN + + PERFORM * FROM vandelay.queued_bib_record WHERE import_time IS NOT NULL AND id = import_id; + + IF FOUND THEN + -- RAISE NOTICE 'already imported, cannot auto-overlay' + RETURN FALSE; + END IF; + + SELECT COUNT(*) INTO match_count FROM vandelay.bib_match WHERE queued_record = import_id; + + IF match_count <> 1 THEN + -- RAISE NOTICE 'not an exact match'; + RETURN FALSE; + END IF; + + -- Check that the one match is on the first 901c + SELECT m.eg_record INTO eg_id + FROM vandelay.queued_bib_record q + JOIN vandelay.bib_match m ON (m.queued_record = q.id) + WHERE q.id = import_id + AND m.eg_record = oils_xpath_string('//*[@tag="901"]/*[@code="c"][1]',marc)::BIGINT; + + IF NOT FOUND THEN + -- RAISE NOTICE 'not a 901c match'; + RETURN FALSE; + END IF; + + RETURN vandelay.overlay_bib_record( import_id, eg_id, merge_profile_id ); +END; +$$; + + +ALTER FUNCTION vandelay.auto_overlay_bib_record(import_id bigint, merge_profile_id integer) OWNER TO evergreen; + +-- +-- Name: auto_overlay_bib_record_with_best(bigint, integer); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION auto_overlay_bib_record_with_best(import_id bigint, merge_profile_id integer) RETURNS boolean + LANGUAGE sql + AS $_$ + SELECT vandelay.auto_overlay_bib_record_with_best( $1, $2, p.lwm_ratio ) FROM vandelay.merge_profile p WHERE id = $2; +$_$; + + +ALTER FUNCTION vandelay.auto_overlay_bib_record_with_best(import_id bigint, merge_profile_id integer) OWNER TO evergreen; + +-- +-- Name: auto_overlay_bib_record_with_best(bigint, integer, numeric); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION auto_overlay_bib_record_with_best(import_id bigint, merge_profile_id integer, lwm_ratio_value_p numeric) RETURNS boolean + LANGUAGE plpgsql + AS $$ +DECLARE + eg_id BIGINT; + lwm_ratio_value NUMERIC; +BEGIN + + lwm_ratio_value := COALESCE(lwm_ratio_value_p, 0.0); + + PERFORM * FROM vandelay.queued_bib_record WHERE import_time IS NOT NULL AND id = import_id; + + IF FOUND THEN + -- RAISE NOTICE 'already imported, cannot auto-overlay' + RETURN FALSE; + END IF; + + SELECT m.eg_record INTO eg_id + FROM vandelay.bib_match m + JOIN vandelay.queued_bib_record qr ON (m.queued_record = qr.id) + JOIN vandelay.bib_queue q ON (qr.queue = q.id) + JOIN biblio.record_entry r ON (r.id = m.eg_record) + WHERE m.queued_record = import_id + AND qr.quality::NUMERIC / COALESCE(NULLIF(m.quality,0),1)::NUMERIC >= lwm_ratio_value + ORDER BY m.match_score DESC, -- required match score + qr.quality::NUMERIC / COALESCE(NULLIF(m.quality,0),1)::NUMERIC DESC, -- quality tie breaker + m.id -- when in doubt, use the first match + LIMIT 1; + + IF eg_id IS NULL THEN + -- RAISE NOTICE 'incoming record is not of high enough quality'; + RETURN FALSE; + END IF; + + RETURN vandelay.overlay_bib_record( import_id, eg_id, merge_profile_id ); +END; +$$; + + +ALTER FUNCTION vandelay.auto_overlay_bib_record_with_best(import_id bigint, merge_profile_id integer, lwm_ratio_value_p numeric) OWNER TO evergreen; + +-- +-- Name: cleanup_authority_marc(); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION cleanup_authority_marc() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + IF TG_OP IN ('INSERT','UPDATE') AND NEW.imported_as IS NOT NULL THEN + RETURN NEW; + END IF; + + DELETE FROM vandelay.queued_authority_record_attr WHERE record = OLD.id; + IF TG_OP = 'UPDATE' THEN + RETURN NEW; + END IF; + RETURN OLD; +END; +$$; + + +ALTER FUNCTION vandelay.cleanup_authority_marc() OWNER TO evergreen; + +-- +-- Name: cleanup_bib_marc(); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION cleanup_bib_marc() RETURNS trigger + LANGUAGE plpgsql + AS $$ +BEGIN + IF TG_OP IN ('INSERT','UPDATE') AND NEW.imported_as IS NOT NULL THEN + RETURN NEW; + END IF; + + DELETE FROM vandelay.queued_bib_record_attr WHERE record = OLD.id; + DELETE FROM vandelay.import_item WHERE record = OLD.id; + + IF TG_OP = 'UPDATE' THEN + RETURN NEW; + END IF; + RETURN OLD; +END; +$$; + + +ALTER FUNCTION vandelay.cleanup_bib_marc() OWNER TO evergreen; + +-- +-- Name: compile_profile(text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION compile_profile(incoming_xml text) RETURNS compile_profile + LANGUAGE plpgsql + AS $$ +DECLARE + output vandelay.compile_profile%ROWTYPE; + profile vandelay.merge_profile%ROWTYPE; + profile_tmpl TEXT; + profile_tmpl_owner TEXT; + add_rule TEXT := ''; + strip_rule TEXT := ''; + replace_rule TEXT := ''; + preserve_rule TEXT := ''; + +BEGIN + + profile_tmpl := (oils_xpath('//*[@tag="905"]/*[@code="t"]/text()',incoming_xml))[1]; + profile_tmpl_owner := (oils_xpath('//*[@tag="905"]/*[@code="o"]/text()',incoming_xml))[1]; + + IF profile_tmpl IS NOT NULL AND profile_tmpl <> '' AND profile_tmpl_owner IS NOT NULL AND profile_tmpl_owner <> '' THEN + SELECT p.* INTO profile + FROM vandelay.merge_profile p + JOIN actor.org_unit u ON (u.id = p.owner) + WHERE p.name = profile_tmpl + AND u.shortname = profile_tmpl_owner; + + IF profile.id IS NOT NULL THEN + add_rule := COALESCE(profile.add_spec,''); + strip_rule := COALESCE(profile.strip_spec,''); + replace_rule := COALESCE(profile.replace_spec,''); + preserve_rule := COALESCE(profile.preserve_spec,''); + END IF; + END IF; + + add_rule := add_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="a"]/text()',incoming_xml),','),''); + strip_rule := strip_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="d"]/text()',incoming_xml),','),''); + replace_rule := replace_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="r"]/text()',incoming_xml),','),''); + preserve_rule := preserve_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="p"]/text()',incoming_xml),','),''); + + output.add_rule := BTRIM(add_rule,','); + output.replace_rule := BTRIM(replace_rule,','); + output.strip_rule := BTRIM(strip_rule,','); + output.preserve_rule := BTRIM(preserve_rule,','); + + RETURN output; +END; +$$; + + +ALTER FUNCTION vandelay.compile_profile(incoming_xml text) OWNER TO evergreen; + +-- +-- Name: extract_rec_attrs(text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION extract_rec_attrs(xml text) RETURNS public.hstore + LANGUAGE sql + AS $_$ + SELECT vandelay.extract_rec_attrs( $1, (SELECT ARRAY_AGG(name) FROM config.record_attr_definition)); +$_$; + + +ALTER FUNCTION vandelay.extract_rec_attrs(xml text) OWNER TO evergreen; + +-- +-- Name: extract_rec_attrs(text, text[]); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION extract_rec_attrs(xml text, attr_defs text[]) RETURNS public.hstore + LANGUAGE plpgsql + AS $$ +DECLARE + transformed_xml TEXT; + prev_xfrm TEXT; + normalizer RECORD; + xfrm config.xml_transform%ROWTYPE; + attr_value TEXT; + new_attrs HSTORE := ''::HSTORE; + attr_def config.record_attr_definition%ROWTYPE; +BEGIN + + FOR attr_def IN SELECT * FROM config.record_attr_definition WHERE name IN (SELECT * FROM UNNEST(attr_defs)) ORDER BY format LOOP + + IF attr_def.tag IS NOT NULL THEN -- tag (and optional subfield list) selection + SELECT STRING_AGG(x.value, COALESCE(attr_def.joiner,' ')) INTO attr_value + FROM vandelay.flatten_marc(xml) AS x + WHERE x.tag LIKE attr_def.tag + AND CASE + WHEN attr_def.sf_list IS NOT NULL + THEN POSITION(x.subfield IN attr_def.sf_list) > 0 + ELSE TRUE + END + GROUP BY x.tag + ORDER BY x.tag + LIMIT 1; + + ELSIF attr_def.fixed_field IS NOT NULL THEN -- a named fixed field, see config.marc21_ff_pos_map.fixed_field + attr_value := vandelay.marc21_extract_fixed_field(xml, attr_def.fixed_field); + + ELSIF attr_def.xpath IS NOT NULL THEN -- and xpath expression + + SELECT INTO xfrm * FROM config.xml_transform WHERE name = attr_def.format; + + -- See if we can skip the XSLT ... it's expensive + IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN + -- Can't skip the transform + IF xfrm.xslt <> '---' THEN + transformed_xml := oils_xslt_process(xml,xfrm.xslt); + ELSE + transformed_xml := xml; + END IF; + + prev_xfrm := xfrm.name; + END IF; + + IF xfrm.name IS NULL THEN + -- just grab the marcxml (empty) transform + SELECT INTO xfrm * FROM config.xml_transform WHERE xslt = '---' LIMIT 1; + prev_xfrm := xfrm.name; + END IF; + + attr_value := oils_xpath_string(attr_def.xpath, transformed_xml, COALESCE(attr_def.joiner,' '), ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]]); + + ELSIF attr_def.phys_char_sf IS NOT NULL THEN -- a named Physical Characteristic, see config.marc21_physical_characteristic_*_map + SELECT m.value::TEXT INTO attr_value + FROM vandelay.marc21_physical_characteristics(xml) v + JOIN config.marc21_physical_characteristic_value_map m ON (m.id = v.value) + WHERE v.subfield = attr_def.phys_char_sf + LIMIT 1; -- Just in case ... + + END IF; + + -- apply index normalizers to attr_value + FOR normalizer IN + SELECT n.func AS func, + n.param_count AS param_count, + m.params AS params + FROM config.index_normalizer n + JOIN config.record_attr_index_norm_map m ON (m.norm = n.id) + WHERE attr = attr_def.name + ORDER BY m.pos LOOP + EXECUTE 'SELECT ' || normalizer.func || '(' || + quote_nullable( attr_value ) || + CASE + WHEN normalizer.param_count > 0 + THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'') + ELSE '' + END || + ')' INTO attr_value; + + END LOOP; + + -- Add the new value to the hstore + new_attrs := new_attrs || hstore( attr_def.name, attr_value ); + + END LOOP; + + RETURN new_attrs; +END; +$$; + + +ALTER FUNCTION vandelay.extract_rec_attrs(xml text, attr_defs text[]) OWNER TO evergreen; + +-- +-- Name: find_bib_tcn_data(text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION find_bib_tcn_data(xml text) RETURNS SETOF tcn_data + LANGUAGE plpgsql + AS $_$ +DECLARE + eg_tcn TEXT; + eg_tcn_source TEXT; + output vandelay.tcn_data%ROWTYPE; +BEGIN + + -- 001/003 + eg_tcn := BTRIM((oils_xpath('//*[@tag="001"]/text()',xml))[1]); + IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN + + eg_tcn_source := BTRIM((oils_xpath('//*[@tag="003"]/text()',xml))[1]); + IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN + eg_tcn_source := 'System Local'; + END IF; + + PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn AND NOT deleted; + + IF NOT FOUND THEN + output.used := FALSE; + ELSE + output.used := TRUE; + END IF; + + output.tcn := eg_tcn; + output.tcn_source := eg_tcn_source; + RETURN NEXT output; + + END IF; + + -- 901 ab + eg_tcn := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="a"]/text()',xml))[1]); + IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN + + eg_tcn_source := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="b"]/text()',xml))[1]); + IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN + eg_tcn_source := 'System Local'; + END IF; + + PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn AND NOT deleted; + + IF NOT FOUND THEN + output.used := FALSE; + ELSE + output.used := TRUE; + END IF; + + output.tcn := eg_tcn; + output.tcn_source := eg_tcn_source; + RETURN NEXT output; + + END IF; + + -- 039 ab + eg_tcn := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="a"]/text()',xml))[1]); + IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN + + eg_tcn_source := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="b"]/text()',xml))[1]); + IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN + eg_tcn_source := 'System Local'; + END IF; + + PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn AND NOT deleted; + + IF NOT FOUND THEN + output.used := FALSE; + ELSE + output.used := TRUE; + END IF; + + output.tcn := eg_tcn; + output.tcn_source := eg_tcn_source; + RETURN NEXT output; + + END IF; + + -- 020 a + eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="020"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$); + IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN + + eg_tcn_source := 'ISBN'; + + PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn AND NOT deleted; + + IF NOT FOUND THEN + output.used := FALSE; + ELSE + output.used := TRUE; + END IF; + + output.tcn := eg_tcn; + output.tcn_source := eg_tcn_source; + RETURN NEXT output; + + END IF; + + -- 022 a + eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="022"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$); + IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN + + eg_tcn_source := 'ISSN'; + + PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn AND NOT deleted; + + IF NOT FOUND THEN + output.used := FALSE; + ELSE + output.used := TRUE; + END IF; + + output.tcn := eg_tcn; + output.tcn_source := eg_tcn_source; + RETURN NEXT output; + + END IF; + + -- 010 a + eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="010"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$); + IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN + + eg_tcn_source := 'LCCN'; + + PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn AND NOT deleted; + + IF NOT FOUND THEN + output.used := FALSE; + ELSE + output.used := TRUE; + END IF; + + output.tcn := eg_tcn; + output.tcn_source := eg_tcn_source; + RETURN NEXT output; + + END IF; + + -- 035 a + eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="035"]/*[@code="a"]/text()',xml))[1], $re$^.*?(\w+)$$re$, $re$\1$re$); + IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN + + eg_tcn_source := 'System Legacy'; + + PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn AND NOT deleted; + + IF NOT FOUND THEN + output.used := FALSE; + ELSE + output.used := TRUE; + END IF; + + output.tcn := eg_tcn; + output.tcn_source := eg_tcn_source; + RETURN NEXT output; + + END IF; + + RETURN; +END; +$_$; + + +ALTER FUNCTION vandelay.find_bib_tcn_data(xml text) OWNER TO evergreen; + +-- +-- Name: flatten_marc(text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION flatten_marc(marc text) RETURNS SETOF flat_marc + LANGUAGE plpgsql + AS $$ +DECLARE + output vandelay.flat_marc%ROWTYPE; + field RECORD; +BEGIN + FOR field IN SELECT * FROM vandelay.flay_marc( marc ) LOOP + output.ind1 := field.ind1; + output.ind2 := field.ind2; + output.tag := field.tag; + output.subfield := field.subfield; + IF field.subfield IS NOT NULL AND field.tag NOT IN ('020','022','024') THEN -- exclude standard numbers and control fields + output.value := naco_normalize(field.value, field.subfield); + ELSE + output.value := field.value; + END IF; + + CONTINUE WHEN output.value IS NULL; + + RETURN NEXT output; + END LOOP; +END; +$$; + + +ALTER FUNCTION vandelay.flatten_marc(marc text) OWNER TO evergreen; + +-- +-- Name: flatten_marc_hstore(text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION flatten_marc_hstore(record_xml text) RETURNS public.hstore + LANGUAGE plpgsql + AS $_$ +BEGIN + RETURN (SELECT + HSTORE( + ARRAY_AGG(tag || (COALESCE(subfield, ''))), + ARRAY_AGG(value) + ) + FROM ( + SELECT tag, subfield, ARRAY_AGG(value)::TEXT AS value + FROM (SELECT tag, + subfield, + CASE WHEN tag = '020' THEN -- caseless -- isbn + LOWER((REGEXP_MATCHES(value,$$^(\S{10,17})$$))[1] || '%') + WHEN tag = '022' THEN -- caseless -- issn + LOWER((REGEXP_MATCHES(value,$$^(\S{4}[- ]?\S{4})$$))[1] || '%') + WHEN tag = '024' THEN -- caseless -- upc (other) + LOWER(value || '%') + ELSE + value + END AS value + FROM vandelay.flatten_marc(record_xml)) x + GROUP BY tag, subfield ORDER BY tag, subfield + ) subquery + ); +END; +$_$; + + +ALTER FUNCTION vandelay.flatten_marc_hstore(record_xml text) OWNER TO evergreen; + +-- +-- Name: flay_marc(text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION flay_marc(text) RETURNS SETOF flat_marc + LANGUAGE plperlu + AS $_$ + +use MARC::Record; +use MARC::File::XML (BinaryEncoding => 'UTF-8'); +use MARC::Charset; +use strict; + +MARC::Charset->assume_unicode(1); + +my $xml = shift; +my $r = MARC::Record->new_from_xml( $xml ); + +return_next( { tag => 'LDR', value => $r->leader } ); + +for my $f ( $r->fields ) { + if ($f->is_control_field) { + return_next({ tag => $f->tag, value => $f->data }); + } else { + for my $s ($f->subfields) { + return_next({ + tag => $f->tag, + ind1 => $f->indicator(1), + ind2 => $f->indicator(2), + subfield => $s->[0], + value => $s->[1] + }); + + if ( $f->tag eq '245' and $s->[0] eq 'a' ) { + my $trim = $f->indicator(2) || 0; + return_next({ + tag => 'tnf', + ind1 => $f->indicator(1), + ind2 => $f->indicator(2), + subfield => 'a', + value => substr( $s->[1], $trim ) + }); + } + } + } +} + +return undef; + +$_$; + + +ALTER FUNCTION vandelay.flay_marc(text) OWNER TO evergreen; + +-- +-- Name: get_expr_from_match_set(integer, public.hstore); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION get_expr_from_match_set(match_set_id integer, tags_rstore public.hstore) RETURNS text + LANGUAGE plpgsql + AS $$ +BEGIN + RETURN vandelay.get_expr_from_match_set( + match_set_id, tags_rstore, NULL); +END; +$$; + + +ALTER FUNCTION vandelay.get_expr_from_match_set(match_set_id integer, tags_rstore public.hstore) OWNER TO evergreen; + +-- +-- Name: get_expr_from_match_set(integer, public.hstore, text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION get_expr_from_match_set(match_set_id integer, tags_rstore public.hstore, auth_heading text) RETURNS text + LANGUAGE plpgsql + AS $$ +DECLARE + root vandelay.match_set_point; +BEGIN + SELECT * INTO root FROM vandelay.match_set_point + WHERE parent IS NULL AND match_set = match_set_id; + + RETURN vandelay.get_expr_from_match_set_point( + root, tags_rstore, auth_heading); +END; +$$; + + +ALTER FUNCTION vandelay.get_expr_from_match_set(match_set_id integer, tags_rstore public.hstore, auth_heading text) OWNER TO evergreen; + +-- +-- Name: get_expr_from_match_set_point(match_set_point, public.hstore, text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION get_expr_from_match_set_point(node match_set_point, tags_rstore public.hstore, auth_heading text) RETURNS text + LANGUAGE plpgsql + AS $$ +DECLARE + q TEXT; + i INTEGER; + this_op TEXT; + children INTEGER[]; + child vandelay.match_set_point; +BEGIN + SELECT ARRAY_AGG(id) INTO children FROM vandelay.match_set_point + WHERE parent = node.id; + + IF ARRAY_LENGTH(children, 1) > 0 THEN + this_op := vandelay._get_expr_render_one(node); + q := '('; + i := 1; + WHILE children[i] IS NOT NULL LOOP + SELECT * INTO child FROM vandelay.match_set_point + WHERE id = children[i]; + IF i > 1 THEN + q := q || ' ' || this_op || ' '; + END IF; + i := i + 1; + q := q || vandelay.get_expr_from_match_set_point( + child, tags_rstore, auth_heading); + END LOOP; + q := q || ')'; + RETURN q; + ELSIF node.bool_op IS NULL THEN + PERFORM vandelay._get_expr_push_qrow(node); + PERFORM vandelay._get_expr_push_jrow(node, tags_rstore, auth_heading); + RETURN vandelay._get_expr_render_one(node); + ELSE + RETURN ''; + END IF; +END; +$$; + + +ALTER FUNCTION vandelay.get_expr_from_match_set_point(node match_set_point, tags_rstore public.hstore, auth_heading text) OWNER TO evergreen; + +-- +-- Name: ingest_authority_marc(); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION ingest_authority_marc() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + value TEXT; + atype TEXT; + adef RECORD; +BEGIN + IF TG_OP IN ('INSERT','UPDATE') AND NEW.imported_as IS NOT NULL THEN + RETURN NEW; + END IF; + + FOR adef IN SELECT * FROM vandelay.authority_attr_definition LOOP + + SELECT extract_marc_field('vandelay.queued_authority_record', id, adef.xpath, adef.remove) INTO value FROM vandelay.queued_authority_record WHERE id = NEW.id; + IF (value IS NOT NULL AND value <> '') THEN + INSERT INTO vandelay.queued_authority_record_attr (record, field, attr_value) VALUES (NEW.id, adef.id, value); + END IF; + + END LOOP; + + RETURN NULL; +END; +$$; + + +ALTER FUNCTION vandelay.ingest_authority_marc() OWNER TO evergreen; + +-- +-- Name: ingest_bib_items(); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION ingest_bib_items() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + attr_def BIGINT; + item_data vandelay.import_item%ROWTYPE; +BEGIN + + IF TG_OP IN ('INSERT','UPDATE') AND NEW.imported_as IS NOT NULL THEN + RETURN NEW; + END IF; + + SELECT item_attr_def INTO attr_def FROM vandelay.bib_queue WHERE id = NEW.queue; + + FOR item_data IN SELECT * FROM vandelay.ingest_items( NEW.id::BIGINT, attr_def ) LOOP + INSERT INTO vandelay.import_item ( + record, + definition, + owning_lib, + circ_lib, + call_number, + copy_number, + status, + location, + circulate, + deposit, + deposit_amount, + ref, + holdable, + price, + barcode, + circ_modifier, + circ_as_type, + alert_message, + pub_note, + priv_note, + internal_id, + opac_visible, + stat_cat_data, + parts_data, + import_error, + error_detail + ) VALUES ( + NEW.id, + item_data.definition, + item_data.owning_lib, + item_data.circ_lib, + item_data.call_number, + item_data.copy_number, + item_data.status, + item_data.location, + item_data.circulate, + item_data.deposit, + item_data.deposit_amount, + item_data.ref, + item_data.holdable, + item_data.price, + item_data.barcode, + item_data.circ_modifier, + item_data.circ_as_type, + item_data.alert_message, + item_data.pub_note, + item_data.priv_note, + item_data.internal_id, + item_data.opac_visible, + item_data.stat_cat_data, + item_data.parts_data, + item_data.import_error, + item_data.error_detail + ); + END LOOP; + + RETURN NULL; +END; +$$; + + +ALTER FUNCTION vandelay.ingest_bib_items() OWNER TO evergreen; + +-- +-- Name: ingest_bib_marc(); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION ingest_bib_marc() RETURNS trigger + LANGUAGE plpgsql + AS $$ +DECLARE + value TEXT; + atype TEXT; + adef RECORD; +BEGIN + IF TG_OP IN ('INSERT','UPDATE') AND NEW.imported_as IS NOT NULL THEN + RETURN NEW; + END IF; + + FOR adef IN SELECT * FROM vandelay.bib_attr_definition LOOP + + SELECT extract_marc_field('vandelay.queued_bib_record', id, adef.xpath, adef.remove) INTO value FROM vandelay.queued_bib_record WHERE id = NEW.id; + IF (value IS NOT NULL AND value <> '') THEN + INSERT INTO vandelay.queued_bib_record_attr (record, field, attr_value) VALUES (NEW.id, adef.id, value); + END IF; + + END LOOP; + + RETURN NULL; +END; +$$; + + +ALTER FUNCTION vandelay.ingest_bib_marc() OWNER TO evergreen; + +-- +-- Name: import_item; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE import_item ( + id bigint NOT NULL, + record bigint NOT NULL, + definition bigint NOT NULL, + import_error text, + error_detail text, + imported_as bigint, + import_time timestamp with time zone, + owning_lib integer, + circ_lib integer, + call_number text, + copy_number integer, + status integer, + location integer, + circulate boolean, + deposit boolean, + deposit_amount numeric(8,2), + ref boolean, + holdable boolean, + price numeric(8,2), + barcode text, + circ_modifier text, + circ_as_type text, + alert_message text, + pub_note text, + priv_note text, + stat_cat_data text, + parts_data text, + opac_visible boolean, + internal_id bigint +); + + +ALTER TABLE import_item OWNER TO evergreen; + +-- +-- Name: ingest_items(bigint, bigint); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION ingest_items(import_id bigint, attr_def_id bigint) RETURNS SETOF import_item + LANGUAGE plpgsql + AS $$ +DECLARE + + owning_lib TEXT; + circ_lib TEXT; + call_number TEXT; + copy_number TEXT; + status TEXT; + location TEXT; + circulate TEXT; + deposit TEXT; + deposit_amount TEXT; + ref TEXT; + holdable TEXT; + price TEXT; + barcode TEXT; + circ_modifier TEXT; + circ_as_type TEXT; + alert_message TEXT; + opac_visible TEXT; + pub_note TEXT; + priv_note TEXT; + internal_id TEXT; + stat_cat_data TEXT; + parts_data TEXT; + + attr_def RECORD; + tmp_attr_set RECORD; + attr_set vandelay.import_item%ROWTYPE; + + xpaths TEXT[]; + tmp_str TEXT; + +BEGIN + + SELECT * INTO attr_def FROM vandelay.import_item_attr_definition WHERE id = attr_def_id; + + IF FOUND THEN + + attr_set.definition := attr_def.id; + + -- Build the combined XPath + + owning_lib := + CASE + WHEN attr_def.owning_lib IS NULL THEN 'null()' + WHEN LENGTH( attr_def.owning_lib ) = 1 THEN '*[@code="' || attr_def.owning_lib || '"]' + ELSE '*' || attr_def.owning_lib + END; + + circ_lib := + CASE + WHEN attr_def.circ_lib IS NULL THEN 'null()' + WHEN LENGTH( attr_def.circ_lib ) = 1 THEN '*[@code="' || attr_def.circ_lib || '"]' + ELSE '*' || attr_def.circ_lib + END; + + call_number := + CASE + WHEN attr_def.call_number IS NULL THEN 'null()' + WHEN LENGTH( attr_def.call_number ) = 1 THEN '*[@code="' || attr_def.call_number || '"]' + ELSE '*' || attr_def.call_number + END; + + copy_number := + CASE + WHEN attr_def.copy_number IS NULL THEN 'null()' + WHEN LENGTH( attr_def.copy_number ) = 1 THEN '*[@code="' || attr_def.copy_number || '"]' + ELSE '*' || attr_def.copy_number + END; + + status := + CASE + WHEN attr_def.status IS NULL THEN 'null()' + WHEN LENGTH( attr_def.status ) = 1 THEN '*[@code="' || attr_def.status || '"]' + ELSE '*' || attr_def.status + END; + + location := + CASE + WHEN attr_def.location IS NULL THEN 'null()' + WHEN LENGTH( attr_def.location ) = 1 THEN '*[@code="' || attr_def.location || '"]' + ELSE '*' || attr_def.location + END; + + circulate := + CASE + WHEN attr_def.circulate IS NULL THEN 'null()' + WHEN LENGTH( attr_def.circulate ) = 1 THEN '*[@code="' || attr_def.circulate || '"]' + ELSE '*' || attr_def.circulate + END; + + deposit := + CASE + WHEN attr_def.deposit IS NULL THEN 'null()' + WHEN LENGTH( attr_def.deposit ) = 1 THEN '*[@code="' || attr_def.deposit || '"]' + ELSE '*' || attr_def.deposit + END; + + deposit_amount := + CASE + WHEN attr_def.deposit_amount IS NULL THEN 'null()' + WHEN LENGTH( attr_def.deposit_amount ) = 1 THEN '*[@code="' || attr_def.deposit_amount || '"]' + ELSE '*' || attr_def.deposit_amount + END; + + ref := + CASE + WHEN attr_def.ref IS NULL THEN 'null()' + WHEN LENGTH( attr_def.ref ) = 1 THEN '*[@code="' || attr_def.ref || '"]' + ELSE '*' || attr_def.ref + END; + + holdable := + CASE + WHEN attr_def.holdable IS NULL THEN 'null()' + WHEN LENGTH( attr_def.holdable ) = 1 THEN '*[@code="' || attr_def.holdable || '"]' + ELSE '*' || attr_def.holdable + END; + + price := + CASE + WHEN attr_def.price IS NULL THEN 'null()' + WHEN LENGTH( attr_def.price ) = 1 THEN '*[@code="' || attr_def.price || '"]' + ELSE '*' || attr_def.price + END; + + barcode := + CASE + WHEN attr_def.barcode IS NULL THEN 'null()' + WHEN LENGTH( attr_def.barcode ) = 1 THEN '*[@code="' || attr_def.barcode || '"]' + ELSE '*' || attr_def.barcode + END; + + circ_modifier := + CASE + WHEN attr_def.circ_modifier IS NULL THEN 'null()' + WHEN LENGTH( attr_def.circ_modifier ) = 1 THEN '*[@code="' || attr_def.circ_modifier || '"]' + ELSE '*' || attr_def.circ_modifier + END; + + circ_as_type := + CASE + WHEN attr_def.circ_as_type IS NULL THEN 'null()' + WHEN LENGTH( attr_def.circ_as_type ) = 1 THEN '*[@code="' || attr_def.circ_as_type || '"]' + ELSE '*' || attr_def.circ_as_type + END; + + alert_message := + CASE + WHEN attr_def.alert_message IS NULL THEN 'null()' + WHEN LENGTH( attr_def.alert_message ) = 1 THEN '*[@code="' || attr_def.alert_message || '"]' + ELSE '*' || attr_def.alert_message + END; + + opac_visible := + CASE + WHEN attr_def.opac_visible IS NULL THEN 'null()' + WHEN LENGTH( attr_def.opac_visible ) = 1 THEN '*[@code="' || attr_def.opac_visible || '"]' + ELSE '*' || attr_def.opac_visible + END; + + pub_note := + CASE + WHEN attr_def.pub_note IS NULL THEN 'null()' + WHEN LENGTH( attr_def.pub_note ) = 1 THEN '*[@code="' || attr_def.pub_note || '"]' + ELSE '*' || attr_def.pub_note + END; + priv_note := + CASE + WHEN attr_def.priv_note IS NULL THEN 'null()' + WHEN LENGTH( attr_def.priv_note ) = 1 THEN '*[@code="' || attr_def.priv_note || '"]' + ELSE '*' || attr_def.priv_note + END; + + internal_id := + CASE + WHEN attr_def.internal_id IS NULL THEN 'null()' + WHEN LENGTH( attr_def.internal_id ) = 1 THEN '*[@code="' || attr_def.internal_id || '"]' + ELSE '*' || attr_def.internal_id + END; + + stat_cat_data := + CASE + WHEN attr_def.stat_cat_data IS NULL THEN 'null()' + WHEN LENGTH( attr_def.stat_cat_data ) = 1 THEN '*[@code="' || attr_def.stat_cat_data || '"]' + ELSE '*' || attr_def.stat_cat_data + END; + + parts_data := + CASE + WHEN attr_def.parts_data IS NULL THEN 'null()' + WHEN LENGTH( attr_def.parts_data ) = 1 THEN '*[@code="' || attr_def.parts_data || '"]' + ELSE '*' || attr_def.parts_data + END; + + + + xpaths := ARRAY[owning_lib, circ_lib, call_number, copy_number, status, location, circulate, + deposit, deposit_amount, ref, holdable, price, barcode, circ_modifier, circ_as_type, + alert_message, pub_note, priv_note, internal_id, stat_cat_data, parts_data, opac_visible]; + + FOR tmp_attr_set IN + SELECT * + FROM oils_xpath_tag_to_table( (SELECT marc FROM vandelay.queued_bib_record WHERE id = import_id), attr_def.tag, xpaths) + AS t( ol TEXT, clib TEXT, cn TEXT, cnum TEXT, cs TEXT, cl TEXT, circ TEXT, + dep TEXT, dep_amount TEXT, r TEXT, hold TEXT, pr TEXT, bc TEXT, circ_mod TEXT, + circ_as TEXT, amessage TEXT, note TEXT, pnote TEXT, internal_id TEXT, + stat_cat_data TEXT, parts_data TEXT, opac_vis TEXT ) + LOOP + + attr_set.import_error := NULL; + attr_set.error_detail := NULL; + attr_set.deposit_amount := NULL; + attr_set.copy_number := NULL; + attr_set.price := NULL; + attr_set.circ_modifier := NULL; + attr_set.location := NULL; + attr_set.barcode := NULL; + attr_set.call_number := NULL; + + IF tmp_attr_set.pr != '' THEN + tmp_str = REGEXP_REPLACE(tmp_attr_set.pr, E'[^0-9\\.]', '', 'g'); + IF tmp_str = '' THEN + attr_set.import_error := 'import.item.invalid.price'; + attr_set.error_detail := tmp_attr_set.pr; -- original value + RETURN NEXT attr_set; CONTINUE; + END IF; + attr_set.price := tmp_str::NUMERIC(8,2); + END IF; + + IF tmp_attr_set.dep_amount != '' THEN + tmp_str = REGEXP_REPLACE(tmp_attr_set.dep_amount, E'[^0-9\\.]', '', 'g'); + IF tmp_str = '' THEN + attr_set.import_error := 'import.item.invalid.deposit_amount'; + attr_set.error_detail := tmp_attr_set.dep_amount; + RETURN NEXT attr_set; CONTINUE; + END IF; + attr_set.deposit_amount := tmp_str::NUMERIC(8,2); + END IF; + + IF tmp_attr_set.cnum != '' THEN + tmp_str = REGEXP_REPLACE(tmp_attr_set.cnum, E'[^0-9]', '', 'g'); + IF tmp_str = '' THEN + attr_set.import_error := 'import.item.invalid.copy_number'; + attr_set.error_detail := tmp_attr_set.cnum; + RETURN NEXT attr_set; CONTINUE; + END IF; + attr_set.copy_number := tmp_str::INT; + END IF; + + IF tmp_attr_set.ol != '' THEN + SELECT id INTO attr_set.owning_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.ol); -- INT + IF NOT FOUND THEN + attr_set.import_error := 'import.item.invalid.owning_lib'; + attr_set.error_detail := tmp_attr_set.ol; + RETURN NEXT attr_set; CONTINUE; + END IF; + END IF; + + IF tmp_attr_set.clib != '' THEN + SELECT id INTO attr_set.circ_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.clib); -- INT + IF NOT FOUND THEN + attr_set.import_error := 'import.item.invalid.circ_lib'; + attr_set.error_detail := tmp_attr_set.clib; + RETURN NEXT attr_set; CONTINUE; + END IF; + END IF; + + IF tmp_attr_set.cs != '' THEN + SELECT id INTO attr_set.status FROM config.copy_status WHERE LOWER(name) = LOWER(tmp_attr_set.cs); -- INT + IF NOT FOUND THEN + attr_set.import_error := 'import.item.invalid.status'; + attr_set.error_detail := tmp_attr_set.cs; + RETURN NEXT attr_set; CONTINUE; + END IF; + END IF; + + IF COALESCE(tmp_attr_set.circ_mod, '') = '' THEN + + -- no circ mod defined, see if we should apply a default + SELECT INTO attr_set.circ_modifier TRIM(BOTH '"' FROM value) + FROM actor.org_unit_ancestor_setting( + 'vandelay.item.circ_modifier.default', + attr_set.owning_lib + ); + + -- make sure the value from the org setting is still valid + PERFORM 1 FROM config.circ_modifier WHERE code = attr_set.circ_modifier; + IF NOT FOUND THEN + attr_set.import_error := 'import.item.invalid.circ_modifier'; + attr_set.error_detail := tmp_attr_set.circ_mod; + RETURN NEXT attr_set; CONTINUE; + END IF; + + ELSE + + SELECT code INTO attr_set.circ_modifier FROM config.circ_modifier WHERE code = tmp_attr_set.circ_mod; + IF NOT FOUND THEN + attr_set.import_error := 'import.item.invalid.circ_modifier'; + attr_set.error_detail := tmp_attr_set.circ_mod; + RETURN NEXT attr_set; CONTINUE; + END IF; + END IF; + + IF tmp_attr_set.circ_as != '' THEN + SELECT code INTO attr_set.circ_as_type FROM config.coded_value_map WHERE ctype = 'item_type' AND code = tmp_attr_set.circ_as; + IF NOT FOUND THEN + attr_set.import_error := 'import.item.invalid.circ_as_type'; + attr_set.error_detail := tmp_attr_set.circ_as; + RETURN NEXT attr_set; CONTINUE; + END IF; + END IF; + + IF COALESCE(tmp_attr_set.cl, '') = '' THEN + -- no location specified, see if we should apply a default + + SELECT INTO attr_set.location TRIM(BOTH '"' FROM value) + FROM actor.org_unit_ancestor_setting( + 'vandelay.item.copy_location.default', + attr_set.owning_lib + ); + + -- make sure the value from the org setting is still valid + PERFORM 1 FROM asset.copy_location + WHERE id = attr_set.location AND NOT deleted; + IF NOT FOUND THEN + attr_set.import_error := 'import.item.invalid.location'; + attr_set.error_detail := tmp_attr_set.cs; + RETURN NEXT attr_set; CONTINUE; + END IF; + ELSE + + -- search up the org unit tree for a matching copy location + WITH RECURSIVE anscestor_depth AS ( + SELECT ou.id, + out.depth AS depth, + ou.parent_ou + FROM actor.org_unit ou + JOIN actor.org_unit_type out ON (out.id = ou.ou_type) + WHERE ou.id = COALESCE(attr_set.owning_lib, attr_set.circ_lib) + UNION ALL + SELECT ou.id, + out.depth, + ou.parent_ou + FROM actor.org_unit ou + JOIN actor.org_unit_type out ON (out.id = ou.ou_type) + JOIN anscestor_depth ot ON (ot.parent_ou = ou.id) + ) SELECT cpl.id INTO attr_set.location + FROM anscestor_depth a + JOIN asset.copy_location cpl ON (cpl.owning_lib = a.id) + WHERE LOWER(cpl.name) = LOWER(tmp_attr_set.cl) + AND NOT cpl.deleted + ORDER BY a.depth DESC + LIMIT 1; + + IF NOT FOUND THEN + attr_set.import_error := 'import.item.invalid.location'; + attr_set.error_detail := tmp_attr_set.cs; + RETURN NEXT attr_set; CONTINUE; + END IF; + END IF; + + attr_set.circulate := + LOWER( SUBSTRING( tmp_attr_set.circ, 1, 1)) IN ('t','y','1') + OR LOWER(tmp_attr_set.circ) = 'circulating'; -- BOOL + + attr_set.deposit := + LOWER( SUBSTRING( tmp_attr_set.dep, 1, 1 ) ) IN ('t','y','1') + OR LOWER(tmp_attr_set.dep) = 'deposit'; -- BOOL + + attr_set.holdable := + LOWER( SUBSTRING( tmp_attr_set.hold, 1, 1 ) ) IN ('t','y','1') + OR LOWER(tmp_attr_set.hold) = 'holdable'; -- BOOL + + attr_set.opac_visible := + LOWER( SUBSTRING( tmp_attr_set.opac_vis, 1, 1 ) ) IN ('t','y','1') + OR LOWER(tmp_attr_set.opac_vis) = 'visible'; -- BOOL + + attr_set.ref := + LOWER( SUBSTRING( tmp_attr_set.r, 1, 1 ) ) IN ('t','y','1') + OR LOWER(tmp_attr_set.r) = 'reference'; -- BOOL + + attr_set.call_number := tmp_attr_set.cn; -- TEXT + attr_set.barcode := tmp_attr_set.bc; -- TEXT, + attr_set.alert_message := tmp_attr_set.amessage; -- TEXT, + attr_set.pub_note := tmp_attr_set.note; -- TEXT, + attr_set.priv_note := tmp_attr_set.pnote; -- TEXT, + attr_set.alert_message := tmp_attr_set.amessage; -- TEXT, + attr_set.internal_id := tmp_attr_set.internal_id::BIGINT; + attr_set.stat_cat_data := tmp_attr_set.stat_cat_data; -- TEXT, + attr_set.parts_data := tmp_attr_set.parts_data; -- TEXT, + + RETURN NEXT attr_set; + + END LOOP; + + END IF; + + RETURN; + +END; +$$; + + +ALTER FUNCTION vandelay.ingest_items(import_id bigint, attr_def_id bigint) OWNER TO evergreen; + +-- +-- Name: marc21_extract_all_fixed_fields(text, boolean); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION marc21_extract_all_fixed_fields(marc text, use_default boolean DEFAULT false) RETURNS SETOF biblio.record_ff_map + LANGUAGE plpgsql + AS $$ +DECLARE + tag_data TEXT; + rtype TEXT; + ff_pos RECORD; + output biblio.record_ff_map%ROWTYPE; +BEGIN + rtype := (vandelay.marc21_record_type( marc )).code; + + FOR ff_pos IN SELECT * FROM config.marc21_ff_pos_map WHERE rec_type = rtype ORDER BY tag DESC LOOP + output.ff_name := ff_pos.fixed_field; + output.ff_value := NULL; + + IF ff_pos.tag = 'ldr' THEN + output.ff_value := oils_xpath_string('//*[local-name()="leader"]', marc); + IF output.ff_value IS NOT NULL THEN + output.ff_value := SUBSTRING( output.ff_value, ff_pos.start_pos + 1, ff_pos.length ); + RETURN NEXT output; + output.ff_value := NULL; + END IF; + ELSE + FOR tag_data IN SELECT value FROM UNNEST( oils_xpath( '//*[@tag="' || UPPER(ff_pos.tag) || '"]/text()', marc ) ) x(value) LOOP + output.ff_value := SUBSTRING( tag_data, ff_pos.start_pos + 1, ff_pos.length ); + CONTINUE WHEN output.ff_value IS NULL AND NOT use_default; + IF output.ff_value IS NULL THEN output.ff_value := REPEAT( ff_pos.default_val, ff_pos.length ); END IF; + RETURN NEXT output; + output.ff_value := NULL; + END LOOP; + END IF; + + END LOOP; + + RETURN; +END; +$$; + + +ALTER FUNCTION vandelay.marc21_extract_all_fixed_fields(marc text, use_default boolean) OWNER TO evergreen; + +-- +-- Name: marc21_extract_fixed_field(text, text, boolean); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION marc21_extract_fixed_field(marc text, ff text, use_default boolean DEFAULT false) RETURNS text + LANGUAGE plpgsql + AS $$ +DECLARE + rtype TEXT; + ff_pos RECORD; + tag_data RECORD; + val TEXT; +BEGIN + rtype := (vandelay.marc21_record_type( marc )).code; + FOR ff_pos IN SELECT * FROM config.marc21_ff_pos_map WHERE fixed_field = ff AND rec_type = rtype ORDER BY tag DESC LOOP + IF ff_pos.tag = 'ldr' THEN + val := oils_xpath_string('//*[local-name()="leader"]', marc); + IF val IS NOT NULL THEN + val := SUBSTRING( val, ff_pos.start_pos + 1, ff_pos.length ); + RETURN val; + END IF; + ELSE + FOR tag_data IN SELECT value FROM UNNEST( oils_xpath( '//*[@tag="' || UPPER(ff_pos.tag) || '"]/text()', marc ) ) x(value) LOOP + val := SUBSTRING( tag_data.value, ff_pos.start_pos + 1, ff_pos.length ); + RETURN val; + END LOOP; + END IF; + CONTINUE WHEN NOT use_default; + val := REPEAT( ff_pos.default_val, ff_pos.length ); + RETURN val; + END LOOP; + + RETURN NULL; +END; +$$; + + +ALTER FUNCTION vandelay.marc21_extract_fixed_field(marc text, ff text, use_default boolean) OWNER TO evergreen; + +-- +-- Name: marc21_extract_fixed_field_list(text, text, boolean); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION marc21_extract_fixed_field_list(marc text, ff text, use_default boolean DEFAULT false) RETURNS text[] + LANGUAGE plpgsql + AS $$ +DECLARE + rtype TEXT; + ff_pos RECORD; + tag_data RECORD; + val TEXT; + collection TEXT[] := '{}'::TEXT[]; +BEGIN + rtype := (vandelay.marc21_record_type( marc )).code; + FOR ff_pos IN SELECT * FROM config.marc21_ff_pos_map WHERE fixed_field = ff AND rec_type = rtype ORDER BY tag DESC LOOP + IF ff_pos.tag = 'ldr' THEN + val := oils_xpath_string('//*[local-name()="leader"]', marc); + IF val IS NOT NULL THEN + val := SUBSTRING( val, ff_pos.start_pos + 1, ff_pos.length ); + collection := collection || val; + END IF; + ELSE + FOR tag_data IN SELECT value FROM UNNEST( oils_xpath( '//*[@tag="' || UPPER(ff_pos.tag) || '"]/text()', marc ) ) x(value) LOOP + val := SUBSTRING( tag_data.value, ff_pos.start_pos + 1, ff_pos.length ); + collection := collection || val; + END LOOP; + END IF; + CONTINUE WHEN NOT use_default; + CONTINUE WHEN ARRAY_UPPER(collection, 1) > 0; + val := REPEAT( ff_pos.default_val, ff_pos.length ); + collection := collection || val; + END LOOP; + + RETURN collection; +END; +$$; + + +ALTER FUNCTION vandelay.marc21_extract_fixed_field_list(marc text, ff text, use_default boolean) OWNER TO evergreen; + +-- +-- Name: marc21_physical_characteristics(text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION marc21_physical_characteristics(marc text) RETURNS SETOF biblio.marc21_physical_characteristics + LANGUAGE plpgsql + AS $$ +DECLARE + rowid INT := 0; + _007 TEXT; + ptype config.marc21_physical_characteristic_type_map%ROWTYPE; + psf config.marc21_physical_characteristic_subfield_map%ROWTYPE; + pval config.marc21_physical_characteristic_value_map%ROWTYPE; + retval biblio.marc21_physical_characteristics%ROWTYPE; +BEGIN + + FOR _007 IN SELECT oils_xpath_string('//*', value) FROM UNNEST(oils_xpath('//*[@tag="007"]', marc)) x(value) LOOP + IF _007 IS NOT NULL AND _007 <> '' THEN + SELECT * INTO ptype FROM config.marc21_physical_characteristic_type_map WHERE ptype_key = SUBSTRING( _007, 1, 1 ); + + IF ptype.ptype_key IS NOT NULL THEN + FOR psf IN SELECT * FROM config.marc21_physical_characteristic_subfield_map WHERE ptype_key = ptype.ptype_key LOOP + SELECT * INTO pval FROM config.marc21_physical_characteristic_value_map WHERE ptype_subfield = psf.id AND value = SUBSTRING( _007, psf.start_pos + 1, psf.length ); + + IF pval.id IS NOT NULL THEN + rowid := rowid + 1; + retval.id := rowid; + retval.ptype := ptype.ptype_key; + retval.subfield := psf.id; + retval.value := pval.id; + RETURN NEXT retval; + END IF; + + END LOOP; + END IF; + END IF; + END LOOP; + + RETURN; +END; +$$; + + +ALTER FUNCTION vandelay.marc21_physical_characteristics(marc text) OWNER TO evergreen; + +SET search_path = config, pg_catalog; + +-- +-- Name: marc21_rec_type_map; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE marc21_rec_type_map ( + code text NOT NULL, + type_val text NOT NULL, + blvl_val text NOT NULL +); + + +ALTER TABLE marc21_rec_type_map OWNER TO evergreen; + +SET search_path = vandelay, pg_catalog; + +-- +-- Name: marc21_record_type(text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION marc21_record_type(marc text) RETURNS config.marc21_rec_type_map + LANGUAGE plpgsql + AS $$ +DECLARE + ldr TEXT; + tval TEXT; + tval_rec RECORD; + bval TEXT; + bval_rec RECORD; + retval config.marc21_rec_type_map%ROWTYPE; +BEGIN + ldr := oils_xpath_string( '//*[local-name()="leader"]', marc ); + + IF ldr IS NULL OR ldr = '' THEN + SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS'; + RETURN retval; + END IF; + + SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same + SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same + + + tval := SUBSTRING( ldr, tval_rec.start_pos + 1, tval_rec.length ); + bval := SUBSTRING( ldr, bval_rec.start_pos + 1, bval_rec.length ); + + -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr; + + SELECT * INTO retval FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%'; + + + IF retval.code IS NULL THEN + SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS'; + END IF; + + RETURN retval; +END; +$$; + + +ALTER FUNCTION vandelay.marc21_record_type(marc text) OWNER TO evergreen; + +-- +-- Name: match_authority_record(); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION match_authority_record() RETURNS trigger + LANGUAGE plpgsql + AS $_$ +DECLARE + incoming_existing_id TEXT; + test_result vandelay.match_set_test_result%ROWTYPE; + tmp_rec BIGINT; + match_set INT; +BEGIN + IF TG_OP IN ('INSERT','UPDATE') AND NEW.imported_as IS NOT NULL THEN + RETURN NEW; + END IF; + + DELETE FROM vandelay.authority_match WHERE queued_record = NEW.id; + + SELECT q.match_set INTO match_set FROM vandelay.authority_queue q WHERE q.id = NEW.queue; + + IF match_set IS NOT NULL THEN + NEW.quality := vandelay.measure_auth_record_quality( NEW.marc, match_set ); + END IF; + + -- Perfect matches on 901$c exit early with a match with high quality. + incoming_existing_id := + oils_xpath_string('//*[@tag="901"]/*[@code="c"][1]', NEW.marc); + + IF incoming_existing_id IS NOT NULL AND incoming_existing_id != '' THEN + SELECT id INTO tmp_rec FROM authority.record_entry WHERE id = incoming_existing_id::bigint; + IF tmp_rec IS NOT NULL THEN + INSERT INTO vandelay.authority_match (queued_record, eg_record, match_score, quality) + SELECT + NEW.id, + b.id, + 9999, + -- note: no match_set means quality==0 + vandelay.measure_auth_record_quality( b.marc, match_set ) + FROM authority.record_entry b + WHERE id = incoming_existing_id::bigint; + END IF; + END IF; + + IF match_set IS NULL THEN + RETURN NEW; + END IF; + + FOR test_result IN SELECT * FROM + vandelay.match_set_test_authxml(match_set, NEW.marc) LOOP + + INSERT INTO vandelay.authority_match ( queued_record, eg_record, match_score, quality ) + SELECT + NEW.id, + test_result.record, + test_result.quality, + vandelay.measure_auth_record_quality( b.marc, match_set ) + FROM authority.record_entry b + WHERE id = test_result.record; + + END LOOP; + + RETURN NEW; +END; +$_$; + + +ALTER FUNCTION vandelay.match_authority_record() OWNER TO evergreen; + +-- +-- Name: match_bib_record(); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION match_bib_record() RETURNS trigger + LANGUAGE plpgsql + AS $_$ +DECLARE + incoming_existing_id TEXT; + test_result vandelay.match_set_test_result%ROWTYPE; + tmp_rec BIGINT; + match_set INT; + match_bucket INT; +BEGIN + IF TG_OP IN ('INSERT','UPDATE') AND NEW.imported_as IS NOT NULL THEN + RETURN NEW; + END IF; + + DELETE FROM vandelay.bib_match WHERE queued_record = NEW.id; + + SELECT q.match_set INTO match_set FROM vandelay.bib_queue q WHERE q.id = NEW.queue; + + IF match_set IS NOT NULL THEN + NEW.quality := vandelay.measure_record_quality( NEW.marc, match_set ); + END IF; + + -- Perfect matches on 901$c exit early with a match with high quality. + incoming_existing_id := + oils_xpath_string('//*[@tag="901"]/*[@code="c"][1]', NEW.marc); + + IF incoming_existing_id IS NOT NULL AND incoming_existing_id != '' THEN + SELECT id INTO tmp_rec FROM biblio.record_entry WHERE id = incoming_existing_id::bigint; + IF tmp_rec IS NOT NULL THEN + INSERT INTO vandelay.bib_match (queued_record, eg_record, match_score, quality) + SELECT + NEW.id, + b.id, + 9999, + -- note: no match_set means quality==0 + vandelay.measure_record_quality( b.marc, match_set ) + FROM biblio.record_entry b + WHERE id = incoming_existing_id::bigint; + END IF; + END IF; + + IF match_set IS NULL THEN + RETURN NEW; + END IF; + + SELECT q.match_bucket INTO match_bucket FROM vandelay.bib_queue q WHERE q.id = NEW.queue; + + FOR test_result IN SELECT * FROM + vandelay.match_set_test_marcxml(match_set, NEW.marc, match_bucket) LOOP + + INSERT INTO vandelay.bib_match ( queued_record, eg_record, match_score, quality ) + SELECT + NEW.id, + test_result.record, + test_result.quality, + vandelay.measure_record_quality( b.marc, match_set ) + FROM biblio.record_entry b + WHERE id = test_result.record; + + END LOOP; + + RETURN NEW; +END; +$_$; + + +ALTER FUNCTION vandelay.match_bib_record() OWNER TO evergreen; + +-- +-- Name: match_set_test_authxml(integer, text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION match_set_test_authxml(match_set_id integer, record_xml text) RETURNS SETOF match_set_test_result + LANGUAGE plpgsql + AS $$ +DECLARE + tags_rstore HSTORE; + heading TEXT; + coal TEXT; + joins TEXT; + query_ TEXT; + wq TEXT; + qvalue INTEGER; + rec RECORD; +BEGIN + tags_rstore := vandelay.flatten_marc_hstore(record_xml); + + SELECT normalize_heading INTO heading + FROM authority.normalize_heading(record_xml); + + CREATE TEMPORARY TABLE _vandelay_tmp_qrows (q INTEGER); + CREATE TEMPORARY TABLE _vandelay_tmp_jrows (j TEXT); + + -- generate the where clause and return that directly (into wq), and as + -- a side-effect, populate the _vandelay_tmp_[qj]rows tables. + wq := vandelay.get_expr_from_match_set( + match_set_id, tags_rstore, heading); + + query_ := 'SELECT DISTINCT(record), '; + + -- qrows table is for the quality bits we add to the SELECT clause + SELECT STRING_AGG( + 'COALESCE(n' || q::TEXT || '.quality, 0)', ' + ' + ) INTO coal FROM _vandelay_tmp_qrows; + + -- our query string so far is the SELECT clause and the inital FROM. + -- no JOINs yet nor the WHERE clause + query_ := query_ || coal || ' AS quality ' || E'\n'; + + -- jrows table is for the joins we must make (and the real text conditions) + SELECT STRING_AGG(j, E'\n') INTO joins + FROM _vandelay_tmp_jrows; + + -- add those joins and the where clause to our query. + query_ := query_ || joins || E'\n'; + + query_ := query_ || 'JOIN authority.record_entry are ON (are.id = record) ' + || 'WHERE ' || wq || ' AND not are.deleted'; + + -- this will return rows of record,quality + FOR rec IN EXECUTE query_ USING tags_rstore LOOP + RETURN NEXT rec; + END LOOP; + + DROP TABLE _vandelay_tmp_qrows; + DROP TABLE _vandelay_tmp_jrows; + RETURN; +END; +$$; + + +ALTER FUNCTION vandelay.match_set_test_authxml(match_set_id integer, record_xml text) OWNER TO evergreen; + +-- +-- Name: match_set_test_marcxml(integer, text, integer); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION match_set_test_marcxml(match_set_id integer, record_xml text, bucket_id integer) RETURNS SETOF match_set_test_result + LANGUAGE plpgsql + AS $$ +DECLARE + tags_rstore HSTORE; + svf_rstore HSTORE; + coal TEXT; + joins TEXT; + query_ TEXT; + wq TEXT; + qvalue INTEGER; + rec RECORD; +BEGIN + tags_rstore := vandelay.flatten_marc_hstore(record_xml); + svf_rstore := vandelay.extract_rec_attrs(record_xml); + + CREATE TEMPORARY TABLE _vandelay_tmp_qrows (q INTEGER); + CREATE TEMPORARY TABLE _vandelay_tmp_jrows (j TEXT); + + -- generate the where clause and return that directly (into wq), and as + -- a side-effect, populate the _vandelay_tmp_[qj]rows tables. + wq := vandelay.get_expr_from_match_set(match_set_id, tags_rstore); + + query_ := 'SELECT DISTINCT(record), '; + + -- qrows table is for the quality bits we add to the SELECT clause + SELECT STRING_AGG( + 'COALESCE(n' || q::TEXT || '.quality, 0)', ' + ' + ) INTO coal FROM _vandelay_tmp_qrows; + + -- our query string so far is the SELECT clause and the inital FROM. + -- no JOINs yet nor the WHERE clause + query_ := query_ || coal || ' AS quality ' || E'\n'; + + -- jrows table is for the joins we must make (and the real text conditions) + SELECT STRING_AGG(j, E'\n') INTO joins + FROM _vandelay_tmp_jrows; + + -- add those joins and the where clause to our query. + query_ := query_ || joins || E'\n'; + + -- join the record bucket + IF bucket_id IS NOT NULL THEN + query_ := query_ || 'JOIN container.biblio_record_entry_bucket_item ' || + 'brebi ON (brebi.target_biblio_record_entry = record ' || + 'AND brebi.bucket = ' || bucket_id || E')\n'; + END IF; + + query_ := query_ || 'JOIN biblio.record_entry bre ON (bre.id = record) ' || 'WHERE ' || wq || ' AND not bre.deleted'; + + -- this will return rows of record,quality + FOR rec IN EXECUTE query_ USING tags_rstore, svf_rstore LOOP + RETURN NEXT rec; + END LOOP; + + DROP TABLE _vandelay_tmp_qrows; + DROP TABLE _vandelay_tmp_jrows; + RETURN; +END; +$$; + + +ALTER FUNCTION vandelay.match_set_test_marcxml(match_set_id integer, record_xml text, bucket_id integer) OWNER TO evergreen; + +-- +-- Name: measure_auth_record_quality(text, integer); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION measure_auth_record_quality(xml text, match_set_id integer) RETURNS integer + LANGUAGE plpgsql + AS $$ +DECLARE + out_q INT := 0; + rvalue TEXT; + test vandelay.match_set_quality%ROWTYPE; +BEGIN + + FOR test IN SELECT * FROM vandelay.match_set_quality + WHERE match_set = match_set_id LOOP + IF test.tag IS NOT NULL THEN + FOR rvalue IN SELECT value FROM vandelay.flatten_marc( xml ) + WHERE tag = test.tag AND subfield = test.subfield LOOP + IF test.value = rvalue THEN + out_q := out_q + test.quality; + END IF; + END LOOP; + END IF; + END LOOP; + + RETURN out_q; +END; +$$; + + +ALTER FUNCTION vandelay.measure_auth_record_quality(xml text, match_set_id integer) OWNER TO evergreen; + +-- +-- Name: measure_record_quality(text, integer); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION measure_record_quality(xml text, match_set_id integer) RETURNS integer + LANGUAGE plpgsql + AS $$ +DECLARE + out_q INT := 0; + rvalue TEXT; + test vandelay.match_set_quality%ROWTYPE; +BEGIN + + FOR test IN SELECT * FROM vandelay.match_set_quality WHERE match_set = match_set_id LOOP + IF test.tag IS NOT NULL THEN + FOR rvalue IN SELECT value FROM vandelay.flatten_marc( xml ) WHERE tag = test.tag AND subfield = test.subfield LOOP + IF test.value = rvalue THEN + out_q := out_q + test.quality; + END IF; + END LOOP; + ELSE + IF test.value = vandelay.extract_rec_attrs(xml, ARRAY[test.svf]) -> test.svf THEN + out_q := out_q + test.quality; + END IF; + END IF; + END LOOP; + + RETURN out_q; +END; +$$; + + +ALTER FUNCTION vandelay.measure_record_quality(xml text, match_set_id integer) OWNER TO evergreen; + +-- +-- Name: merge_record_xml(text, text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION merge_record_xml(target_marc text, template_marc text) RETURNS text + LANGUAGE plpgsql + AS $$ +DECLARE + dyn_profile vandelay.compile_profile%ROWTYPE; + replace_rule TEXT; + tmp_marc TEXT; + trgt_marc TEXT; + tmpl_marc TEXT; + match_count INT; +BEGIN + + IF target_marc IS NULL OR template_marc IS NULL THEN + -- RAISE NOTICE 'no marc for target or template record'; + RETURN NULL; + END IF; + + dyn_profile := vandelay.compile_profile( template_marc ); + + IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN + -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule; + RETURN NULL; + END IF; + + IF dyn_profile.replace_rule = '' AND dyn_profile.preserve_rule = '' AND dyn_profile.add_rule = '' AND dyn_profile.strip_rule = '' THEN + --Since we have nothing to do, just return what we were given. + RETURN target_marc; + ELSIF dyn_profile.replace_rule <> '' THEN + trgt_marc = target_marc; + tmpl_marc = template_marc; + replace_rule = dyn_profile.replace_rule; + ELSE + tmp_marc = target_marc; + trgt_marc = template_marc; + tmpl_marc = tmp_marc; + replace_rule = dyn_profile.preserve_rule; + END IF; + + RETURN vandelay.merge_record_xml( trgt_marc, tmpl_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule ); + +END; +$$; + + +ALTER FUNCTION vandelay.merge_record_xml(target_marc text, template_marc text) OWNER TO evergreen; + +-- +-- Name: merge_record_xml(text, text, text, text, text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION merge_record_xml(target_xml text, source_xml text, add_rule text, replace_preserve_rule text, strip_rule text) RETURNS text + LANGUAGE sql + AS $_$ + SELECT vandelay.replace_field( vandelay.add_field( vandelay.strip_field( $1, $5) , $2, $3 ), $2, $4); +$_$; + + +ALTER FUNCTION vandelay.merge_record_xml(target_xml text, source_xml text, add_rule text, replace_preserve_rule text, strip_rule text) OWNER TO evergreen; + +-- +-- Name: overlay_authority_record(bigint, bigint, integer); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION overlay_authority_record(import_id bigint, eg_id bigint, merge_profile_id integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +DECLARE + merge_profile vandelay.merge_profile%ROWTYPE; + dyn_profile vandelay.compile_profile%ROWTYPE; + source_marc TEXT; + target_marc TEXT; + eg_marc TEXT; + v_marc TEXT; + replace_rule TEXT; + match_count INT; +BEGIN + + SELECT b.marc INTO eg_marc + FROM authority.record_entry b + JOIN vandelay.authority_match m ON (m.eg_record = b.id AND m.queued_record = import_id) + LIMIT 1; + + SELECT q.marc INTO v_marc + FROM vandelay.queued_record q + JOIN vandelay.authority_match m ON (m.queued_record = q.id AND q.id = import_id) + LIMIT 1; + + IF eg_marc IS NULL OR v_marc IS NULL THEN + -- RAISE NOTICE 'no marc for vandelay or authority record'; + RETURN FALSE; + END IF; + + dyn_profile := vandelay.compile_profile( v_marc ); + + IF merge_profile_id IS NOT NULL THEN + SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id; + IF FOUND THEN + dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ','); + dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ','); + dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ','); + dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ','); + END IF; + END IF; + + IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN + -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule; + RETURN FALSE; + END IF; + + IF dyn_profile.replace_rule = '' AND dyn_profile.preserve_rule = '' AND dyn_profile.add_rule = '' AND dyn_profile.strip_rule = '' THEN + --Since we have nothing to do, just return a NOOP "we did it" + RETURN TRUE; + ELSIF dyn_profile.replace_rule <> '' THEN + source_marc = v_marc; + target_marc = eg_marc; + replace_rule = dyn_profile.replace_rule; + ELSE + source_marc = eg_marc; + target_marc = v_marc; + replace_rule = dyn_profile.preserve_rule; + END IF; + + UPDATE authority.record_entry + SET marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule ) + WHERE id = eg_id; + + IF FOUND THEN + UPDATE vandelay.queued_authority_record + SET imported_as = eg_id, + import_time = NOW() + WHERE id = import_id; + RETURN TRUE; + END IF; + + -- RAISE NOTICE 'update of authority.record_entry failed'; + + RETURN FALSE; + +END; +$$; + + +ALTER FUNCTION vandelay.overlay_authority_record(import_id bigint, eg_id bigint, merge_profile_id integer) OWNER TO evergreen; + +-- +-- Name: overlay_bib_record(bigint, bigint, integer); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION overlay_bib_record(import_id bigint, eg_id bigint, merge_profile_id integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +DECLARE + editor_string TEXT; + editor_id INT; + v_marc TEXT; + v_bib_source INT; + update_fields TEXT[]; + update_query TEXT; + update_bib BOOL; +BEGIN + + SELECT q.marc, q.bib_source INTO v_marc, v_bib_source + FROM vandelay.queued_bib_record q + JOIN vandelay.bib_match m ON (m.queued_record = q.id AND q.id = import_id) + LIMIT 1; + + IF v_marc IS NULL THEN + -- RAISE NOTICE 'no marc for vandelay or bib record'; + RETURN FALSE; + END IF; + + IF vandelay.template_overlay_bib_record( v_marc, eg_id, merge_profile_id) THEN + UPDATE vandelay.queued_bib_record + SET imported_as = eg_id, + import_time = NOW() + WHERE id = import_id; + + SELECT q.update_bib_source INTO update_bib FROM vandelay.merge_profile q where q.id = merge_profile_Id; + + IF update_bib THEN + editor_string := (oils_xpath('//*[@tag="905"]/*[@code="u"]/text()',v_marc))[1]; + + IF editor_string IS NOT NULL AND editor_string <> '' THEN + SELECT usr INTO editor_id FROM actor.card WHERE barcode = editor_string; + + IF editor_id IS NULL THEN + SELECT id INTO editor_id FROM actor.usr WHERE usrname = editor_string; + END IF; + + IF editor_id IS NOT NULL THEN + --only update the edit date if we have a valid editor + update_fields := ARRAY_APPEND(update_fields, 'editor = ' || editor_id || ', edit_date = NOW()'); + END IF; + END IF; + + IF v_bib_source IS NOT NULL THEN + update_fields := ARRAY_APPEND(update_fields, 'source = ' || v_bib_source); + END IF; + + IF ARRAY_LENGTH(update_fields, 1) > 0 THEN + update_query := 'UPDATE biblio.record_entry SET ' || ARRAY_TO_STRING(update_fields, ',') || ' WHERE id = ' || eg_id || ';'; + --RAISE NOTICE 'query: %', update_query; + EXECUTE update_query; + END IF; + END IF; + + RETURN TRUE; + END IF; + + -- RAISE NOTICE 'update of biblio.record_entry failed'; + + RETURN FALSE; + +END; +$$; + + +ALTER FUNCTION vandelay.overlay_bib_record(import_id bigint, eg_id bigint, merge_profile_id integer) OWNER TO evergreen; + +-- +-- Name: replace_field(text, text, text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION replace_field(target_xml text, source_xml text, field text) RETURNS text + LANGUAGE plpgsql + AS $$ +DECLARE + xml_output TEXT; + parsed_target TEXT; + curr_field TEXT; +BEGIN + + parsed_target := vandelay.strip_field( target_xml, ''); -- this dance normalizes the format of the xml for the IF below + xml_output := parsed_target; -- if there are no replace rules, just return the input + + FOR curr_field IN SELECT UNNEST( STRING_TO_ARRAY(field, ',') ) LOOP -- naive split, but it's the same we use in the perl + + xml_output := vandelay.strip_field( parsed_target, curr_field); + + IF xml_output <> parsed_target AND curr_field ~ E'~' THEN + -- we removed something, and there was a regexp restriction in the curr_field definition, so proceed + xml_output := vandelay.add_field( xml_output, source_xml, curr_field, 1 ); + ELSIF curr_field !~ E'~' THEN + -- No regexp restriction, add the curr_field + xml_output := vandelay.add_field( xml_output, source_xml, curr_field, 0 ); + END IF; + + parsed_target := xml_output; -- in prep for any following loop iterations + + END LOOP; + + RETURN xml_output; +END; +$$; + + +ALTER FUNCTION vandelay.replace_field(target_xml text, source_xml text, field text) OWNER TO evergreen; + +-- +-- Name: strip_field(text, text); Type: FUNCTION; Schema: vandelay; Owner: evergreen +-- + +CREATE FUNCTION strip_field(xml text, field text) RETURNS text + LANGUAGE plperlu + AS $_X$ + + use MARC::Record; + use MARC::File::XML (BinaryEncoding => 'UTF-8'); + use MARC::Charset; + use strict; + + MARC::Charset->assume_unicode(1); + + my $xml = shift; + my $r = MARC::Record->new_from_xml( $xml ); + + return $xml unless ($r); + + my $field_spec = shift; + my @field_list = split(',', $field_spec); + + my %fields; + for my $f (@field_list) { + $f =~ s/^\s*//; $f =~ s/\s*$//; + if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) { + my $field = $1; + $field =~ s/\s+//; + my $sf = $2; + $sf =~ s/\s+//; + my $match = $3; + $match =~ s/^\s*//; $match =~ s/\s*$//; + $fields{$field} = { sf => [ split('', $sf) ] }; + if ($match) { + my ($msf,$mre) = split('~', $match); + if (length($msf) > 0 and length($mre) > 0) { + $msf =~ s/^\s*//; $msf =~ s/\s*$//; + $mre =~ s/^\s*//; $mre =~ s/\s*$//; + $fields{$field}{match} = { sf => $msf, re => qr/$mre/ }; + } + } + } + } + + for my $f ( keys %fields) { + for my $to_field ($r->field( $f )) { + if (exists($fields{$f}{match})) { + next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf})); + } + + if ( @{$fields{$f}{sf}} ) { + $to_field->delete_subfield(code => $fields{$f}{sf}); + } else { + $r->delete_field( $to_field ); + } + } + } + + $xml = $r->as_xml_record; + $xml =~ s/^<\?.+?\?>$//mo; + $xml =~ s/\n//sgo; + $xml =~ s/>\s+ '' AND dyn_profile.preserve_rule <> '' THEN + -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule; + RETURN FALSE; + END IF; + + IF dyn_profile.replace_rule = '' AND dyn_profile.preserve_rule = '' AND dyn_profile.add_rule = '' AND dyn_profile.strip_rule = '' THEN + --Since we have nothing to do, just return a NOOP "we did it" + RETURN TRUE; + ELSIF dyn_profile.replace_rule <> '' THEN + source_marc = v_marc; + target_marc = eg_marc; + replace_rule = dyn_profile.replace_rule; + ELSE + source_marc = eg_marc; + target_marc = v_marc; + replace_rule = dyn_profile.preserve_rule; + END IF; + + UPDATE biblio.record_entry + SET marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule ) + WHERE id = eg_id; + + IF NOT FOUND THEN + -- RAISE NOTICE 'update of biblio.record_entry failed'; + RETURN FALSE; + END IF; + + RETURN TRUE; + +END; +$$; + + +ALTER FUNCTION vandelay.template_overlay_bib_record(v_marc text, eg_id bigint, merge_profile_id integer) OWNER TO evergreen; + +SET search_path = evergreen, pg_catalog; + +-- +-- Name: array_accum(anyelement); Type: AGGREGATE; Schema: evergreen; Owner: evergreen +-- + +CREATE AGGREGATE array_accum(anyelement) ( + SFUNC = array_append, + STYPE = anyarray, + INITCOND = '{}' +); + + +ALTER AGGREGATE evergreen.array_accum(anyelement) OWNER TO evergreen; + +SET search_path = public, pg_catalog; + +-- +-- Name: agg_text(text); Type: AGGREGATE; Schema: public; Owner: evergreen +-- + +CREATE AGGREGATE agg_text(text) ( + SFUNC = text_concat, + STYPE = text +); + + +ALTER AGGREGATE public.agg_text(text) OWNER TO evergreen; + +-- +-- Name: first(anyelement); Type: AGGREGATE; Schema: public; Owner: evergreen +-- + +CREATE AGGREGATE first(anyelement) ( + SFUNC = first_agg, + STYPE = anyelement +); + + +ALTER AGGREGATE public.first(anyelement) OWNER TO evergreen; + +-- +-- Name: last(anyelement); Type: AGGREGATE; Schema: public; Owner: evergreen +-- + +CREATE AGGREGATE last(anyelement) ( + SFUNC = last_agg, + STYPE = anyelement +); + + +ALTER AGGREGATE public.last(anyelement) OWNER TO evergreen; + +-- +-- Name: danish_nostop; Type: TEXT SEARCH DICTIONARY; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH DICTIONARY danish_nostop ( + TEMPLATE = pg_catalog.snowball, + language = 'danish' ); + + +ALTER TEXT SEARCH DICTIONARY danish_nostop OWNER TO evergreen; + +-- +-- Name: TEXT SEARCH DICTIONARY danish_nostop; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON TEXT SEARCH DICTIONARY danish_nostop IS 'danish snowball stemmer with no stopwords for ASCII words only.'; + + +-- +-- Name: dutch_nostop; Type: TEXT SEARCH DICTIONARY; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH DICTIONARY dutch_nostop ( + TEMPLATE = pg_catalog.snowball, + language = 'dutch' ); + + +ALTER TEXT SEARCH DICTIONARY dutch_nostop OWNER TO evergreen; + +-- +-- Name: TEXT SEARCH DICTIONARY dutch_nostop; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON TEXT SEARCH DICTIONARY dutch_nostop IS 'dutch snowball stemmer with no stopwords for ASCII words only.'; + + +-- +-- Name: english_nostop; Type: TEXT SEARCH DICTIONARY; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH DICTIONARY english_nostop ( + TEMPLATE = pg_catalog.snowball, + language = 'english' ); + + +ALTER TEXT SEARCH DICTIONARY english_nostop OWNER TO evergreen; + +-- +-- Name: TEXT SEARCH DICTIONARY english_nostop; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON TEXT SEARCH DICTIONARY english_nostop IS 'english snowball stemmer with no stopwords for ASCII words only.'; + + +-- +-- Name: finnish_nostop; Type: TEXT SEARCH DICTIONARY; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH DICTIONARY finnish_nostop ( + TEMPLATE = pg_catalog.snowball, + language = 'finnish' ); + + +ALTER TEXT SEARCH DICTIONARY finnish_nostop OWNER TO evergreen; + +-- +-- Name: TEXT SEARCH DICTIONARY finnish_nostop; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON TEXT SEARCH DICTIONARY finnish_nostop IS 'finnish snowball stemmer with no stopwords for ASCII words only.'; + + +-- +-- Name: french_nostop; Type: TEXT SEARCH DICTIONARY; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH DICTIONARY french_nostop ( + TEMPLATE = pg_catalog.snowball, + language = 'french' ); + + +ALTER TEXT SEARCH DICTIONARY french_nostop OWNER TO evergreen; + +-- +-- Name: TEXT SEARCH DICTIONARY french_nostop; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON TEXT SEARCH DICTIONARY french_nostop IS 'french snowball stemmer with no stopwords for ASCII words only.'; + + +-- +-- Name: german_nostop; Type: TEXT SEARCH DICTIONARY; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH DICTIONARY german_nostop ( + TEMPLATE = pg_catalog.snowball, + language = 'german' ); + + +ALTER TEXT SEARCH DICTIONARY german_nostop OWNER TO evergreen; + +-- +-- Name: TEXT SEARCH DICTIONARY german_nostop; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON TEXT SEARCH DICTIONARY german_nostop IS 'german snowball stemmer with no stopwords for ASCII words only.'; + + +-- +-- Name: hungarian_nostop; Type: TEXT SEARCH DICTIONARY; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH DICTIONARY hungarian_nostop ( + TEMPLATE = pg_catalog.snowball, + language = 'hungarian' ); + + +ALTER TEXT SEARCH DICTIONARY hungarian_nostop OWNER TO evergreen; + +-- +-- Name: TEXT SEARCH DICTIONARY hungarian_nostop; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON TEXT SEARCH DICTIONARY hungarian_nostop IS 'hungarian snowball stemmer with no stopwords for ASCII words only.'; + + +-- +-- Name: italian_nostop; Type: TEXT SEARCH DICTIONARY; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH DICTIONARY italian_nostop ( + TEMPLATE = pg_catalog.snowball, + language = 'italian' ); + + +ALTER TEXT SEARCH DICTIONARY italian_nostop OWNER TO evergreen; + +-- +-- Name: TEXT SEARCH DICTIONARY italian_nostop; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON TEXT SEARCH DICTIONARY italian_nostop IS 'italian snowball stemmer with no stopwords for ASCII words only.'; + + +-- +-- Name: norwegian_nostop; Type: TEXT SEARCH DICTIONARY; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH DICTIONARY norwegian_nostop ( + TEMPLATE = pg_catalog.snowball, + language = 'norwegian' ); + + +ALTER TEXT SEARCH DICTIONARY norwegian_nostop OWNER TO evergreen; + +-- +-- Name: TEXT SEARCH DICTIONARY norwegian_nostop; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON TEXT SEARCH DICTIONARY norwegian_nostop IS 'norwegian snowball stemmer with no stopwords for ASCII words only.'; + + +-- +-- Name: portuguese_nostop; Type: TEXT SEARCH DICTIONARY; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH DICTIONARY portuguese_nostop ( + TEMPLATE = pg_catalog.snowball, + language = 'portuguese' ); + + +ALTER TEXT SEARCH DICTIONARY portuguese_nostop OWNER TO evergreen; + +-- +-- Name: TEXT SEARCH DICTIONARY portuguese_nostop; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON TEXT SEARCH DICTIONARY portuguese_nostop IS 'portuguese snowball stemmer with no stopwords for ASCII words only.'; + + +-- +-- Name: romanian_nostop; Type: TEXT SEARCH DICTIONARY; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH DICTIONARY romanian_nostop ( + TEMPLATE = pg_catalog.snowball, + language = 'romanian' ); + + +ALTER TEXT SEARCH DICTIONARY romanian_nostop OWNER TO evergreen; + +-- +-- Name: TEXT SEARCH DICTIONARY romanian_nostop; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON TEXT SEARCH DICTIONARY romanian_nostop IS 'romanian snowball stemmer with no stopwords for ASCII words only.'; + + +-- +-- Name: russian_nostop; Type: TEXT SEARCH DICTIONARY; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH DICTIONARY russian_nostop ( + TEMPLATE = pg_catalog.snowball, + language = 'russian' ); + + +ALTER TEXT SEARCH DICTIONARY russian_nostop OWNER TO evergreen; + +-- +-- Name: TEXT SEARCH DICTIONARY russian_nostop; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON TEXT SEARCH DICTIONARY russian_nostop IS 'russian snowball stemmer with no stopwords for ASCII words only.'; + + +-- +-- Name: spanish_nostop; Type: TEXT SEARCH DICTIONARY; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH DICTIONARY spanish_nostop ( + TEMPLATE = pg_catalog.snowball, + language = 'spanish' ); + + +ALTER TEXT SEARCH DICTIONARY spanish_nostop OWNER TO evergreen; + +-- +-- Name: TEXT SEARCH DICTIONARY spanish_nostop; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON TEXT SEARCH DICTIONARY spanish_nostop IS 'spanish snowball stemmer with no stopwords for ASCII words only.'; + + +-- +-- Name: swedish_nostop; Type: TEXT SEARCH DICTIONARY; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH DICTIONARY swedish_nostop ( + TEMPLATE = pg_catalog.snowball, + language = 'swedish' ); + + +ALTER TEXT SEARCH DICTIONARY swedish_nostop OWNER TO evergreen; + +-- +-- Name: TEXT SEARCH DICTIONARY swedish_nostop; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON TEXT SEARCH DICTIONARY swedish_nostop IS 'swedish snowball stemmer with no stopwords for ASCII words only.'; + + +-- +-- Name: turkish_nostop; Type: TEXT SEARCH DICTIONARY; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH DICTIONARY turkish_nostop ( + TEMPLATE = pg_catalog.snowball, + language = 'turkish' ); + + +ALTER TEXT SEARCH DICTIONARY turkish_nostop OWNER TO evergreen; + +-- +-- Name: TEXT SEARCH DICTIONARY turkish_nostop; Type: COMMENT; Schema: -; Owner: evergreen +-- + +COMMENT ON TEXT SEARCH DICTIONARY turkish_nostop IS 'turkish snowball stemmer with no stopwords for ASCII words only.'; + + +-- +-- Name: author; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION author ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR asciiword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR hword_asciipart WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR asciihword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION author + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION author OWNER TO evergreen; + +-- +-- Name: danish_nostop; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION danish_nostop ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR asciiword WITH danish_nostop; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR hword_asciipart WITH danish_nostop; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR asciihword WITH danish_nostop; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION danish_nostop + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION danish_nostop OWNER TO evergreen; + +-- +-- Name: default; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION "default" ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR asciiword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR hword_asciipart WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR asciihword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION "default" + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION "default" OWNER TO evergreen; + +-- +-- Name: dutch_nostop; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION dutch_nostop ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR asciiword WITH dutch_nostop; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR hword_asciipart WITH dutch_nostop; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR asciihword WITH dutch_nostop; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION dutch_nostop OWNER TO evergreen; + +-- +-- Name: english_nostop; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION english_nostop ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR asciiword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR hword_asciipart WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR asciihword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION english_nostop + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION english_nostop OWNER TO evergreen; + +-- +-- Name: finnish_nostop; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION finnish_nostop ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR asciiword WITH finnish_nostop; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR hword_asciipart WITH finnish_nostop; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR asciihword WITH finnish_nostop; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION finnish_nostop OWNER TO evergreen; + +-- +-- Name: french_nostop; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION french_nostop ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR asciiword WITH french_nostop; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR hword_asciipart WITH french_nostop; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR asciihword WITH french_nostop; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION french_nostop + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION french_nostop OWNER TO evergreen; + +-- +-- Name: german_nostop; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION german_nostop ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR asciiword WITH german_nostop; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR hword_asciipart WITH german_nostop; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR asciihword WITH german_nostop; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION german_nostop + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION german_nostop OWNER TO evergreen; + +-- +-- Name: hungarian_nostop; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION hungarian_nostop ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR asciiword WITH hungarian_nostop; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR hword_asciipart WITH hungarian_nostop; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR asciihword WITH hungarian_nostop; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION hungarian_nostop OWNER TO evergreen; + +-- +-- Name: identifier; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION identifier ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR asciiword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR hword_asciipart WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR asciihword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION identifier + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION identifier OWNER TO evergreen; + +-- +-- Name: italian_nostop; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION italian_nostop ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR asciiword WITH italian_nostop; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR hword_asciipart WITH italian_nostop; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR asciihword WITH italian_nostop; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION italian_nostop + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION italian_nostop OWNER TO evergreen; + +-- +-- Name: keyword; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION keyword ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR asciiword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR hword_asciipart WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR asciihword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION keyword + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION keyword OWNER TO evergreen; + +-- +-- Name: norwegian_nostop; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION norwegian_nostop ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR asciiword WITH norwegian_nostop; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR hword_asciipart WITH norwegian_nostop; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR asciihword WITH norwegian_nostop; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION norwegian_nostop OWNER TO evergreen; + +-- +-- Name: portuguese_nostop; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION portuguese_nostop ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR asciiword WITH portuguese_nostop; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR hword_asciipart WITH portuguese_nostop; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR asciihword WITH portuguese_nostop; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION portuguese_nostop OWNER TO evergreen; + +-- +-- Name: romanian_nostop; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION romanian_nostop ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR asciiword WITH romanian_nostop; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR hword_asciipart WITH romanian_nostop; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR asciihword WITH romanian_nostop; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION romanian_nostop OWNER TO evergreen; + +-- +-- Name: russian_nostop; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION russian_nostop ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR asciiword WITH russian_nostop; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR hword_asciipart WITH russian_nostop; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR asciihword WITH russian_nostop; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION russian_nostop + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION russian_nostop OWNER TO evergreen; + +-- +-- Name: series; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION series ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR asciiword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR hword_asciipart WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR asciihword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION series + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION series OWNER TO evergreen; + +-- +-- Name: spanish_nostop; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION spanish_nostop ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR asciiword WITH spanish_nostop; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR hword_asciipart WITH spanish_nostop; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR asciihword WITH spanish_nostop; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION spanish_nostop OWNER TO evergreen; + +-- +-- Name: subject; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION subject ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR asciiword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR hword_asciipart WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR asciihword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION subject + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION subject OWNER TO evergreen; + +-- +-- Name: swedish_nostop; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION swedish_nostop ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR asciiword WITH swedish_nostop; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR hword_asciipart WITH swedish_nostop; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR asciihword WITH swedish_nostop; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION swedish_nostop OWNER TO evergreen; + +-- +-- Name: title; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION title ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR asciiword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR hword_asciipart WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR asciihword WITH english_nostop; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION title + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION title OWNER TO evergreen; + +-- +-- Name: turkish_nostop; Type: TEXT SEARCH CONFIGURATION; Schema: public; Owner: evergreen +-- + +CREATE TEXT SEARCH CONFIGURATION turkish_nostop ( + PARSER = pg_catalog."default" ); + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR asciiword WITH turkish_nostop; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR word WITH simple; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR numword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR email WITH simple; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR url WITH simple; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR host WITH simple; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR sfloat WITH simple; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR version WITH simple; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR hword_numpart WITH simple; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR hword_part WITH simple; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR hword_asciipart WITH turkish_nostop; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR numhword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR asciihword WITH turkish_nostop; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR hword WITH simple; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR url_path WITH simple; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR file WITH simple; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR "float" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR "int" WITH simple; + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop + ADD MAPPING FOR uint WITH simple; + + +ALTER TEXT SEARCH CONFIGURATION turkish_nostop OWNER TO evergreen; + +SET search_path = acq, pg_catalog; + +-- +-- Name: acq_lineitem_history; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE acq_lineitem_history ( + audit_id bigint NOT NULL, + audit_time timestamp with time zone NOT NULL, + audit_action text NOT NULL, + id bigint NOT NULL, + creator integer NOT NULL, + editor integer NOT NULL, + selector integer NOT NULL, + provider integer, + purchase_order integer, + picklist integer, + expected_recv_time timestamp with time zone, + create_time timestamp with time zone NOT NULL, + edit_time timestamp with time zone NOT NULL, + marc text NOT NULL, + eg_bib_id bigint, + source_label text, + state text NOT NULL, + cancel_reason integer, + estimated_unit_price numeric, + claim_policy integer, + queued_record bigint +); + + +ALTER TABLE acq_lineitem_history OWNER TO evergreen; + +-- +-- Name: lineitem; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE lineitem ( + id bigint NOT NULL, + creator integer NOT NULL, + editor integer NOT NULL, + selector integer NOT NULL, + provider integer, + purchase_order integer, + picklist integer, + expected_recv_time timestamp with time zone, + create_time timestamp with time zone DEFAULT now() NOT NULL, + edit_time timestamp with time zone DEFAULT now() NOT NULL, + marc text NOT NULL, + eg_bib_id bigint, + source_label text, + state text DEFAULT 'new'::text NOT NULL, + cancel_reason integer, + estimated_unit_price numeric, + claim_policy integer, + queued_record bigint, + CONSTRAINT picklist_or_po CHECK (((picklist IS NOT NULL) OR (purchase_order IS NOT NULL))) +); + + +ALTER TABLE lineitem OWNER TO evergreen; + +-- +-- Name: acq_lineitem_lifecycle; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW acq_lineitem_lifecycle AS + SELECT '-1'::integer, + now() AS audit_time, + '-'::text AS audit_action, + lineitem.id, + lineitem.creator, + lineitem.editor, + lineitem.selector, + lineitem.provider, + lineitem.purchase_order, + lineitem.picklist, + lineitem.expected_recv_time, + lineitem.create_time, + lineitem.edit_time, + lineitem.marc, + lineitem.eg_bib_id, + lineitem.source_label, + lineitem.state, + lineitem.cancel_reason, + lineitem.estimated_unit_price, + lineitem.claim_policy, + lineitem.queued_record + FROM lineitem +UNION ALL + SELECT acq_lineitem_history.audit_id AS "?column?", + acq_lineitem_history.audit_time, + acq_lineitem_history.audit_action, + acq_lineitem_history.id, + acq_lineitem_history.creator, + acq_lineitem_history.editor, + acq_lineitem_history.selector, + acq_lineitem_history.provider, + acq_lineitem_history.purchase_order, + acq_lineitem_history.picklist, + acq_lineitem_history.expected_recv_time, + acq_lineitem_history.create_time, + acq_lineitem_history.edit_time, + acq_lineitem_history.marc, + acq_lineitem_history.eg_bib_id, + acq_lineitem_history.source_label, + acq_lineitem_history.state, + acq_lineitem_history.cancel_reason, + acq_lineitem_history.estimated_unit_price, + acq_lineitem_history.claim_policy, + acq_lineitem_history.queued_record + FROM acq_lineitem_history; + + +ALTER TABLE acq_lineitem_lifecycle OWNER TO evergreen; + +-- +-- Name: acq_lineitem_pkey_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE acq_lineitem_pkey_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE acq_lineitem_pkey_seq OWNER TO evergreen; + +-- +-- Name: acq_purchase_order_history; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE acq_purchase_order_history ( + audit_id bigint NOT NULL, + audit_time timestamp with time zone NOT NULL, + audit_action text NOT NULL, + id integer NOT NULL, + owner integer NOT NULL, + creator integer NOT NULL, + editor integer NOT NULL, + ordering_agency integer NOT NULL, + create_time timestamp with time zone NOT NULL, + edit_time timestamp with time zone NOT NULL, + provider integer NOT NULL, + state text NOT NULL, + order_date timestamp with time zone, + name text NOT NULL, + cancel_reason integer, + prepayment_required boolean NOT NULL +); + + +ALTER TABLE acq_purchase_order_history OWNER TO evergreen; + +-- +-- Name: purchase_order; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE purchase_order ( + id integer NOT NULL, + owner integer NOT NULL, + creator integer NOT NULL, + editor integer NOT NULL, + ordering_agency integer NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL, + edit_time timestamp with time zone DEFAULT now() NOT NULL, + provider integer NOT NULL, + state text DEFAULT 'new'::text NOT NULL, + order_date timestamp with time zone, + name text NOT NULL, + cancel_reason integer, + prepayment_required boolean DEFAULT false NOT NULL, + CONSTRAINT valid_po_state CHECK ((state = ANY (ARRAY['new'::text, 'pending'::text, 'on-order'::text, 'received'::text, 'cancelled'::text]))) +); + + +ALTER TABLE purchase_order OWNER TO evergreen; + +-- +-- Name: acq_purchase_order_lifecycle; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW acq_purchase_order_lifecycle AS + SELECT '-1'::integer, + now() AS audit_time, + '-'::text AS audit_action, + purchase_order.id, + purchase_order.owner, + purchase_order.creator, + purchase_order.editor, + purchase_order.ordering_agency, + purchase_order.create_time, + purchase_order.edit_time, + purchase_order.provider, + purchase_order.state, + purchase_order.order_date, + purchase_order.name, + purchase_order.cancel_reason, + purchase_order.prepayment_required + FROM purchase_order +UNION ALL + SELECT acq_purchase_order_history.audit_id AS "?column?", + acq_purchase_order_history.audit_time, + acq_purchase_order_history.audit_action, + acq_purchase_order_history.id, + acq_purchase_order_history.owner, + acq_purchase_order_history.creator, + acq_purchase_order_history.editor, + acq_purchase_order_history.ordering_agency, + acq_purchase_order_history.create_time, + acq_purchase_order_history.edit_time, + acq_purchase_order_history.provider, + acq_purchase_order_history.state, + acq_purchase_order_history.order_date, + acq_purchase_order_history.name, + acq_purchase_order_history.cancel_reason, + acq_purchase_order_history.prepayment_required + FROM acq_purchase_order_history; + + +ALTER TABLE acq_purchase_order_lifecycle OWNER TO evergreen; + +-- +-- Name: acq_purchase_order_pkey_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE acq_purchase_order_pkey_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE acq_purchase_order_pkey_seq OWNER TO evergreen; + +-- +-- Name: fund; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE fund ( + id integer NOT NULL, + org integer NOT NULL, + name text NOT NULL, + year integer DEFAULT date_part('year'::text, now()) NOT NULL, + currency_type text NOT NULL, + code text, + rollover boolean DEFAULT false NOT NULL, + propagate boolean DEFAULT true NOT NULL, + active boolean DEFAULT true NOT NULL, + balance_warning_percent integer, + balance_stop_percent integer, + CONSTRAINT acq_fund_rollover_implies_propagate CHECK ((propagate OR (NOT rollover))) +); + + +ALTER TABLE fund OWNER TO evergreen; + +-- +-- Name: fund_allocation; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE fund_allocation ( + id integer NOT NULL, + funding_source integer NOT NULL, + fund integer NOT NULL, + amount numeric NOT NULL, + allocator integer NOT NULL, + note text, + create_time timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE fund_allocation OWNER TO evergreen; + +-- +-- Name: funding_source; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE funding_source ( + id integer NOT NULL, + name text NOT NULL, + owner integer NOT NULL, + currency_type text NOT NULL, + code text +); + + +ALTER TABLE funding_source OWNER TO evergreen; + +-- +-- Name: all_fund_allocation_total; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW all_fund_allocation_total AS + SELECT f.id AS fund, + COALESCE((sum((a.amount * exchange_ratio(s.currency_type, f.currency_type))))::numeric(100,2), (0)::numeric) AS amount + FROM ((fund f + LEFT JOIN fund_allocation a ON ((a.fund = f.id))) + LEFT JOIN funding_source s ON ((a.funding_source = s.id))) + GROUP BY f.id; + + +ALTER TABLE all_fund_allocation_total OWNER TO evergreen; + +-- +-- Name: fund_debit; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE fund_debit ( + id integer NOT NULL, + fund integer NOT NULL, + origin_amount numeric NOT NULL, + origin_currency_type text NOT NULL, + amount numeric NOT NULL, + encumbrance boolean DEFAULT true NOT NULL, + debit_type text NOT NULL, + xfer_destination integer, + create_time timestamp with time zone DEFAULT now() NOT NULL, + invoice_entry integer +); + + +ALTER TABLE fund_debit OWNER TO evergreen; + +-- +-- Name: all_fund_combined_balance; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW all_fund_combined_balance AS + SELECT a.fund, + (a.amount - COALESCE(c.amount, (0)::numeric)) AS amount + FROM (all_fund_allocation_total a + LEFT JOIN ( SELECT fund_debit.fund, + sum(fund_debit.amount) AS amount + FROM fund_debit + GROUP BY fund_debit.fund) c USING (fund)); + + +ALTER TABLE all_fund_combined_balance OWNER TO evergreen; + +-- +-- Name: all_fund_encumbrance_total; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW all_fund_encumbrance_total AS + SELECT f.id AS fund, + COALESCE(encumb.amount, (0)::numeric) AS amount + FROM (fund f + LEFT JOIN ( SELECT fund_debit.fund, + sum(fund_debit.amount) AS amount + FROM fund_debit + WHERE fund_debit.encumbrance + GROUP BY fund_debit.fund) encumb ON ((f.id = encumb.fund))); + + +ALTER TABLE all_fund_encumbrance_total OWNER TO evergreen; + +-- +-- Name: all_fund_spent_total; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW all_fund_spent_total AS + SELECT f.id AS fund, + COALESCE(spent.amount, (0)::numeric) AS amount + FROM (fund f + LEFT JOIN ( SELECT fund_debit.fund, + sum(fund_debit.amount) AS amount + FROM fund_debit + WHERE (NOT fund_debit.encumbrance) + GROUP BY fund_debit.fund) spent ON ((f.id = spent.fund))); + + +ALTER TABLE all_fund_spent_total OWNER TO evergreen; + +-- +-- Name: all_fund_spent_balance; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW all_fund_spent_balance AS + SELECT c.fund, + (c.amount - d.amount) AS amount + FROM (all_fund_allocation_total c + LEFT JOIN all_fund_spent_total d USING (fund)); + + +ALTER TABLE all_fund_spent_balance OWNER TO evergreen; + +-- +-- Name: cancel_reason; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE cancel_reason ( + id integer NOT NULL, + org_unit integer NOT NULL, + label text NOT NULL, + description text NOT NULL, + keep_debits boolean DEFAULT false NOT NULL +); + + +ALTER TABLE cancel_reason OWNER TO evergreen; + +-- +-- Name: cancel_reason_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE cancel_reason_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE cancel_reason_id_seq OWNER TO evergreen; + +-- +-- Name: cancel_reason_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE cancel_reason_id_seq OWNED BY cancel_reason.id; + + +-- +-- Name: claim; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE claim ( + id integer NOT NULL, + type integer NOT NULL, + lineitem_detail bigint NOT NULL +); + + +ALTER TABLE claim OWNER TO evergreen; + +-- +-- Name: claim_event; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE claim_event ( + id bigint NOT NULL, + type integer NOT NULL, + claim integer NOT NULL, + event_date timestamp with time zone DEFAULT now() NOT NULL, + creator integer NOT NULL, + note text +); + + +ALTER TABLE claim_event OWNER TO evergreen; + +-- +-- Name: claim_event_claim_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE claim_event_claim_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE claim_event_claim_seq OWNER TO evergreen; + +-- +-- Name: claim_event_claim_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE claim_event_claim_seq OWNED BY claim_event.claim; + + +-- +-- Name: claim_event_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE claim_event_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE claim_event_id_seq OWNER TO evergreen; + +-- +-- Name: claim_event_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE claim_event_id_seq OWNED BY claim_event.id; + + +-- +-- Name: claim_event_type; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE claim_event_type ( + id integer NOT NULL, + org_unit integer NOT NULL, + code text NOT NULL, + description text NOT NULL, + library_initiated boolean DEFAULT false NOT NULL +); + + +ALTER TABLE claim_event_type OWNER TO evergreen; + +-- +-- Name: claim_event_type_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE claim_event_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE claim_event_type_id_seq OWNER TO evergreen; + +-- +-- Name: claim_event_type_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE claim_event_type_id_seq OWNED BY claim_event_type.id; + + +-- +-- Name: claim_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE claim_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE claim_id_seq OWNER TO evergreen; + +-- +-- Name: claim_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE claim_id_seq OWNED BY claim.id; + + +-- +-- Name: claim_policy; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE claim_policy ( + id integer NOT NULL, + org_unit integer NOT NULL, + name text NOT NULL, + description text NOT NULL +); + + +ALTER TABLE claim_policy OWNER TO evergreen; + +-- +-- Name: claim_policy_action; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE claim_policy_action ( + id integer NOT NULL, + claim_policy integer NOT NULL, + action_interval interval NOT NULL, + action integer NOT NULL +); + + +ALTER TABLE claim_policy_action OWNER TO evergreen; + +-- +-- Name: claim_policy_action_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE claim_policy_action_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE claim_policy_action_id_seq OWNER TO evergreen; + +-- +-- Name: claim_policy_action_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE claim_policy_action_id_seq OWNED BY claim_policy_action.id; + + +-- +-- Name: claim_policy_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE claim_policy_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE claim_policy_id_seq OWNER TO evergreen; + +-- +-- Name: claim_policy_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE claim_policy_id_seq OWNED BY claim_policy.id; + + +-- +-- Name: claim_type; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE claim_type ( + id integer NOT NULL, + org_unit integer NOT NULL, + code text NOT NULL, + description text NOT NULL +); + + +ALTER TABLE claim_type OWNER TO evergreen; + +-- +-- Name: claim_type_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE claim_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE claim_type_id_seq OWNER TO evergreen; + +-- +-- Name: claim_type_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE claim_type_id_seq OWNED BY claim_type.id; + + +-- +-- Name: currency_type; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE currency_type ( + code text NOT NULL, + label text +); + + +ALTER TABLE currency_type OWNER TO evergreen; + +-- +-- Name: debit_attribution; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE debit_attribution ( + id integer NOT NULL, + fund_debit integer NOT NULL, + debit_amount numeric NOT NULL, + funding_source_credit integer, + credit_amount numeric +); + + +ALTER TABLE debit_attribution OWNER TO evergreen; + +-- +-- Name: distribution_formula; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE distribution_formula ( + id integer NOT NULL, + owner integer NOT NULL, + name text NOT NULL, + skip_count integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE distribution_formula OWNER TO evergreen; + +-- +-- Name: distribution_formula_application; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE distribution_formula_application ( + id bigint NOT NULL, + creator integer NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL, + formula integer NOT NULL, + lineitem integer NOT NULL +); + + +ALTER TABLE distribution_formula_application OWNER TO evergreen; + +-- +-- Name: distribution_formula_application_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE distribution_formula_application_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE distribution_formula_application_id_seq OWNER TO evergreen; + +-- +-- Name: distribution_formula_application_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE distribution_formula_application_id_seq OWNED BY distribution_formula_application.id; + + +-- +-- Name: distribution_formula_entry; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE distribution_formula_entry ( + id integer NOT NULL, + formula integer NOT NULL, + "position" integer NOT NULL, + item_count integer NOT NULL, + owning_lib integer, + location integer, + fund integer, + circ_modifier text, + collection_code text, + CONSTRAINT acqdfe_must_be_somewhere CHECK (((owning_lib IS NOT NULL) OR (location IS NOT NULL))) +); + + +ALTER TABLE distribution_formula_entry OWNER TO evergreen; + +-- +-- Name: distribution_formula_entry_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE distribution_formula_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE distribution_formula_entry_id_seq OWNER TO evergreen; + +-- +-- Name: distribution_formula_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE distribution_formula_entry_id_seq OWNED BY distribution_formula_entry.id; + + +-- +-- Name: distribution_formula_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE distribution_formula_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE distribution_formula_id_seq OWNER TO evergreen; + +-- +-- Name: distribution_formula_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE distribution_formula_id_seq OWNED BY distribution_formula.id; + + +SET search_path = config, pg_catalog; + +-- +-- Name: remote_account; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE remote_account ( + id integer NOT NULL, + label text NOT NULL, + host text NOT NULL, + username text, + password text, + account text, + path text, + owner integer NOT NULL, + last_activity timestamp with time zone +); + + +ALTER TABLE remote_account OWNER TO evergreen; + +SET search_path = acq, pg_catalog; + +-- +-- Name: edi_account; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE edi_account ( + provider integer NOT NULL, + in_dir text, + vendcode text, + vendacct text +) +INHERITS (config.remote_account); + + +ALTER TABLE edi_account OWNER TO evergreen; + +-- +-- Name: edi_message; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE edi_message ( + id integer NOT NULL, + account integer, + remote_file text, + create_time timestamp with time zone DEFAULT now() NOT NULL, + translate_time timestamp with time zone, + process_time timestamp with time zone, + error_time timestamp with time zone, + status text DEFAULT 'new'::text NOT NULL, + edi text, + jedi text, + error text, + purchase_order integer, + message_type text NOT NULL, + CONSTRAINT status_value CHECK ((status = ANY (ARRAY['new'::text, 'translated'::text, 'trans_error'::text, 'processed'::text, 'proc_error'::text, 'delete_error'::text, 'retry'::text, 'complete'::text]))), + CONSTRAINT valid_message_type CHECK ((message_type = ANY (ARRAY['ORDERS'::text, 'ORDRSP'::text, 'INVOIC'::text, 'OSTENQ'::text, 'OSTRPT'::text]))) +); + + +ALTER TABLE edi_message OWNER TO evergreen; + +-- +-- Name: edi_message_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE edi_message_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE edi_message_id_seq OWNER TO evergreen; + +-- +-- Name: edi_message_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE edi_message_id_seq OWNED BY edi_message.id; + + +-- +-- Name: exchange_rate; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE exchange_rate ( + id integer NOT NULL, + from_currency text NOT NULL, + to_currency text NOT NULL, + ratio numeric NOT NULL +); + + +ALTER TABLE exchange_rate OWNER TO evergreen; + +-- +-- Name: exchange_rate_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE exchange_rate_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE exchange_rate_id_seq OWNER TO evergreen; + +-- +-- Name: exchange_rate_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE exchange_rate_id_seq OWNED BY exchange_rate.id; + + +-- +-- Name: fiscal_calendar; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE fiscal_calendar ( + id integer NOT NULL, + name text NOT NULL +); + + +ALTER TABLE fiscal_calendar OWNER TO evergreen; + +-- +-- Name: fiscal_calendar_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE fiscal_calendar_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE fiscal_calendar_id_seq OWNER TO evergreen; + +-- +-- Name: fiscal_calendar_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE fiscal_calendar_id_seq OWNED BY fiscal_calendar.id; + + +-- +-- Name: fiscal_year; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE fiscal_year ( + id integer NOT NULL, + calendar integer NOT NULL, + year integer NOT NULL, + year_begin timestamp with time zone NOT NULL, + year_end timestamp with time zone NOT NULL +); + + +ALTER TABLE fiscal_year OWNER TO evergreen; + +-- +-- Name: fiscal_year_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE fiscal_year_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE fiscal_year_id_seq OWNER TO evergreen; + +-- +-- Name: fiscal_year_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE fiscal_year_id_seq OWNED BY fiscal_year.id; + + +-- +-- Name: fund_allocation_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE fund_allocation_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE fund_allocation_id_seq OWNER TO evergreen; + +-- +-- Name: fund_allocation_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE fund_allocation_id_seq OWNED BY fund_allocation.id; + + +-- +-- Name: fund_allocation_percent; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE fund_allocation_percent ( + id integer NOT NULL, + funding_source integer NOT NULL, + org integer NOT NULL, + fund_code text, + percent numeric NOT NULL, + allocator integer NOT NULL, + note text, + create_time timestamp with time zone DEFAULT now() NOT NULL, + CONSTRAINT percentage_range CHECK (((percent >= (0)::numeric) AND (percent <= (100)::numeric))) +); + + +ALTER TABLE fund_allocation_percent OWNER TO evergreen; + +-- +-- Name: fund_allocation_percent_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE fund_allocation_percent_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE fund_allocation_percent_id_seq OWNER TO evergreen; + +-- +-- Name: fund_allocation_percent_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE fund_allocation_percent_id_seq OWNED BY fund_allocation_percent.id; + + +-- +-- Name: fund_allocation_total; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW fund_allocation_total AS + SELECT a.fund, + (sum((a.amount * exchange_ratio(s.currency_type, f.currency_type))))::numeric(100,2) AS amount + FROM ((fund_allocation a + JOIN fund f ON ((a.fund = f.id))) + JOIN funding_source s ON ((a.funding_source = s.id))) + GROUP BY a.fund; + + +ALTER TABLE fund_allocation_total OWNER TO evergreen; + +-- +-- Name: fund_debit_total; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW fund_debit_total AS + SELECT fund.id AS fund, + sum(COALESCE(fund_debit.amount, (0)::numeric)) AS amount + FROM (fund fund + LEFT JOIN fund_debit fund_debit ON ((fund.id = fund_debit.fund))) + GROUP BY fund.id; + + +ALTER TABLE fund_debit_total OWNER TO evergreen; + +-- +-- Name: fund_combined_balance; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW fund_combined_balance AS + SELECT c.fund, + (c.amount - COALESCE(d.amount, 0.0)) AS amount + FROM (fund_allocation_total c + LEFT JOIN fund_debit_total d USING (fund)); + + +ALTER TABLE fund_combined_balance OWNER TO evergreen; + +-- +-- Name: fund_debit_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE fund_debit_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE fund_debit_id_seq OWNER TO evergreen; + +-- +-- Name: fund_debit_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE fund_debit_id_seq OWNED BY fund_debit.id; + + +-- +-- Name: fund_encumbrance_total; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW fund_encumbrance_total AS + SELECT fund.id AS fund, + sum(COALESCE(fund_debit.amount, (0)::numeric)) AS amount + FROM (fund fund + LEFT JOIN fund_debit fund_debit ON ((fund.id = fund_debit.fund))) + WHERE fund_debit.encumbrance + GROUP BY fund.id; + + +ALTER TABLE fund_encumbrance_total OWNER TO evergreen; + +-- +-- Name: fund_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE fund_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE fund_id_seq OWNER TO evergreen; + +-- +-- Name: fund_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE fund_id_seq OWNED BY fund.id; + + +-- +-- Name: fund_spent_total; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW fund_spent_total AS + SELECT fund.id AS fund, + sum(COALESCE(fund_debit.amount, (0)::numeric)) AS amount + FROM (fund fund + LEFT JOIN fund_debit fund_debit ON ((fund.id = fund_debit.fund))) + WHERE (NOT fund_debit.encumbrance) + GROUP BY fund.id; + + +ALTER TABLE fund_spent_total OWNER TO evergreen; + +-- +-- Name: fund_spent_balance; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW fund_spent_balance AS + SELECT c.fund, + (c.amount - COALESCE(d.amount, 0.0)) AS amount + FROM (fund_allocation_total c + LEFT JOIN fund_spent_total d USING (fund)); + + +ALTER TABLE fund_spent_balance OWNER TO evergreen; + +-- +-- Name: fund_tag; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE fund_tag ( + id integer NOT NULL, + owner integer NOT NULL, + name text NOT NULL +); + + +ALTER TABLE fund_tag OWNER TO evergreen; + +-- +-- Name: fund_tag_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE fund_tag_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE fund_tag_id_seq OWNER TO evergreen; + +-- +-- Name: fund_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE fund_tag_id_seq OWNED BY fund_tag.id; + + +-- +-- Name: fund_tag_map; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE fund_tag_map ( + id integer NOT NULL, + fund integer NOT NULL, + tag integer +); + + +ALTER TABLE fund_tag_map OWNER TO evergreen; + +-- +-- Name: fund_tag_map_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE fund_tag_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE fund_tag_map_id_seq OWNER TO evergreen; + +-- +-- Name: fund_tag_map_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE fund_tag_map_id_seq OWNED BY fund_tag_map.id; + + +-- +-- Name: fund_transfer; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE fund_transfer ( + id integer NOT NULL, + src_fund integer NOT NULL, + src_amount numeric NOT NULL, + dest_fund integer, + dest_amount numeric, + transfer_time timestamp with time zone DEFAULT now() NOT NULL, + transfer_user integer NOT NULL, + note text, + funding_source_credit integer NOT NULL +); + + +ALTER TABLE fund_transfer OWNER TO evergreen; + +-- +-- Name: TABLE fund_transfer; Type: COMMENT; Schema: acq; Owner: evergreen +-- + +COMMENT ON TABLE fund_transfer IS ' +Fund Transfer +Each row represents the transfer of money from a source fund +to a destination fund. There should be corresponding entries +in acq.fund_allocation. The purpose of acq.fund_transfer is +to record how much money moved from which fund to which other +fund. + +The presence of two amount fields, rather than one, reflects +the possibility that the two funds are denominated in different +currencies. If they use the same currency type, the two +amounts should be the same. +'; + + +-- +-- Name: fund_transfer_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE fund_transfer_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE fund_transfer_id_seq OWNER TO evergreen; + +-- +-- Name: fund_transfer_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE fund_transfer_id_seq OWNED BY fund_transfer.id; + + +-- +-- Name: funding_source_allocation_total; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW funding_source_allocation_total AS + SELECT a.funding_source, + (sum(a.amount))::numeric(100,2) AS amount + FROM fund_allocation a + GROUP BY a.funding_source; + + +ALTER TABLE funding_source_allocation_total OWNER TO evergreen; + +-- +-- Name: funding_source_credit; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE funding_source_credit ( + id integer NOT NULL, + funding_source integer NOT NULL, + amount numeric NOT NULL, + note text, + deadline_date timestamp with time zone, + effective_date timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE funding_source_credit OWNER TO evergreen; + +-- +-- Name: funding_source_credit_total; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW funding_source_credit_total AS + SELECT funding_source_credit.funding_source, + sum(funding_source_credit.amount) AS amount + FROM funding_source_credit + GROUP BY funding_source_credit.funding_source; + + +ALTER TABLE funding_source_credit_total OWNER TO evergreen; + +-- +-- Name: funding_source_balance; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW funding_source_balance AS + SELECT COALESCE(c.funding_source, a.funding_source) AS funding_source, + (sum((COALESCE(c.amount, 0.0) - COALESCE(a.amount, 0.0))))::numeric(100,2) AS amount + FROM (funding_source_credit_total c + FULL JOIN funding_source_allocation_total a USING (funding_source)) + GROUP BY COALESCE(c.funding_source, a.funding_source); + + +ALTER TABLE funding_source_balance OWNER TO evergreen; + +-- +-- Name: funding_source_credit_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE funding_source_credit_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE funding_source_credit_id_seq OWNER TO evergreen; + +-- +-- Name: funding_source_credit_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE funding_source_credit_id_seq OWNED BY funding_source_credit.id; + + +-- +-- Name: funding_source_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE funding_source_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE funding_source_id_seq OWNER TO evergreen; + +-- +-- Name: funding_source_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE funding_source_id_seq OWNED BY funding_source.id; + + +-- +-- Name: invoice; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE invoice ( + id integer NOT NULL, + receiver integer NOT NULL, + provider integer NOT NULL, + shipper integer NOT NULL, + recv_date timestamp with time zone DEFAULT now() NOT NULL, + recv_method text DEFAULT 'EDI'::text NOT NULL, + inv_type text, + inv_ident text NOT NULL, + payment_auth text, + payment_method text, + note text, + complete boolean DEFAULT false NOT NULL +); + + +ALTER TABLE invoice OWNER TO evergreen; + +-- +-- Name: invoice_entry; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE invoice_entry ( + id integer NOT NULL, + invoice integer NOT NULL, + purchase_order integer, + lineitem integer, + inv_item_count integer NOT NULL, + phys_item_count integer, + note text, + billed_per_item boolean, + cost_billed numeric(8,2), + actual_cost numeric(8,2), + amount_paid numeric(8,2) +); + + +ALTER TABLE invoice_entry OWNER TO evergreen; + +-- +-- Name: invoice_entry_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE invoice_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE invoice_entry_id_seq OWNER TO evergreen; + +-- +-- Name: invoice_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE invoice_entry_id_seq OWNED BY invoice_entry.id; + + +-- +-- Name: invoice_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE invoice_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE invoice_id_seq OWNER TO evergreen; + +-- +-- Name: invoice_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE invoice_id_seq OWNED BY invoice.id; + + +-- +-- Name: invoice_item; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE invoice_item ( + id integer NOT NULL, + invoice integer NOT NULL, + purchase_order integer, + fund_debit integer, + inv_item_type text NOT NULL, + title text, + author text, + note text, + cost_billed numeric(8,2), + actual_cost numeric(8,2), + fund integer, + amount_paid numeric(8,2), + po_item integer, + target bigint +); + + +ALTER TABLE invoice_item OWNER TO evergreen; + +-- +-- Name: invoice_item_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE invoice_item_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE invoice_item_id_seq OWNER TO evergreen; + +-- +-- Name: invoice_item_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE invoice_item_id_seq OWNED BY invoice_item.id; + + +-- +-- Name: invoice_item_type; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE invoice_item_type ( + code text NOT NULL, + name text NOT NULL, + prorate boolean DEFAULT false NOT NULL, + blanket boolean DEFAULT false NOT NULL, + CONSTRAINT aiit_not_blanket_and_prorate CHECK (((blanket IS FALSE) OR (prorate IS FALSE))) +); + + +ALTER TABLE invoice_item_type OWNER TO evergreen; + +-- +-- Name: invoice_method; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE invoice_method ( + code text NOT NULL, + name text NOT NULL +); + + +ALTER TABLE invoice_method OWNER TO evergreen; + +-- +-- Name: invoice_payment_method; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE invoice_payment_method ( + code text NOT NULL, + name text NOT NULL +); + + +ALTER TABLE invoice_payment_method OWNER TO evergreen; + +-- +-- Name: lineitem_alert_text; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE lineitem_alert_text ( + id integer NOT NULL, + code text NOT NULL, + description text, + owning_lib integer NOT NULL +); + + +ALTER TABLE lineitem_alert_text OWNER TO evergreen; + +-- +-- Name: lineitem_alert_text_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE lineitem_alert_text_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE lineitem_alert_text_id_seq OWNER TO evergreen; + +-- +-- Name: lineitem_alert_text_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE lineitem_alert_text_id_seq OWNED BY lineitem_alert_text.id; + + +-- +-- Name: lineitem_attr; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE lineitem_attr ( + id bigint NOT NULL, + definition bigint NOT NULL, + lineitem bigint NOT NULL, + attr_type text NOT NULL, + attr_name text NOT NULL, + attr_value text NOT NULL, + order_ident boolean DEFAULT false NOT NULL +); + + +ALTER TABLE lineitem_attr OWNER TO evergreen; + +-- +-- Name: lineitem_attr_definition; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE lineitem_attr_definition ( + id bigint NOT NULL, + code text NOT NULL, + description text NOT NULL, + remove text DEFAULT ''::text NOT NULL, + ident boolean DEFAULT false NOT NULL +); + + +ALTER TABLE lineitem_attr_definition OWNER TO evergreen; + +-- +-- Name: lineitem_attr_definition_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE lineitem_attr_definition_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE lineitem_attr_definition_id_seq OWNER TO evergreen; + +-- +-- Name: lineitem_attr_definition_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE lineitem_attr_definition_id_seq OWNED BY lineitem_attr_definition.id; + + +-- +-- Name: lineitem_attr_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE lineitem_attr_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE lineitem_attr_id_seq OWNER TO evergreen; + +-- +-- Name: lineitem_attr_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE lineitem_attr_id_seq OWNED BY lineitem_attr.id; + + +-- +-- Name: lineitem_detail; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE lineitem_detail ( + id bigint NOT NULL, + lineitem integer NOT NULL, + fund integer, + fund_debit integer, + eg_copy_id bigint, + barcode text, + cn_label text, + note text, + collection_code text, + circ_modifier text, + owning_lib integer, + location integer, + recv_time timestamp with time zone, + receiver integer, + cancel_reason integer +); + + +ALTER TABLE lineitem_detail OWNER TO evergreen; + +-- +-- Name: lineitem_detail_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE lineitem_detail_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE lineitem_detail_id_seq OWNER TO evergreen; + +-- +-- Name: lineitem_detail_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE lineitem_detail_id_seq OWNED BY lineitem_detail.id; + + +-- +-- Name: lineitem_generated_attr_definition; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE lineitem_generated_attr_definition ( + id bigint DEFAULT nextval('lineitem_attr_definition_id_seq'::regclass), + xpath text NOT NULL +) +INHERITS (lineitem_attr_definition); + + +ALTER TABLE lineitem_generated_attr_definition OWNER TO evergreen; + +-- +-- Name: lineitem_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE lineitem_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE lineitem_id_seq OWNER TO evergreen; + +-- +-- Name: lineitem_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE lineitem_id_seq OWNED BY lineitem.id; + + +-- +-- Name: lineitem_local_attr_definition; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE lineitem_local_attr_definition ( + id bigint DEFAULT nextval('lineitem_attr_definition_id_seq'::regclass) +) +INHERITS (lineitem_attr_definition); + + +ALTER TABLE lineitem_local_attr_definition OWNER TO evergreen; + +-- +-- Name: lineitem_marc_attr_definition; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE lineitem_marc_attr_definition ( + id bigint DEFAULT nextval('lineitem_attr_definition_id_seq'::regclass), + xpath text NOT NULL +) +INHERITS (lineitem_attr_definition); + + +ALTER TABLE lineitem_marc_attr_definition OWNER TO evergreen; + +-- +-- Name: lineitem_note; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE lineitem_note ( + id integer NOT NULL, + lineitem integer NOT NULL, + creator integer NOT NULL, + editor integer NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL, + edit_time timestamp with time zone DEFAULT now() NOT NULL, + value text NOT NULL, + alert_text integer, + vendor_public boolean DEFAULT false NOT NULL +); + + +ALTER TABLE lineitem_note OWNER TO evergreen; + +-- +-- Name: lineitem_note_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE lineitem_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE lineitem_note_id_seq OWNER TO evergreen; + +-- +-- Name: lineitem_note_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE lineitem_note_id_seq OWNED BY lineitem_note.id; + + +-- +-- Name: lineitem_provider_attr_definition; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE lineitem_provider_attr_definition ( + id bigint DEFAULT nextval('lineitem_attr_definition_id_seq'::regclass), + xpath text NOT NULL, + provider integer NOT NULL +) +INHERITS (lineitem_attr_definition); + + +ALTER TABLE lineitem_provider_attr_definition OWNER TO evergreen; + +-- +-- Name: lineitem_summary; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW lineitem_summary AS + SELECT li.id AS lineitem, + ( SELECT count(lid.id) AS count + FROM lineitem_detail lid + WHERE (lid.lineitem = li.id)) AS item_count, + ( SELECT count(lid.id) AS count + FROM lineitem_detail lid + WHERE ((lid.recv_time IS NOT NULL) AND (lid.lineitem = li.id))) AS recv_count, + ( SELECT count(lid.id) AS count + FROM (lineitem_detail lid + JOIN cancel_reason acqcr ON ((acqcr.id = lid.cancel_reason))) + WHERE ((acqcr.keep_debits IS FALSE) AND (lid.lineitem = li.id))) AS cancel_count, + ( SELECT count(lid.id) AS count + FROM (lineitem_detail lid + JOIN cancel_reason acqcr ON ((acqcr.id = lid.cancel_reason))) + WHERE ((acqcr.keep_debits IS TRUE) AND (lid.lineitem = li.id))) AS delay_count, + ( SELECT count(lid.id) AS count + FROM (lineitem_detail lid + JOIN fund_debit debit ON ((lid.fund_debit = debit.id))) + WHERE ((NOT debit.encumbrance) AND (lid.lineitem = li.id))) AS invoice_count, + ( SELECT count(DISTINCT lid.id) AS count + FROM (lineitem_detail lid + JOIN claim claim ON ((claim.lineitem_detail = lid.id))) + WHERE (lid.lineitem = li.id)) AS claim_count, + ( SELECT (((count(lid.id))::numeric * li.estimated_unit_price))::numeric(8,2) AS "numeric" + FROM lineitem_detail lid + WHERE ((lid.cancel_reason IS NULL) AND (lid.lineitem = li.id))) AS estimated_amount, + ( SELECT (sum(debit.amount))::numeric(8,2) AS sum + FROM (lineitem_detail lid + JOIN fund_debit debit ON ((lid.fund_debit = debit.id))) + WHERE (debit.encumbrance AND (lid.lineitem = li.id))) AS encumbrance_amount, + ( SELECT (sum(debit.amount))::numeric(8,2) AS sum + FROM (lineitem_detail lid + JOIN fund_debit debit ON ((lid.fund_debit = debit.id))) + WHERE ((NOT debit.encumbrance) AND (lid.lineitem = li.id))) AS paid_amount + FROM lineitem li; + + +ALTER TABLE lineitem_summary OWNER TO evergreen; + +-- +-- Name: lineitem_usr_attr_definition; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE lineitem_usr_attr_definition ( + id bigint DEFAULT nextval('lineitem_attr_definition_id_seq'::regclass), + usr integer NOT NULL +) +INHERITS (lineitem_attr_definition); + + +ALTER TABLE lineitem_usr_attr_definition OWNER TO evergreen; + +-- +-- Name: ordered_funding_source_credit; Type: VIEW; Schema: acq; Owner: evergreen +-- + +CREATE VIEW ordered_funding_source_credit AS + SELECT + CASE + WHEN (funding_source_credit.deadline_date IS NULL) THEN 2 + ELSE 1 + END AS sort_priority, + CASE + WHEN (funding_source_credit.deadline_date IS NULL) THEN funding_source_credit.effective_date + ELSE funding_source_credit.deadline_date + END AS sort_date, + funding_source_credit.id, + funding_source_credit.funding_source, + funding_source_credit.amount, + funding_source_credit.note + FROM funding_source_credit; + + +ALTER TABLE ordered_funding_source_credit OWNER TO evergreen; + +-- +-- Name: VIEW ordered_funding_source_credit; Type: COMMENT; Schema: acq; Owner: evergreen +-- + +COMMENT ON VIEW ordered_funding_source_credit IS ' +The acq.ordered_funding_source_credit view is a prioritized +ordering of funding source credits. When ordered by the first +three columns, this view defines the order in which the various +credits are to be tapped for spending, subject to the allocations +in the acq.fund_allocation table. + +The first column reflects the principle that we should spend +money with deadlines before spending money without deadlines. + +The second column reflects the principle that we should spend the +oldest money first. For money with deadlines, that means that we +spend first from the credit with the earliest deadline. For +money without deadlines, we spend first from the credit with the +earliest effective date. + +The third column is a tie breaker to ensure a consistent +ordering. +'; + + +-- +-- Name: picklist; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE picklist ( + id integer NOT NULL, + owner integer NOT NULL, + creator integer NOT NULL, + editor integer NOT NULL, + org_unit integer NOT NULL, + name text NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL, + edit_time timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE picklist OWNER TO evergreen; + +-- +-- Name: picklist_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE picklist_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE picklist_id_seq OWNER TO evergreen; + +-- +-- Name: picklist_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE picklist_id_seq OWNED BY picklist.id; + + +-- +-- Name: po_item; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE po_item ( + id integer NOT NULL, + purchase_order integer, + fund_debit integer, + inv_item_type text NOT NULL, + title text, + author text, + note text, + estimated_cost numeric(8,2), + fund integer, + target bigint +); + + +ALTER TABLE po_item OWNER TO evergreen; + +-- +-- Name: po_item_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE po_item_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE po_item_id_seq OWNER TO evergreen; + +-- +-- Name: po_item_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE po_item_id_seq OWNED BY po_item.id; + + +-- +-- Name: po_note; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE po_note ( + id integer NOT NULL, + purchase_order integer NOT NULL, + creator integer NOT NULL, + editor integer NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL, + edit_time timestamp with time zone DEFAULT now() NOT NULL, + value text NOT NULL, + vendor_public boolean DEFAULT false NOT NULL +); + + +ALTER TABLE po_note OWNER TO evergreen; + +-- +-- Name: po_note_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE po_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE po_note_id_seq OWNER TO evergreen; + +-- +-- Name: po_note_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE po_note_id_seq OWNED BY po_note.id; + + +-- +-- Name: provider; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE provider ( + id integer NOT NULL, + name text NOT NULL, + owner integer NOT NULL, + currency_type text NOT NULL, + code text NOT NULL, + holding_tag text, + san text, + edi_default integer, + active boolean DEFAULT true NOT NULL, + prepayment_required boolean DEFAULT false NOT NULL, + url text, + email text, + phone text, + fax_phone text, + default_copy_count integer DEFAULT 0 NOT NULL, + default_claim_policy integer +); + + +ALTER TABLE provider OWNER TO evergreen; + +-- +-- Name: provider_address; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE provider_address ( + id integer NOT NULL, + valid boolean DEFAULT true NOT NULL, + address_type text, + provider integer NOT NULL, + street1 text NOT NULL, + street2 text, + city text NOT NULL, + county text, + state text NOT NULL, + country text NOT NULL, + post_code text NOT NULL, + fax_phone text +); + + +ALTER TABLE provider_address OWNER TO evergreen; + +-- +-- Name: provider_address_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE provider_address_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE provider_address_id_seq OWNER TO evergreen; + +-- +-- Name: provider_address_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE provider_address_id_seq OWNED BY provider_address.id; + + +-- +-- Name: provider_contact; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE provider_contact ( + id integer NOT NULL, + provider integer NOT NULL, + name text NOT NULL, + role text, + email text, + phone text +); + + +ALTER TABLE provider_contact OWNER TO evergreen; + +-- +-- Name: provider_contact_address; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE provider_contact_address ( + id integer NOT NULL, + valid boolean DEFAULT true NOT NULL, + address_type text, + contact integer NOT NULL, + street1 text NOT NULL, + street2 text, + city text NOT NULL, + county text, + state text NOT NULL, + country text NOT NULL, + post_code text NOT NULL, + fax_phone text +); + + +ALTER TABLE provider_contact_address OWNER TO evergreen; + +-- +-- Name: provider_contact_address_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE provider_contact_address_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE provider_contact_address_id_seq OWNER TO evergreen; + +-- +-- Name: provider_contact_address_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE provider_contact_address_id_seq OWNED BY provider_contact_address.id; + + +-- +-- Name: provider_contact_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE provider_contact_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE provider_contact_id_seq OWNER TO evergreen; + +-- +-- Name: provider_contact_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE provider_contact_id_seq OWNED BY provider_contact.id; + + +-- +-- Name: provider_holding_subfield_map; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE provider_holding_subfield_map ( + id integer NOT NULL, + provider integer NOT NULL, + name text NOT NULL, + subfield text NOT NULL +); + + +ALTER TABLE provider_holding_subfield_map OWNER TO evergreen; + +-- +-- Name: provider_holding_subfield_map_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE provider_holding_subfield_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE provider_holding_subfield_map_id_seq OWNER TO evergreen; + +-- +-- Name: provider_holding_subfield_map_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE provider_holding_subfield_map_id_seq OWNED BY provider_holding_subfield_map.id; + + +-- +-- Name: provider_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE provider_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE provider_id_seq OWNER TO evergreen; + +-- +-- Name: provider_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE provider_id_seq OWNED BY provider.id; + + +-- +-- Name: provider_note; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE provider_note ( + id integer NOT NULL, + provider integer NOT NULL, + creator integer NOT NULL, + editor integer NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL, + edit_time timestamp with time zone DEFAULT now() NOT NULL, + value text NOT NULL +); + + +ALTER TABLE provider_note OWNER TO evergreen; + +-- +-- Name: provider_note_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE provider_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE provider_note_id_seq OWNER TO evergreen; + +-- +-- Name: provider_note_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE provider_note_id_seq OWNED BY provider_note.id; + + +-- +-- Name: purchase_order_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE purchase_order_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE purchase_order_id_seq OWNER TO evergreen; + +-- +-- Name: purchase_order_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE purchase_order_id_seq OWNED BY purchase_order.id; + + +-- +-- Name: serial_claim; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE serial_claim ( + id integer NOT NULL, + type integer NOT NULL, + item bigint NOT NULL +); + + +ALTER TABLE serial_claim OWNER TO evergreen; + +-- +-- Name: serial_claim_event; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE serial_claim_event ( + id bigint NOT NULL, + type integer NOT NULL, + claim integer NOT NULL, + event_date timestamp with time zone DEFAULT now() NOT NULL, + creator integer NOT NULL, + note text +); + + +ALTER TABLE serial_claim_event OWNER TO evergreen; + +-- +-- Name: serial_claim_event_claim_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE serial_claim_event_claim_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE serial_claim_event_claim_seq OWNER TO evergreen; + +-- +-- Name: serial_claim_event_claim_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE serial_claim_event_claim_seq OWNED BY serial_claim_event.claim; + + +-- +-- Name: serial_claim_event_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE serial_claim_event_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE serial_claim_event_id_seq OWNER TO evergreen; + +-- +-- Name: serial_claim_event_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE serial_claim_event_id_seq OWNED BY serial_claim_event.id; + + +-- +-- Name: serial_claim_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE serial_claim_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE serial_claim_id_seq OWNER TO evergreen; + +-- +-- Name: serial_claim_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE serial_claim_id_seq OWNED BY serial_claim.id; + + +-- +-- Name: user_request; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE user_request ( + id integer NOT NULL, + usr integer NOT NULL, + hold boolean DEFAULT true NOT NULL, + pickup_lib integer NOT NULL, + holdable_formats text, + phone_notify text, + email_notify boolean DEFAULT true NOT NULL, + lineitem integer, + eg_bib bigint, + request_date timestamp with time zone DEFAULT now() NOT NULL, + need_before timestamp with time zone, + max_fee text, + request_type integer NOT NULL, + isxn text, + title text, + volume text, + author text, + article_title text, + article_pages text, + publisher text, + location text, + pubdate text, + mentioned text, + other_info text, + cancel_reason integer +); + + +ALTER TABLE user_request OWNER TO evergreen; + +-- +-- Name: user_request_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE user_request_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE user_request_id_seq OWNER TO evergreen; + +-- +-- Name: user_request_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE user_request_id_seq OWNED BY user_request.id; + + +-- +-- Name: user_request_type; Type: TABLE; Schema: acq; Owner: evergreen +-- + +CREATE TABLE user_request_type ( + id integer NOT NULL, + label text NOT NULL +); + + +ALTER TABLE user_request_type OWNER TO evergreen; + +-- +-- Name: user_request_type_id_seq; Type: SEQUENCE; Schema: acq; Owner: evergreen +-- + +CREATE SEQUENCE user_request_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE user_request_type_id_seq OWNER TO evergreen; + +-- +-- Name: user_request_type_id_seq; Type: SEQUENCE OWNED BY; Schema: acq; Owner: evergreen +-- + +ALTER SEQUENCE user_request_type_id_seq OWNED BY user_request_type.id; + + +SET search_path = action, pg_catalog; + +-- +-- Name: aged_circulation; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE aged_circulation ( + usr_post_code text, + usr_home_ou integer NOT NULL, + usr_profile integer NOT NULL, + usr_birth_year integer, + copy_call_number integer NOT NULL, + copy_owning_lib integer NOT NULL, + copy_circ_lib integer NOT NULL, + copy_bib_record bigint NOT NULL, + id bigint NOT NULL, + xact_start timestamp with time zone NOT NULL, + xact_finish timestamp with time zone, + unrecovered boolean, + target_copy bigint NOT NULL, + circ_lib integer NOT NULL, + circ_staff integer NOT NULL, + checkin_staff integer, + checkin_lib integer, + renewal_remaining integer NOT NULL, + grace_period interval NOT NULL, + due_date timestamp with time zone, + stop_fines_time timestamp with time zone, + checkin_time timestamp with time zone, + create_time timestamp with time zone NOT NULL, + duration interval, + fine_interval interval NOT NULL, + recurring_fine numeric(6,2), + max_fine numeric(6,2), + phone_renewal boolean NOT NULL, + desk_renewal boolean NOT NULL, + opac_renewal boolean NOT NULL, + duration_rule text NOT NULL, + recurring_fine_rule text NOT NULL, + max_fine_rule text NOT NULL, + stop_fines text, + workstation integer, + checkin_workstation integer, + copy_location integer NOT NULL, + checkin_scan_time timestamp with time zone, + parent_circ bigint +); + + +ALTER TABLE aged_circulation OWNER TO evergreen; + +-- +-- Name: aged_hold_request; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE aged_hold_request ( + usr_post_code text, + usr_home_ou integer NOT NULL, + usr_profile integer NOT NULL, + usr_birth_year integer, + staff_placed boolean NOT NULL, + id integer NOT NULL, + request_time timestamp with time zone NOT NULL, + capture_time timestamp with time zone, + fulfillment_time timestamp with time zone, + checkin_time timestamp with time zone, + return_time timestamp with time zone, + prev_check_time timestamp with time zone, + expire_time timestamp with time zone, + cancel_time timestamp with time zone, + cancel_cause integer, + cancel_note text, + target bigint NOT NULL, + current_copy bigint, + fulfillment_staff integer, + fulfillment_lib integer, + request_lib integer NOT NULL, + selection_ou integer NOT NULL, + selection_depth integer NOT NULL, + pickup_lib integer NOT NULL, + hold_type text NOT NULL, + holdable_formats text, + phone_notify boolean NOT NULL, + email_notify boolean NOT NULL, + sms_notify boolean NOT NULL, + frozen boolean NOT NULL, + thaw_date timestamp with time zone, + shelf_time timestamp with time zone, + cut_in_line boolean, + mint_condition boolean NOT NULL, + shelf_expire_time timestamp with time zone, + current_shelf_lib integer, + behind_desk boolean NOT NULL +); + + +ALTER TABLE aged_hold_request OWNER TO evergreen; + +SET search_path = actor, pg_catalog; + +-- +-- Name: usr_address; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE usr_address ( + id integer NOT NULL, + valid boolean DEFAULT true NOT NULL, + within_city_limits boolean DEFAULT true NOT NULL, + address_type text DEFAULT 'MAILING'::text NOT NULL, + usr integer NOT NULL, + street1 text NOT NULL, + street2 text, + city text NOT NULL, + county text, + state text, + country text NOT NULL, + post_code text NOT NULL, + pending boolean DEFAULT false NOT NULL, + replaces integer +); + + +ALTER TABLE usr_address OWNER TO evergreen; + +SET search_path = asset, pg_catalog; + +-- +-- Name: call_number; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE call_number ( + id bigint NOT NULL, + creator bigint NOT NULL, + create_date timestamp with time zone DEFAULT now(), + editor bigint NOT NULL, + edit_date timestamp with time zone DEFAULT now(), + record bigint NOT NULL, + owning_lib integer NOT NULL, + label text NOT NULL, + deleted boolean DEFAULT false NOT NULL, + prefix integer DEFAULT '-1'::integer NOT NULL, + suffix integer DEFAULT '-1'::integer NOT NULL, + label_class bigint NOT NULL, + label_sortkey text +); + + +ALTER TABLE call_number OWNER TO evergreen; + +SET search_path = action, pg_catalog; + +-- +-- Name: all_circulation; Type: VIEW; Schema: action; Owner: evergreen +-- + +CREATE VIEW all_circulation AS + SELECT aged_circulation.id, + aged_circulation.usr_post_code, + aged_circulation.usr_home_ou, + aged_circulation.usr_profile, + aged_circulation.usr_birth_year, + aged_circulation.copy_call_number, + aged_circulation.copy_location, + aged_circulation.copy_owning_lib, + aged_circulation.copy_circ_lib, + aged_circulation.copy_bib_record, + aged_circulation.xact_start, + aged_circulation.xact_finish, + aged_circulation.target_copy, + aged_circulation.circ_lib, + aged_circulation.circ_staff, + aged_circulation.checkin_staff, + aged_circulation.checkin_lib, + aged_circulation.renewal_remaining, + aged_circulation.grace_period, + aged_circulation.due_date, + aged_circulation.stop_fines_time, + aged_circulation.checkin_time, + aged_circulation.create_time, + aged_circulation.duration, + aged_circulation.fine_interval, + aged_circulation.recurring_fine, + aged_circulation.max_fine, + aged_circulation.phone_renewal, + aged_circulation.desk_renewal, + aged_circulation.opac_renewal, + aged_circulation.duration_rule, + aged_circulation.recurring_fine_rule, + aged_circulation.max_fine_rule, + aged_circulation.stop_fines, + aged_circulation.workstation, + aged_circulation.checkin_workstation, + aged_circulation.checkin_scan_time, + aged_circulation.parent_circ + FROM aged_circulation +UNION ALL + SELECT DISTINCT circ.id, + COALESCE(a.post_code, b.post_code) AS usr_post_code, + p.home_ou AS usr_home_ou, + p.profile AS usr_profile, + (date_part('year'::text, p.dob))::integer AS usr_birth_year, + cp.call_number AS copy_call_number, + circ.copy_location, + cn.owning_lib AS copy_owning_lib, + cp.circ_lib AS copy_circ_lib, + cn.record AS copy_bib_record, + circ.xact_start, + circ.xact_finish, + circ.target_copy, + circ.circ_lib, + circ.circ_staff, + circ.checkin_staff, + circ.checkin_lib, + circ.renewal_remaining, + circ.grace_period, + circ.due_date, + circ.stop_fines_time, + circ.checkin_time, + circ.create_time, + circ.duration, + circ.fine_interval, + circ.recurring_fine, + circ.max_fine, + circ.phone_renewal, + circ.desk_renewal, + circ.opac_renewal, + circ.duration_rule, + circ.recurring_fine_rule, + circ.max_fine_rule, + circ.stop_fines, + circ.workstation, + circ.checkin_workstation, + circ.checkin_scan_time, + circ.parent_circ + FROM (((((circulation circ + JOIN asset.copy cp ON ((circ.target_copy = cp.id))) + JOIN asset.call_number cn ON ((cp.call_number = cn.id))) + JOIN actor.usr p ON ((circ.usr = p.id))) + LEFT JOIN actor.usr_address a ON ((p.mailing_address = a.id))) + LEFT JOIN actor.usr_address b ON ((p.billing_address = b.id))); + + +ALTER TABLE all_circulation OWNER TO evergreen; + +-- +-- Name: all_hold_request; Type: VIEW; Schema: action; Owner: evergreen +-- + +CREATE VIEW all_hold_request AS + SELECT DISTINCT COALESCE(a.post_code, b.post_code) AS usr_post_code, + p.home_ou AS usr_home_ou, + p.profile AS usr_profile, + (date_part('year'::text, p.dob))::integer AS usr_birth_year, + (ahr.requestor <> ahr.usr) AS staff_placed, + ahr.id, + ahr.request_time, + ahr.capture_time, + ahr.fulfillment_time, + ahr.checkin_time, + ahr.return_time, + ahr.prev_check_time, + ahr.expire_time, + ahr.cancel_time, + ahr.cancel_cause, + ahr.cancel_note, + ahr.target, + ahr.current_copy, + ahr.fulfillment_staff, + ahr.fulfillment_lib, + ahr.request_lib, + ahr.selection_ou, + ahr.selection_depth, + ahr.pickup_lib, + ahr.hold_type, + ahr.holdable_formats, + CASE + WHEN (ahr.phone_notify IS NULL) THEN false + WHEN (ahr.phone_notify = ''::text) THEN false + ELSE true + END AS phone_notify, + ahr.email_notify, + CASE + WHEN (ahr.sms_notify IS NULL) THEN false + WHEN (ahr.sms_notify = ''::text) THEN false + ELSE true + END AS sms_notify, + ahr.frozen, + ahr.thaw_date, + ahr.shelf_time, + ahr.cut_in_line, + ahr.mint_condition, + ahr.shelf_expire_time, + ahr.current_shelf_lib, + ahr.behind_desk + FROM (((hold_request ahr + JOIN actor.usr p ON ((ahr.usr = p.id))) + LEFT JOIN actor.usr_address a ON ((p.mailing_address = a.id))) + LEFT JOIN actor.usr_address b ON ((p.billing_address = b.id))) +UNION ALL + SELECT aged_hold_request.usr_post_code, + aged_hold_request.usr_home_ou, + aged_hold_request.usr_profile, + aged_hold_request.usr_birth_year, + aged_hold_request.staff_placed, + aged_hold_request.id, + aged_hold_request.request_time, + aged_hold_request.capture_time, + aged_hold_request.fulfillment_time, + aged_hold_request.checkin_time, + aged_hold_request.return_time, + aged_hold_request.prev_check_time, + aged_hold_request.expire_time, + aged_hold_request.cancel_time, + aged_hold_request.cancel_cause, + aged_hold_request.cancel_note, + aged_hold_request.target, + aged_hold_request.current_copy, + aged_hold_request.fulfillment_staff, + aged_hold_request.fulfillment_lib, + aged_hold_request.request_lib, + aged_hold_request.selection_ou, + aged_hold_request.selection_depth, + aged_hold_request.pickup_lib, + aged_hold_request.hold_type, + aged_hold_request.holdable_formats, + aged_hold_request.phone_notify, + aged_hold_request.email_notify, + aged_hold_request.sms_notify, + aged_hold_request.frozen, + aged_hold_request.thaw_date, + aged_hold_request.shelf_time, + aged_hold_request.cut_in_line, + aged_hold_request.mint_condition, + aged_hold_request.shelf_expire_time, + aged_hold_request.current_shelf_lib, + aged_hold_request.behind_desk + FROM aged_hold_request; + + +ALTER TABLE all_hold_request OWNER TO evergreen; + +-- +-- Name: archive_actor_stat_cat; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE archive_actor_stat_cat ( + id bigint NOT NULL, + xact bigint NOT NULL, + stat_cat integer NOT NULL, + value text NOT NULL +); + + +ALTER TABLE archive_actor_stat_cat OWNER TO evergreen; + +-- +-- Name: archive_actor_stat_cat_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE archive_actor_stat_cat_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE archive_actor_stat_cat_id_seq OWNER TO evergreen; + +-- +-- Name: archive_actor_stat_cat_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE archive_actor_stat_cat_id_seq OWNED BY archive_actor_stat_cat.id; + + +-- +-- Name: archive_asset_stat_cat; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE archive_asset_stat_cat ( + id bigint NOT NULL, + xact bigint NOT NULL, + stat_cat integer NOT NULL, + value text NOT NULL +); + + +ALTER TABLE archive_asset_stat_cat OWNER TO evergreen; + +-- +-- Name: archive_asset_stat_cat_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE archive_asset_stat_cat_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE archive_asset_stat_cat_id_seq OWNER TO evergreen; + +-- +-- Name: archive_asset_stat_cat_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE archive_asset_stat_cat_id_seq OWNED BY archive_asset_stat_cat.id; + + +-- +-- Name: billable_circulations; Type: VIEW; Schema: action; Owner: evergreen +-- + +CREATE VIEW billable_circulations AS + SELECT circulation.id, + circulation.usr, + circulation.xact_start, + circulation.xact_finish, + circulation.unrecovered, + circulation.target_copy, + circulation.circ_lib, + circulation.circ_staff, + circulation.checkin_staff, + circulation.checkin_lib, + circulation.renewal_remaining, + circulation.grace_period, + circulation.due_date, + circulation.stop_fines_time, + circulation.checkin_time, + circulation.create_time, + circulation.duration, + circulation.fine_interval, + circulation.recurring_fine, + circulation.max_fine, + circulation.phone_renewal, + circulation.desk_renewal, + circulation.opac_renewal, + circulation.duration_rule, + circulation.recurring_fine_rule, + circulation.max_fine_rule, + circulation.stop_fines, + circulation.workstation, + circulation.checkin_workstation, + circulation.copy_location, + circulation.checkin_scan_time, + circulation.parent_circ + FROM circulation + WHERE (circulation.xact_finish IS NULL); + + +ALTER TABLE billable_circulations OWNER TO evergreen; + +-- +-- Name: circulation_limit_group_map; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE circulation_limit_group_map ( + circ bigint NOT NULL, + limit_group integer NOT NULL +); + + +ALTER TABLE circulation_limit_group_map OWNER TO evergreen; + +-- +-- Name: fieldset; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE fieldset ( + id integer NOT NULL, + owner integer NOT NULL, + owning_lib integer NOT NULL, + status text NOT NULL, + creation_time timestamp with time zone DEFAULT now() NOT NULL, + scheduled_time timestamp with time zone, + applied_time timestamp with time zone, + classname text NOT NULL, + name text NOT NULL, + stored_query integer, + pkey_value text, + CONSTRAINT fieldset_one_or_the_other CHECK ((((stored_query IS NOT NULL) AND (pkey_value IS NULL)) OR ((pkey_value IS NOT NULL) AND (stored_query IS NULL)))), + CONSTRAINT valid_status CHECK ((status = ANY (ARRAY['PENDING'::text, 'APPLIED'::text, 'ERROR'::text]))) +); + + +ALTER TABLE fieldset OWNER TO evergreen; + +-- +-- Name: fieldset_col_val; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE fieldset_col_val ( + id integer NOT NULL, + fieldset integer NOT NULL, + col text NOT NULL, + val text +); + + +ALTER TABLE fieldset_col_val OWNER TO evergreen; + +-- +-- Name: fieldset_col_val_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE fieldset_col_val_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE fieldset_col_val_id_seq OWNER TO evergreen; + +-- +-- Name: fieldset_col_val_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE fieldset_col_val_id_seq OWNED BY fieldset_col_val.id; + + +-- +-- Name: fieldset_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE fieldset_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE fieldset_id_seq OWNER TO evergreen; + +-- +-- Name: fieldset_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE fieldset_id_seq OWNED BY fieldset.id; + + +-- +-- Name: hold_copy_map; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE hold_copy_map ( + id bigint NOT NULL, + hold integer NOT NULL, + target_copy bigint NOT NULL, + proximity numeric +); + + +ALTER TABLE hold_copy_map OWNER TO evergreen; + +-- +-- Name: hold_copy_map_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE hold_copy_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE hold_copy_map_id_seq OWNER TO evergreen; + +-- +-- Name: hold_copy_map_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE hold_copy_map_id_seq OWNED BY hold_copy_map.id; + + +-- +-- Name: hold_notification; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE hold_notification ( + id integer NOT NULL, + hold integer NOT NULL, + notify_staff integer, + notify_time timestamp with time zone DEFAULT now() NOT NULL, + method text NOT NULL, + note text +); + + +ALTER TABLE hold_notification OWNER TO evergreen; + +-- +-- Name: hold_notification_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE hold_notification_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE hold_notification_id_seq OWNER TO evergreen; + +-- +-- Name: hold_notification_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE hold_notification_id_seq OWNED BY hold_notification.id; + + +-- +-- Name: hold_request_cancel_cause; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE hold_request_cancel_cause ( + id integer NOT NULL, + label text +); + + +ALTER TABLE hold_request_cancel_cause OWNER TO evergreen; + +-- +-- Name: hold_request_cancel_cause_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE hold_request_cancel_cause_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE hold_request_cancel_cause_id_seq OWNER TO evergreen; + +-- +-- Name: hold_request_cancel_cause_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE hold_request_cancel_cause_id_seq OWNED BY hold_request_cancel_cause.id; + + +-- +-- Name: hold_request_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE hold_request_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE hold_request_id_seq OWNER TO evergreen; + +-- +-- Name: hold_request_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE hold_request_id_seq OWNED BY hold_request.id; + + +-- +-- Name: hold_request_note; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE hold_request_note ( + id bigint NOT NULL, + hold bigint NOT NULL, + title text NOT NULL, + body text NOT NULL, + slip boolean DEFAULT false NOT NULL, + pub boolean DEFAULT false NOT NULL, + staff boolean DEFAULT false NOT NULL +); + + +ALTER TABLE hold_request_note OWNER TO evergreen; + +-- +-- Name: hold_request_note_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE hold_request_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE hold_request_note_id_seq OWNER TO evergreen; + +-- +-- Name: hold_request_note_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE hold_request_note_id_seq OWNED BY hold_request_note.id; + + +-- +-- Name: transit_copy; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE transit_copy ( + id integer NOT NULL, + source_send_time timestamp with time zone, + dest_recv_time timestamp with time zone, + target_copy bigint NOT NULL, + source integer NOT NULL, + dest integer NOT NULL, + prev_hop integer, + copy_status integer NOT NULL, + persistant_transfer boolean DEFAULT false NOT NULL, + prev_dest integer +); + + +ALTER TABLE transit_copy OWNER TO evergreen; + +-- +-- Name: hold_transit_copy; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE hold_transit_copy ( + hold integer +) +INHERITS (transit_copy); + + +ALTER TABLE hold_transit_copy OWNER TO evergreen; + +-- +-- Name: in_house_use; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE in_house_use ( + id integer NOT NULL, + item bigint NOT NULL, + staff integer NOT NULL, + org_unit integer NOT NULL, + use_time timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE in_house_use OWNER TO evergreen; + +-- +-- Name: in_house_use_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE in_house_use_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE in_house_use_id_seq OWNER TO evergreen; + +-- +-- Name: in_house_use_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE in_house_use_id_seq OWNED BY in_house_use.id; + + +-- +-- Name: non_cat_in_house_use; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE non_cat_in_house_use ( + id integer NOT NULL, + item_type bigint NOT NULL, + staff integer NOT NULL, + org_unit integer NOT NULL, + use_time timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE non_cat_in_house_use OWNER TO evergreen; + +-- +-- Name: non_cat_in_house_use_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE non_cat_in_house_use_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE non_cat_in_house_use_id_seq OWNER TO evergreen; + +-- +-- Name: non_cat_in_house_use_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE non_cat_in_house_use_id_seq OWNED BY non_cat_in_house_use.id; + + +-- +-- Name: non_cataloged_circulation; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE non_cataloged_circulation ( + id integer NOT NULL, + patron integer NOT NULL, + staff integer NOT NULL, + circ_lib integer NOT NULL, + item_type integer NOT NULL, + circ_time timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE non_cataloged_circulation OWNER TO evergreen; + +-- +-- Name: non_cataloged_circulation_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE non_cataloged_circulation_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE non_cataloged_circulation_id_seq OWNER TO evergreen; + +-- +-- Name: non_cataloged_circulation_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE non_cataloged_circulation_id_seq OWNED BY non_cataloged_circulation.id; + + +-- +-- Name: open_circulation; Type: VIEW; Schema: action; Owner: evergreen +-- + +CREATE VIEW open_circulation AS + SELECT circulation.id, + circulation.usr, + circulation.xact_start, + circulation.xact_finish, + circulation.unrecovered, + circulation.target_copy, + circulation.circ_lib, + circulation.circ_staff, + circulation.checkin_staff, + circulation.checkin_lib, + circulation.renewal_remaining, + circulation.grace_period, + circulation.due_date, + circulation.stop_fines_time, + circulation.checkin_time, + circulation.create_time, + circulation.duration, + circulation.fine_interval, + circulation.recurring_fine, + circulation.max_fine, + circulation.phone_renewal, + circulation.desk_renewal, + circulation.opac_renewal, + circulation.duration_rule, + circulation.recurring_fine_rule, + circulation.max_fine_rule, + circulation.stop_fines, + circulation.workstation, + circulation.checkin_workstation, + circulation.copy_location, + circulation.checkin_scan_time, + circulation.parent_circ + FROM circulation + WHERE (circulation.checkin_time IS NULL) + ORDER BY circulation.due_date; + + +ALTER TABLE open_circulation OWNER TO evergreen; + +-- +-- Name: reservation_transit_copy; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE reservation_transit_copy ( + reservation integer +) +INHERITS (transit_copy); + + +ALTER TABLE reservation_transit_copy OWNER TO evergreen; + +-- +-- Name: survey; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE survey ( + id integer NOT NULL, + owner integer NOT NULL, + start_date timestamp with time zone DEFAULT now() NOT NULL, + end_date timestamp with time zone DEFAULT (now() + '10 years'::interval) NOT NULL, + usr_summary boolean DEFAULT false NOT NULL, + opac boolean DEFAULT false NOT NULL, + poll boolean DEFAULT false NOT NULL, + required boolean DEFAULT false NOT NULL, + name text NOT NULL, + description text NOT NULL +); + + +ALTER TABLE survey OWNER TO evergreen; + +-- +-- Name: survey_answer; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE survey_answer ( + id integer NOT NULL, + question integer NOT NULL, + answer text NOT NULL +); + + +ALTER TABLE survey_answer OWNER TO evergreen; + +-- +-- Name: survey_answer_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE survey_answer_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE survey_answer_id_seq OWNER TO evergreen; + +-- +-- Name: survey_answer_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE survey_answer_id_seq OWNED BY survey_answer.id; + + +-- +-- Name: survey_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE survey_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE survey_id_seq OWNER TO evergreen; + +-- +-- Name: survey_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE survey_id_seq OWNED BY survey.id; + + +-- +-- Name: survey_question; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE survey_question ( + id integer NOT NULL, + survey integer NOT NULL, + question text NOT NULL +); + + +ALTER TABLE survey_question OWNER TO evergreen; + +-- +-- Name: survey_question_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE survey_question_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE survey_question_id_seq OWNER TO evergreen; + +-- +-- Name: survey_question_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE survey_question_id_seq OWNED BY survey_question.id; + + +-- +-- Name: survey_response; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE survey_response ( + id bigint NOT NULL, + response_group_id integer, + usr integer, + survey integer NOT NULL, + question integer NOT NULL, + answer integer NOT NULL, + answer_date timestamp with time zone, + effective_date timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE survey_response OWNER TO evergreen; + +-- +-- Name: survey_response_group_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE survey_response_group_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE survey_response_group_id_seq OWNER TO evergreen; + +-- +-- Name: survey_response_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE survey_response_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE survey_response_id_seq OWNER TO evergreen; + +-- +-- Name: survey_response_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE survey_response_id_seq OWNED BY survey_response.id; + + +-- +-- Name: transit_copy_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE transit_copy_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE transit_copy_id_seq OWNER TO evergreen; + +-- +-- Name: transit_copy_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE transit_copy_id_seq OWNED BY transit_copy.id; + + +-- +-- Name: unfulfilled_hold_list; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE unfulfilled_hold_list ( + id bigint NOT NULL, + current_copy bigint NOT NULL, + hold integer NOT NULL, + circ_lib integer NOT NULL, + fail_time timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE unfulfilled_hold_list OWNER TO evergreen; + +-- +-- Name: unfulfilled_hold_loops; Type: VIEW; Schema: action; Owner: evergreen +-- + +CREATE VIEW unfulfilled_hold_loops AS + SELECT u.hold, + c.circ_lib, + count(*) AS count + FROM (unfulfilled_hold_list u + JOIN asset.copy c ON ((c.id = u.current_copy))) + GROUP BY u.hold, c.circ_lib; + + +ALTER TABLE unfulfilled_hold_loops OWNER TO evergreen; + +-- +-- Name: unfulfilled_hold_min_loop; Type: VIEW; Schema: action; Owner: evergreen +-- + +CREATE VIEW unfulfilled_hold_min_loop AS + SELECT unfulfilled_hold_loops.hold, + min(unfulfilled_hold_loops.count) AS min + FROM unfulfilled_hold_loops + GROUP BY unfulfilled_hold_loops.hold; + + +ALTER TABLE unfulfilled_hold_min_loop OWNER TO evergreen; + +-- +-- Name: unfulfilled_hold_innermost_loop; Type: VIEW; Schema: action; Owner: evergreen +-- + +CREATE VIEW unfulfilled_hold_innermost_loop AS + SELECT DISTINCT l.hold, + l.circ_lib, + l.count + FROM (unfulfilled_hold_loops l + JOIN unfulfilled_hold_min_loop m USING (hold)) + WHERE (l.count = m.min); + + +ALTER TABLE unfulfilled_hold_innermost_loop OWNER TO evergreen; + +-- +-- Name: unfulfilled_hold_list_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE unfulfilled_hold_list_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE unfulfilled_hold_list_id_seq OWNER TO evergreen; + +-- +-- Name: unfulfilled_hold_list_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE unfulfilled_hold_list_id_seq OWNED BY unfulfilled_hold_list.id; + + +-- +-- Name: unfulfilled_hold_max_loop; Type: VIEW; Schema: action; Owner: evergreen +-- + +CREATE VIEW unfulfilled_hold_max_loop AS + SELECT unfulfilled_hold_loops.hold, + max(unfulfilled_hold_loops.count) AS max + FROM unfulfilled_hold_loops + GROUP BY unfulfilled_hold_loops.hold; + + +ALTER TABLE unfulfilled_hold_max_loop OWNER TO evergreen; + +-- +-- Name: usr_circ_history; Type: TABLE; Schema: action; Owner: evergreen +-- + +CREATE TABLE usr_circ_history ( + id bigint NOT NULL, + usr integer NOT NULL, + xact_start timestamp with time zone DEFAULT now() NOT NULL, + target_copy bigint NOT NULL, + due_date timestamp with time zone NOT NULL, + checkin_time timestamp with time zone, + source_circ bigint +); + + +ALTER TABLE usr_circ_history OWNER TO evergreen; + +-- +-- Name: usr_circ_history_id_seq; Type: SEQUENCE; Schema: action; Owner: evergreen +-- + +CREATE SEQUENCE usr_circ_history_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_circ_history_id_seq OWNER TO evergreen; + +-- +-- Name: usr_circ_history_id_seq; Type: SEQUENCE OWNED BY; Schema: action; Owner: evergreen +-- + +ALTER SEQUENCE usr_circ_history_id_seq OWNED BY usr_circ_history.id; + + +SET search_path = action_trigger, pg_catalog; + +-- +-- Name: cleanup; Type: TABLE; Schema: action_trigger; Owner: evergreen +-- + +CREATE TABLE cleanup ( + module text NOT NULL, + description text +); + + +ALTER TABLE cleanup OWNER TO evergreen; + +-- +-- Name: collector; Type: TABLE; Schema: action_trigger; Owner: evergreen +-- + +CREATE TABLE collector ( + module text NOT NULL, + description text +); + + +ALTER TABLE collector OWNER TO evergreen; + +-- +-- Name: environment; Type: TABLE; Schema: action_trigger; Owner: evergreen +-- + +CREATE TABLE environment ( + id integer NOT NULL, + event_def integer NOT NULL, + path text, + collector text, + label text, + CONSTRAINT environment_label_check CHECK ((label <> ALL (ARRAY['result'::text, 'target'::text, 'event'::text]))) +); + + +ALTER TABLE environment OWNER TO evergreen; + +-- +-- Name: environment_id_seq; Type: SEQUENCE; Schema: action_trigger; Owner: evergreen +-- + +CREATE SEQUENCE environment_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE environment_id_seq OWNER TO evergreen; + +-- +-- Name: environment_id_seq; Type: SEQUENCE OWNED BY; Schema: action_trigger; Owner: evergreen +-- + +ALTER SEQUENCE environment_id_seq OWNED BY environment.id; + + +-- +-- Name: event; Type: TABLE; Schema: action_trigger; Owner: evergreen +-- + +CREATE TABLE event ( + id bigint NOT NULL, + target bigint NOT NULL, + event_def integer, + add_time timestamp with time zone DEFAULT now() NOT NULL, + run_time timestamp with time zone NOT NULL, + start_time timestamp with time zone, + update_time timestamp with time zone, + complete_time timestamp with time zone, + update_process integer, + state text DEFAULT 'pending'::text NOT NULL, + user_data text, + template_output bigint, + error_output bigint, + async_output bigint, + CONSTRAINT event_state_check CHECK ((state = ANY (ARRAY['pending'::text, 'invalid'::text, 'found'::text, 'collecting'::text, 'collected'::text, 'validating'::text, 'valid'::text, 'reacting'::text, 'reacted'::text, 'cleaning'::text, 'complete'::text, 'error'::text]))), + CONSTRAINT event_user_data_check CHECK (((user_data IS NULL) OR evergreen.is_json(user_data))) +); + + +ALTER TABLE event OWNER TO evergreen; + +-- +-- Name: event_definition; Type: TABLE; Schema: action_trigger; Owner: evergreen +-- + +CREATE TABLE event_definition ( + id integer NOT NULL, + active boolean DEFAULT true NOT NULL, + owner integer NOT NULL, + name text NOT NULL, + hook text NOT NULL, + validator text NOT NULL, + reactor text NOT NULL, + cleanup_success text, + cleanup_failure text, + delay interval DEFAULT '00:05:00'::interval NOT NULL, + max_delay interval, + repeat_delay interval, + usr_field text, + opt_in_setting text, + delay_field text, + group_field text, + template text, + granularity text, + message_template text, + message_usr_path text, + message_library_path text, + message_title text +); + + +ALTER TABLE event_definition OWNER TO evergreen; + +-- +-- Name: event_definition_id_seq; Type: SEQUENCE; Schema: action_trigger; Owner: evergreen +-- + +CREATE SEQUENCE event_definition_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE event_definition_id_seq OWNER TO evergreen; + +-- +-- Name: event_definition_id_seq; Type: SEQUENCE OWNED BY; Schema: action_trigger; Owner: evergreen +-- + +ALTER SEQUENCE event_definition_id_seq OWNED BY event_definition.id; + + +-- +-- Name: event_id_seq; Type: SEQUENCE; Schema: action_trigger; Owner: evergreen +-- + +CREATE SEQUENCE event_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE event_id_seq OWNER TO evergreen; + +-- +-- Name: event_id_seq; Type: SEQUENCE OWNED BY; Schema: action_trigger; Owner: evergreen +-- + +ALTER SEQUENCE event_id_seq OWNED BY event.id; + + +-- +-- Name: event_output; Type: TABLE; Schema: action_trigger; Owner: evergreen +-- + +CREATE TABLE event_output ( + id bigint NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL, + is_error boolean DEFAULT false NOT NULL, + data text NOT NULL +); + + +ALTER TABLE event_output OWNER TO evergreen; + +-- +-- Name: event_output_id_seq; Type: SEQUENCE; Schema: action_trigger; Owner: evergreen +-- + +CREATE SEQUENCE event_output_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE event_output_id_seq OWNER TO evergreen; + +-- +-- Name: event_output_id_seq; Type: SEQUENCE OWNED BY; Schema: action_trigger; Owner: evergreen +-- + +ALTER SEQUENCE event_output_id_seq OWNED BY event_output.id; + + +-- +-- Name: event_params; Type: TABLE; Schema: action_trigger; Owner: evergreen +-- + +CREATE TABLE event_params ( + id bigint NOT NULL, + event_def integer NOT NULL, + param text NOT NULL, + value text NOT NULL +); + + +ALTER TABLE event_params OWNER TO evergreen; + +-- +-- Name: event_params_id_seq; Type: SEQUENCE; Schema: action_trigger; Owner: evergreen +-- + +CREATE SEQUENCE event_params_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE event_params_id_seq OWNER TO evergreen; + +-- +-- Name: event_params_id_seq; Type: SEQUENCE OWNED BY; Schema: action_trigger; Owner: evergreen +-- + +ALTER SEQUENCE event_params_id_seq OWNED BY event_params.id; + + +-- +-- Name: hook; Type: TABLE; Schema: action_trigger; Owner: evergreen +-- + +CREATE TABLE hook ( + key text NOT NULL, + core_type text NOT NULL, + description text, + passive boolean DEFAULT false NOT NULL +); + + +ALTER TABLE hook OWNER TO evergreen; + +-- +-- Name: reactor; Type: TABLE; Schema: action_trigger; Owner: evergreen +-- + +CREATE TABLE reactor ( + module text NOT NULL, + description text +); + + +ALTER TABLE reactor OWNER TO evergreen; + +-- +-- Name: validator; Type: TABLE; Schema: action_trigger; Owner: evergreen +-- + +CREATE TABLE validator ( + module text NOT NULL, + description text +); + + +ALTER TABLE validator OWNER TO evergreen; + +SET search_path = actor, pg_catalog; + +-- +-- Name: address_alert_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE address_alert_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE address_alert_id_seq OWNER TO evergreen; + +-- +-- Name: address_alert_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE address_alert_id_seq OWNED BY address_alert.id; + + +-- +-- Name: card; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE card ( + id integer NOT NULL, + usr integer NOT NULL, + barcode text NOT NULL, + active boolean DEFAULT true NOT NULL +); + + +ALTER TABLE card OWNER TO evergreen; + +-- +-- Name: TABLE card; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON TABLE card IS ' +Library Cards + +Each User has one or more library cards. The current "main" +card is linked to here from the actor.usr table, and it is up +to the consortium policy whether more than one card can be +active for any one user at a given time. +'; + + +-- +-- Name: card_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE card_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE card_id_seq OWNER TO evergreen; + +-- +-- Name: card_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE card_id_seq OWNED BY card.id; + + +-- +-- Name: hours_of_operation; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE hours_of_operation ( + id integer NOT NULL, + dow_0_open time without time zone DEFAULT '09:00:00'::time without time zone NOT NULL, + dow_0_close time without time zone DEFAULT '17:00:00'::time without time zone NOT NULL, + dow_1_open time without time zone DEFAULT '09:00:00'::time without time zone NOT NULL, + dow_1_close time without time zone DEFAULT '17:00:00'::time without time zone NOT NULL, + dow_2_open time without time zone DEFAULT '09:00:00'::time without time zone NOT NULL, + dow_2_close time without time zone DEFAULT '17:00:00'::time without time zone NOT NULL, + dow_3_open time without time zone DEFAULT '09:00:00'::time without time zone NOT NULL, + dow_3_close time without time zone DEFAULT '17:00:00'::time without time zone NOT NULL, + dow_4_open time without time zone DEFAULT '09:00:00'::time without time zone NOT NULL, + dow_4_close time without time zone DEFAULT '17:00:00'::time without time zone NOT NULL, + dow_5_open time without time zone DEFAULT '09:00:00'::time without time zone NOT NULL, + dow_5_close time without time zone DEFAULT '17:00:00'::time without time zone NOT NULL, + dow_6_open time without time zone DEFAULT '09:00:00'::time without time zone NOT NULL, + dow_6_close time without time zone DEFAULT '17:00:00'::time without time zone NOT NULL +); + + +ALTER TABLE hours_of_operation OWNER TO evergreen; + +-- +-- Name: TABLE hours_of_operation; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON TABLE hours_of_operation IS ' +When does this org_unit usually open and close? (Variations +are expressed in the actor.org_unit_closed table.) +'; + + +-- +-- Name: COLUMN hours_of_operation.dow_0_open; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON COLUMN hours_of_operation.dow_0_open IS ' +When does this org_unit open on Monday? +'; + + +-- +-- Name: COLUMN hours_of_operation.dow_0_close; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON COLUMN hours_of_operation.dow_0_close IS ' +When does this org_unit close on Monday? +'; + + +-- +-- Name: COLUMN hours_of_operation.dow_1_open; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON COLUMN hours_of_operation.dow_1_open IS ' +When does this org_unit open on Tuesday? +'; + + +-- +-- Name: COLUMN hours_of_operation.dow_1_close; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON COLUMN hours_of_operation.dow_1_close IS ' +When does this org_unit close on Tuesday? +'; + + +-- +-- Name: COLUMN hours_of_operation.dow_2_open; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON COLUMN hours_of_operation.dow_2_open IS ' +When does this org_unit open on Wednesday? +'; + + +-- +-- Name: COLUMN hours_of_operation.dow_2_close; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON COLUMN hours_of_operation.dow_2_close IS ' +When does this org_unit close on Wednesday? +'; + + +-- +-- Name: COLUMN hours_of_operation.dow_3_open; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON COLUMN hours_of_operation.dow_3_open IS ' +When does this org_unit open on Thursday? +'; + + +-- +-- Name: COLUMN hours_of_operation.dow_3_close; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON COLUMN hours_of_operation.dow_3_close IS ' +When does this org_unit close on Thursday? +'; + + +-- +-- Name: COLUMN hours_of_operation.dow_4_open; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON COLUMN hours_of_operation.dow_4_open IS ' +When does this org_unit open on Friday? +'; + + +-- +-- Name: COLUMN hours_of_operation.dow_4_close; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON COLUMN hours_of_operation.dow_4_close IS ' +When does this org_unit close on Friday? +'; + + +-- +-- Name: COLUMN hours_of_operation.dow_5_open; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON COLUMN hours_of_operation.dow_5_open IS ' +When does this org_unit open on Saturday? +'; + + +-- +-- Name: COLUMN hours_of_operation.dow_5_close; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON COLUMN hours_of_operation.dow_5_close IS ' +When does this org_unit close on Saturday? +'; + + +-- +-- Name: COLUMN hours_of_operation.dow_6_open; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON COLUMN hours_of_operation.dow_6_open IS ' +When does this org_unit open on Sunday? +'; + + +-- +-- Name: COLUMN hours_of_operation.dow_6_close; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON COLUMN hours_of_operation.dow_6_close IS ' +When does this org_unit close on Sunday? +'; + + +-- +-- Name: org_address; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE org_address ( + id integer NOT NULL, + valid boolean DEFAULT true NOT NULL, + address_type text DEFAULT 'MAILING'::text NOT NULL, + org_unit integer NOT NULL, + street1 text NOT NULL, + street2 text, + city text NOT NULL, + county text, + state text, + country text NOT NULL, + post_code text NOT NULL, + san text +); + + +ALTER TABLE org_address OWNER TO evergreen; + +-- +-- Name: org_address_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE org_address_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE org_address_id_seq OWNER TO evergreen; + +-- +-- Name: org_address_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE org_address_id_seq OWNED BY org_address.id; + + +-- +-- Name: org_lasso; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE org_lasso ( + id integer NOT NULL, + name text +); + + +ALTER TABLE org_lasso OWNER TO evergreen; + +-- +-- Name: org_lasso_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE org_lasso_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE org_lasso_id_seq OWNER TO evergreen; + +-- +-- Name: org_lasso_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE org_lasso_id_seq OWNED BY org_lasso.id; + + +-- +-- Name: org_lasso_map; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE org_lasso_map ( + id integer NOT NULL, + lasso integer NOT NULL, + org_unit integer NOT NULL +); + + +ALTER TABLE org_lasso_map OWNER TO evergreen; + +-- +-- Name: org_lasso_map_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE org_lasso_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE org_lasso_map_id_seq OWNER TO evergreen; + +-- +-- Name: org_lasso_map_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE org_lasso_map_id_seq OWNED BY org_lasso_map.id; + + +-- +-- Name: org_unit_closed; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE org_unit_closed ( + id integer NOT NULL, + org_unit integer NOT NULL, + close_start timestamp with time zone NOT NULL, + close_end timestamp with time zone NOT NULL, + reason text +); + + +ALTER TABLE org_unit_closed OWNER TO evergreen; + +-- +-- Name: org_unit_closed_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE org_unit_closed_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE org_unit_closed_id_seq OWNER TO evergreen; + +-- +-- Name: org_unit_closed_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE org_unit_closed_id_seq OWNED BY org_unit_closed.id; + + +-- +-- Name: org_unit_custom_tree; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE org_unit_custom_tree ( + id integer NOT NULL, + active boolean DEFAULT false, + purpose org_unit_custom_tree_purpose DEFAULT 'opac'::org_unit_custom_tree_purpose NOT NULL +); + + +ALTER TABLE org_unit_custom_tree OWNER TO evergreen; + +-- +-- Name: org_unit_custom_tree_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE org_unit_custom_tree_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE org_unit_custom_tree_id_seq OWNER TO evergreen; + +-- +-- Name: org_unit_custom_tree_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE org_unit_custom_tree_id_seq OWNED BY org_unit_custom_tree.id; + + +-- +-- Name: org_unit_custom_tree_node; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE org_unit_custom_tree_node ( + id integer NOT NULL, + tree integer, + org_unit integer NOT NULL, + parent_node integer, + sibling_order integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE org_unit_custom_tree_node OWNER TO evergreen; + +-- +-- Name: org_unit_custom_tree_node_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE org_unit_custom_tree_node_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE org_unit_custom_tree_node_id_seq OWNER TO evergreen; + +-- +-- Name: org_unit_custom_tree_node_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE org_unit_custom_tree_node_id_seq OWNED BY org_unit_custom_tree_node.id; + + +-- +-- Name: org_unit_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE org_unit_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE org_unit_id_seq OWNER TO evergreen; + +-- +-- Name: org_unit_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE org_unit_id_seq OWNED BY org_unit.id; + + +-- +-- Name: org_unit_proximity; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE org_unit_proximity ( + id bigint NOT NULL, + from_org integer, + to_org integer, + prox integer +); + + +ALTER TABLE org_unit_proximity OWNER TO evergreen; + +-- +-- Name: org_unit_proximity_adjustment; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE org_unit_proximity_adjustment ( + id integer NOT NULL, + item_circ_lib integer, + item_owning_lib integer, + copy_location integer, + hold_pickup_lib integer, + hold_request_lib integer, + pos integer DEFAULT 0 NOT NULL, + absolute_adjustment boolean DEFAULT false NOT NULL, + prox_adjustment numeric, + circ_mod text, + CONSTRAINT prox_adj_criterium CHECK ((COALESCE((item_circ_lib)::text, (item_owning_lib)::text, (copy_location)::text, (hold_pickup_lib)::text, (hold_request_lib)::text, circ_mod) IS NOT NULL)) +); + + +ALTER TABLE org_unit_proximity_adjustment OWNER TO evergreen; + +-- +-- Name: org_unit_proximity_adjustment_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE org_unit_proximity_adjustment_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE org_unit_proximity_adjustment_id_seq OWNER TO evergreen; + +-- +-- Name: org_unit_proximity_adjustment_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE org_unit_proximity_adjustment_id_seq OWNED BY org_unit_proximity_adjustment.id; + + +-- +-- Name: org_unit_proximity_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE org_unit_proximity_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE org_unit_proximity_id_seq OWNER TO evergreen; + +-- +-- Name: org_unit_proximity_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE org_unit_proximity_id_seq OWNED BY org_unit_proximity.id; + + +-- +-- Name: org_unit_setting_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE org_unit_setting_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE org_unit_setting_id_seq OWNER TO evergreen; + +-- +-- Name: org_unit_setting_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE org_unit_setting_id_seq OWNED BY org_unit_setting.id; + + +-- +-- Name: org_unit_type; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE org_unit_type ( + id integer NOT NULL, + name text NOT NULL, + opac_label text NOT NULL, + depth integer NOT NULL, + parent integer, + can_have_vols boolean DEFAULT true NOT NULL, + can_have_users boolean DEFAULT true NOT NULL +); + + +ALTER TABLE org_unit_type OWNER TO evergreen; + +-- +-- Name: org_unit_type_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE org_unit_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE org_unit_type_id_seq OWNER TO evergreen; + +-- +-- Name: org_unit_type_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE org_unit_type_id_seq OWNED BY org_unit_type.id; + + +-- +-- Name: passwd; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE passwd ( + id integer NOT NULL, + usr integer NOT NULL, + salt text, + passwd text NOT NULL, + passwd_type text NOT NULL, + create_date timestamp with time zone DEFAULT now() NOT NULL, + edit_date timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE passwd OWNER TO evergreen; + +-- +-- Name: passwd_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE passwd_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE passwd_id_seq OWNER TO evergreen; + +-- +-- Name: passwd_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE passwd_id_seq OWNED BY passwd.id; + + +-- +-- Name: passwd_type; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE passwd_type ( + code text NOT NULL, + name text NOT NULL, + login boolean DEFAULT false NOT NULL, + regex text, + crypt_algo text, + iter_count integer, + CONSTRAINT passwd_type_iter_count_check CHECK (((iter_count IS NULL) OR (iter_count > 0))) +); + + +ALTER TABLE passwd_type OWNER TO evergreen; + +-- +-- Name: search_filter_group; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE search_filter_group ( + id integer NOT NULL, + owner integer NOT NULL, + code text NOT NULL, + label text NOT NULL, + create_date timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE search_filter_group OWNER TO evergreen; + +-- +-- Name: search_filter_group_entry; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE search_filter_group_entry ( + id integer NOT NULL, + grp integer NOT NULL, + pos integer DEFAULT 0 NOT NULL, + query integer NOT NULL +); + + +ALTER TABLE search_filter_group_entry OWNER TO evergreen; + +-- +-- Name: search_filter_group_entry_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE search_filter_group_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE search_filter_group_entry_id_seq OWNER TO evergreen; + +-- +-- Name: search_filter_group_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE search_filter_group_entry_id_seq OWNED BY search_filter_group_entry.id; + + +-- +-- Name: search_filter_group_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE search_filter_group_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE search_filter_group_id_seq OWNER TO evergreen; + +-- +-- Name: search_filter_group_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE search_filter_group_id_seq OWNED BY search_filter_group.id; + + +-- +-- Name: search_query; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE search_query ( + id integer NOT NULL, + label text NOT NULL, + query_text text NOT NULL +); + + +ALTER TABLE search_query OWNER TO evergreen; + +-- +-- Name: search_query_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE search_query_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE search_query_id_seq OWNER TO evergreen; + +-- +-- Name: search_query_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE search_query_id_seq OWNED BY search_query.id; + + +-- +-- Name: stat_cat; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE stat_cat ( + id integer NOT NULL, + owner integer NOT NULL, + name text NOT NULL, + opac_visible boolean DEFAULT false NOT NULL, + usr_summary boolean DEFAULT false NOT NULL, + sip_field character(2), + sip_format text, + checkout_archive boolean DEFAULT false NOT NULL, + required boolean DEFAULT false NOT NULL, + allow_freetext boolean DEFAULT true NOT NULL +); + + +ALTER TABLE stat_cat OWNER TO evergreen; + +-- +-- Name: TABLE stat_cat; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON TABLE stat_cat IS ' +User Statistical Catagories + +Local data collected about Users is placed into a Statistical +Catagory. Here''s where those catagories are defined. +'; + + +-- +-- Name: stat_cat_entry; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE stat_cat_entry ( + id integer NOT NULL, + stat_cat integer NOT NULL, + owner integer NOT NULL, + value text NOT NULL +); + + +ALTER TABLE stat_cat_entry OWNER TO evergreen; + +-- +-- Name: TABLE stat_cat_entry; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON TABLE stat_cat_entry IS ' +User Statistical Catagory Entries + +Local data collected about Users is placed into a Statistical +Catagory. Each library can create entries into any of its own +stat_cats, its ancestors'' stat_cats, or its descendants'' stat_cats. +'; + + +-- +-- Name: stat_cat_entry_default; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE stat_cat_entry_default ( + id integer NOT NULL, + stat_cat_entry integer NOT NULL, + stat_cat integer NOT NULL, + owner integer NOT NULL +); + + +ALTER TABLE stat_cat_entry_default OWNER TO evergreen; + +-- +-- Name: TABLE stat_cat_entry_default; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON TABLE stat_cat_entry_default IS ' +User Statistical Category Default Entry + +A library may choose one of the stat_cat entries to be the +default entry. +'; + + +-- +-- Name: stat_cat_entry_default_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE stat_cat_entry_default_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE stat_cat_entry_default_id_seq OWNER TO evergreen; + +-- +-- Name: stat_cat_entry_default_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE stat_cat_entry_default_id_seq OWNED BY stat_cat_entry_default.id; + + +-- +-- Name: stat_cat_entry_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE stat_cat_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE stat_cat_entry_id_seq OWNER TO evergreen; + +-- +-- Name: stat_cat_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE stat_cat_entry_id_seq OWNED BY stat_cat_entry.id; + + +-- +-- Name: stat_cat_entry_usr_map; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE stat_cat_entry_usr_map ( + id bigint NOT NULL, + stat_cat_entry text NOT NULL, + stat_cat integer NOT NULL, + target_usr integer NOT NULL +); + + +ALTER TABLE stat_cat_entry_usr_map OWNER TO evergreen; + +-- +-- Name: TABLE stat_cat_entry_usr_map; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON TABLE stat_cat_entry_usr_map IS ' +Statistical Catagory Entry to User map + +Records the stat_cat entries for each user. +'; + + +-- +-- Name: stat_cat_entry_usr_map_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE stat_cat_entry_usr_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE stat_cat_entry_usr_map_id_seq OWNER TO evergreen; + +-- +-- Name: stat_cat_entry_usr_map_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE stat_cat_entry_usr_map_id_seq OWNED BY stat_cat_entry_usr_map.id; + + +-- +-- Name: stat_cat_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE stat_cat_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE stat_cat_id_seq OWNER TO evergreen; + +-- +-- Name: stat_cat_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE stat_cat_id_seq OWNED BY stat_cat.id; + + +-- +-- Name: stat_cat_sip_fields; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE stat_cat_sip_fields ( + field character(2) NOT NULL, + name text NOT NULL, + one_only boolean DEFAULT false NOT NULL +); + + +ALTER TABLE stat_cat_sip_fields OWNER TO evergreen; + +-- +-- Name: TABLE stat_cat_sip_fields; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON TABLE stat_cat_sip_fields IS ' +Actor Statistical Category SIP Fields + +Contains the list of valid SIP Field identifiers for +Statistical Categories. +'; + + +-- +-- Name: toolbar; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE toolbar ( + id bigint NOT NULL, + ws integer, + org integer, + usr integer, + label text NOT NULL, + layout text NOT NULL, + CONSTRAINT layout_must_be_json CHECK (evergreen.is_json(layout)), + CONSTRAINT only_one_type CHECK ((((ws IS NOT NULL) AND (COALESCE(org, usr) IS NULL)) OR ((org IS NOT NULL) AND (COALESCE(ws, usr) IS NULL)) OR ((usr IS NOT NULL) AND (COALESCE(org, ws) IS NULL)))) +); + + +ALTER TABLE toolbar OWNER TO evergreen; + +-- +-- Name: toolbar_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE toolbar_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE toolbar_id_seq OWNER TO evergreen; + +-- +-- Name: toolbar_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE toolbar_id_seq OWNED BY toolbar.id; + + +-- +-- Name: usr_activity_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE usr_activity_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_activity_id_seq OWNER TO evergreen; + +-- +-- Name: usr_activity_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE usr_activity_id_seq OWNED BY usr_activity.id; + + +-- +-- Name: usr_address_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE usr_address_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_address_id_seq OWNER TO evergreen; + +-- +-- Name: usr_address_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE usr_address_id_seq OWNED BY usr_address.id; + + +-- +-- Name: usr_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE usr_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_id_seq OWNER TO evergreen; + +-- +-- Name: usr_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE usr_id_seq OWNED BY usr.id; + + +-- +-- Name: usr_message; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE usr_message ( + id integer NOT NULL, + usr integer NOT NULL, + title text, + message text NOT NULL, + create_date timestamp with time zone DEFAULT now() NOT NULL, + deleted boolean DEFAULT false NOT NULL, + read_date timestamp with time zone, + sending_lib integer NOT NULL +); + + +ALTER TABLE usr_message OWNER TO evergreen; + +-- +-- Name: usr_message_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE usr_message_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_message_id_seq OWNER TO evergreen; + +-- +-- Name: usr_message_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE usr_message_id_seq OWNED BY usr_message.id; + + +-- +-- Name: usr_message_limited; Type: VIEW; Schema: actor; Owner: evergreen +-- + +CREATE VIEW usr_message_limited AS + SELECT usr_message.id, + usr_message.usr, + usr_message.title, + usr_message.message, + usr_message.create_date, + usr_message.deleted, + usr_message.read_date, + usr_message.sending_lib + FROM usr_message; + + +ALTER TABLE usr_message_limited OWNER TO evergreen; + +-- +-- Name: usr_note; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE usr_note ( + id bigint NOT NULL, + usr bigint NOT NULL, + creator bigint NOT NULL, + create_date timestamp with time zone DEFAULT now(), + pub boolean DEFAULT false NOT NULL, + title text NOT NULL, + value text NOT NULL +); + + +ALTER TABLE usr_note OWNER TO evergreen; + +-- +-- Name: usr_note_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE usr_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_note_id_seq OWNER TO evergreen; + +-- +-- Name: usr_note_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE usr_note_id_seq OWNED BY usr_note.id; + + +-- +-- Name: usr_org_unit_opt_in; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE usr_org_unit_opt_in ( + id integer NOT NULL, + org_unit integer NOT NULL, + usr integer NOT NULL, + staff integer NOT NULL, + opt_in_ts timestamp with time zone DEFAULT now() NOT NULL, + opt_in_ws integer NOT NULL +); + + +ALTER TABLE usr_org_unit_opt_in OWNER TO evergreen; + +-- +-- Name: usr_org_unit_opt_in_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE usr_org_unit_opt_in_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_org_unit_opt_in_id_seq OWNER TO evergreen; + +-- +-- Name: usr_org_unit_opt_in_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE usr_org_unit_opt_in_id_seq OWNED BY usr_org_unit_opt_in.id; + + +-- +-- Name: usr_password_reset; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE usr_password_reset ( + id integer NOT NULL, + uuid text NOT NULL, + usr bigint NOT NULL, + request_time timestamp with time zone DEFAULT now() NOT NULL, + has_been_reset boolean DEFAULT false NOT NULL +); + + +ALTER TABLE usr_password_reset OWNER TO evergreen; + +-- +-- Name: TABLE usr_password_reset; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON TABLE usr_password_reset IS ' +Self-serve password reset requests +'; + + +-- +-- Name: usr_password_reset_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE usr_password_reset_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_password_reset_id_seq OWNER TO evergreen; + +-- +-- Name: usr_password_reset_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE usr_password_reset_id_seq OWNED BY usr_password_reset.id; + + +-- +-- Name: usr_saved_search; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE usr_saved_search ( + id integer NOT NULL, + owner integer NOT NULL, + name text NOT NULL, + create_date timestamp with time zone DEFAULT now() NOT NULL, + query_text text NOT NULL, + query_type text DEFAULT 'URL'::text NOT NULL, + target text NOT NULL, + CONSTRAINT valid_query_text CHECK ((query_type = 'URL'::text)), + CONSTRAINT valid_target CHECK ((target = ANY (ARRAY['record'::text, 'metarecord'::text, 'callnumber'::text]))) +); + + +ALTER TABLE usr_saved_search OWNER TO evergreen; + +-- +-- Name: usr_saved_search_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE usr_saved_search_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_saved_search_id_seq OWNER TO evergreen; + +-- +-- Name: usr_saved_search_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE usr_saved_search_id_seq OWNED BY usr_saved_search.id; + + +-- +-- Name: usr_setting; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE usr_setting ( + id bigint NOT NULL, + usr integer NOT NULL, + name text NOT NULL, + value text NOT NULL +); + + +ALTER TABLE usr_setting OWNER TO evergreen; + +-- +-- Name: TABLE usr_setting; Type: COMMENT; Schema: actor; Owner: evergreen +-- + +COMMENT ON TABLE usr_setting IS ' +User settings + +This table contains any arbitrary settings that a client +program would like to save for a user. +'; + + +-- +-- Name: usr_setting_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE usr_setting_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_setting_id_seq OWNER TO evergreen; + +-- +-- Name: usr_setting_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE usr_setting_id_seq OWNED BY usr_setting.id; + + +-- +-- Name: usr_standing_penalty_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE usr_standing_penalty_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_standing_penalty_id_seq OWNER TO evergreen; + +-- +-- Name: usr_standing_penalty_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE usr_standing_penalty_id_seq OWNED BY usr_standing_penalty.id; + + +-- +-- Name: usr_usrgroup_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE usr_usrgroup_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_usrgroup_seq OWNER TO evergreen; + +-- +-- Name: usr_usrgroup_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE usr_usrgroup_seq OWNED BY usr.usrgroup; + + +-- +-- Name: workstation; Type: TABLE; Schema: actor; Owner: evergreen +-- + +CREATE TABLE workstation ( + id integer NOT NULL, + name text NOT NULL, + owning_lib integer NOT NULL +); + + +ALTER TABLE workstation OWNER TO evergreen; + +-- +-- Name: workstation_id_seq; Type: SEQUENCE; Schema: actor; Owner: evergreen +-- + +CREATE SEQUENCE workstation_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE workstation_id_seq OWNER TO evergreen; + +-- +-- Name: workstation_id_seq; Type: SEQUENCE OWNED BY; Schema: actor; Owner: evergreen +-- + +ALTER SEQUENCE workstation_id_seq OWNED BY workstation.id; + + +SET search_path = asset, pg_catalog; + +-- +-- Name: call_number_class; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE call_number_class ( + id bigint NOT NULL, + name text NOT NULL, + normalizer text DEFAULT 'asset.normalize_generic'::text NOT NULL, + field text DEFAULT '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'::text NOT NULL +); + + +ALTER TABLE call_number_class OWNER TO evergreen; + +-- +-- Name: TABLE call_number_class; Type: COMMENT; Schema: asset; Owner: evergreen +-- + +COMMENT ON TABLE call_number_class IS ' +Defines the call number normalization database functions in the "normalizer" +column and the tag/subfield combinations to use to lookup the call number in +the "field" column for a given classification scheme. Tag/subfield combinations +are delimited by commas. +'; + + +-- +-- Name: call_number_class_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE call_number_class_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE call_number_class_id_seq OWNER TO evergreen; + +-- +-- Name: call_number_class_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE call_number_class_id_seq OWNED BY call_number_class.id; + + +-- +-- Name: call_number_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE call_number_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE call_number_id_seq OWNER TO evergreen; + +-- +-- Name: call_number_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE call_number_id_seq OWNED BY call_number.id; + + +-- +-- Name: call_number_note; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE call_number_note ( + id bigint NOT NULL, + call_number bigint NOT NULL, + creator bigint NOT NULL, + create_date timestamp with time zone DEFAULT now(), + pub boolean DEFAULT false NOT NULL, + title text NOT NULL, + value text NOT NULL +); + + +ALTER TABLE call_number_note OWNER TO evergreen; + +-- +-- Name: call_number_note_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE call_number_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE call_number_note_id_seq OWNER TO evergreen; + +-- +-- Name: call_number_note_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE call_number_note_id_seq OWNED BY call_number_note.id; + + +-- +-- Name: call_number_prefix; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE call_number_prefix ( + id integer NOT NULL, + owning_lib integer NOT NULL, + label text NOT NULL, + label_sortkey text +); + + +ALTER TABLE call_number_prefix OWNER TO evergreen; + +-- +-- Name: call_number_prefix_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE call_number_prefix_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE call_number_prefix_id_seq OWNER TO evergreen; + +-- +-- Name: call_number_prefix_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE call_number_prefix_id_seq OWNED BY call_number_prefix.id; + + +-- +-- Name: call_number_suffix; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE call_number_suffix ( + id integer NOT NULL, + owning_lib integer NOT NULL, + label text NOT NULL, + label_sortkey text +); + + +ALTER TABLE call_number_suffix OWNER TO evergreen; + +-- +-- Name: call_number_suffix_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE call_number_suffix_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE call_number_suffix_id_seq OWNER TO evergreen; + +-- +-- Name: call_number_suffix_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE call_number_suffix_id_seq OWNED BY call_number_suffix.id; + + +-- +-- Name: copy_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE copy_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE copy_id_seq OWNER TO evergreen; + +-- +-- Name: copy_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE copy_id_seq OWNED BY copy.id; + + +-- +-- Name: copy_location; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE copy_location ( + id integer NOT NULL, + name text NOT NULL, + owning_lib integer NOT NULL, + holdable boolean DEFAULT true NOT NULL, + hold_verify boolean DEFAULT false NOT NULL, + opac_visible boolean DEFAULT true NOT NULL, + circulate boolean DEFAULT true NOT NULL, + label_prefix text, + label_suffix text, + checkin_alert boolean DEFAULT false NOT NULL, + deleted boolean DEFAULT false NOT NULL +); + + +ALTER TABLE copy_location OWNER TO evergreen; + +-- +-- Name: copy_location_group; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE copy_location_group ( + id integer NOT NULL, + name text NOT NULL, + owner integer NOT NULL, + pos integer DEFAULT 0 NOT NULL, + top boolean DEFAULT false NOT NULL, + opac_visible boolean DEFAULT true NOT NULL +); + + +ALTER TABLE copy_location_group OWNER TO evergreen; + +-- +-- Name: copy_location_group_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE copy_location_group_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE copy_location_group_id_seq OWNER TO evergreen; + +-- +-- Name: copy_location_group_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE copy_location_group_id_seq OWNED BY copy_location_group.id; + + +-- +-- Name: copy_location_group_map; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE copy_location_group_map ( + id integer NOT NULL, + location integer NOT NULL, + lgroup integer NOT NULL +); + + +ALTER TABLE copy_location_group_map OWNER TO evergreen; + +-- +-- Name: copy_location_group_map_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE copy_location_group_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE copy_location_group_map_id_seq OWNER TO evergreen; + +-- +-- Name: copy_location_group_map_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE copy_location_group_map_id_seq OWNED BY copy_location_group_map.id; + + +-- +-- Name: copy_location_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE copy_location_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE copy_location_id_seq OWNER TO evergreen; + +-- +-- Name: copy_location_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE copy_location_id_seq OWNED BY copy_location.id; + + +-- +-- Name: copy_location_order; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE copy_location_order ( + id integer NOT NULL, + location integer NOT NULL, + org integer NOT NULL, + "position" integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE copy_location_order OWNER TO evergreen; + +-- +-- Name: copy_location_order_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE copy_location_order_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE copy_location_order_id_seq OWNER TO evergreen; + +-- +-- Name: copy_location_order_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE copy_location_order_id_seq OWNED BY copy_location_order.id; + + +-- +-- Name: copy_note; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE copy_note ( + id bigint NOT NULL, + owning_copy bigint NOT NULL, + creator bigint NOT NULL, + create_date timestamp with time zone DEFAULT now(), + pub boolean DEFAULT false NOT NULL, + title text NOT NULL, + value text NOT NULL +); + + +ALTER TABLE copy_note OWNER TO evergreen; + +-- +-- Name: copy_note_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE copy_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE copy_note_id_seq OWNER TO evergreen; + +-- +-- Name: copy_note_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE copy_note_id_seq OWNED BY copy_note.id; + + +-- +-- Name: copy_part_map; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE copy_part_map ( + id integer NOT NULL, + target_copy bigint NOT NULL, + part integer NOT NULL +); + + +ALTER TABLE copy_part_map OWNER TO evergreen; + +-- +-- Name: copy_part_map_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE copy_part_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE copy_part_map_id_seq OWNER TO evergreen; + +-- +-- Name: copy_part_map_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE copy_part_map_id_seq OWNED BY copy_part_map.id; + + +-- +-- Name: copy_template; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE copy_template ( + id integer NOT NULL, + owning_lib integer NOT NULL, + creator bigint NOT NULL, + editor bigint NOT NULL, + create_date timestamp with time zone DEFAULT now(), + edit_date timestamp with time zone DEFAULT now(), + name text NOT NULL, + circ_lib integer, + status integer, + location integer, + loan_duration integer, + fine_level integer, + age_protect integer, + circulate boolean, + deposit boolean, + ref boolean, + holdable boolean, + deposit_amount numeric(6,2), + price numeric(8,2), + circ_modifier text, + circ_as_type text, + alert_message text, + opac_visible boolean, + floating integer, + mint_condition boolean, + CONSTRAINT valid_fine_level CHECK (((fine_level IS NULL) OR (loan_duration = ANY (ARRAY[1, 2, 3])))), + CONSTRAINT valid_loan_duration CHECK (((loan_duration IS NULL) OR (loan_duration = ANY (ARRAY[1, 2, 3])))) +); + + +ALTER TABLE copy_template OWNER TO evergreen; + +-- +-- Name: copy_template_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE copy_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE copy_template_id_seq OWNER TO evergreen; + +-- +-- Name: copy_template_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE copy_template_id_seq OWNED BY copy_template.id; + + +-- +-- Name: opac_visible_copies; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE opac_visible_copies ( + id bigint NOT NULL, + copy_id bigint, + record bigint, + circ_lib integer +); + + +ALTER TABLE opac_visible_copies OWNER TO evergreen; + +-- +-- Name: TABLE opac_visible_copies; Type: COMMENT; Schema: asset; Owner: evergreen +-- + +COMMENT ON TABLE opac_visible_copies IS ' +Materialized view of copies that are visible in the OPAC, used by +search.query_parser_fts() to speed up OPAC visibility checks on large +databases. Contents are maintained by a set of triggers. +'; + + +-- +-- Name: opac_visible_copies_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE opac_visible_copies_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE opac_visible_copies_id_seq OWNER TO evergreen; + +-- +-- Name: opac_visible_copies_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE opac_visible_copies_id_seq OWNED BY opac_visible_copies.id; + + +-- +-- Name: stat_cat; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE stat_cat ( + id integer NOT NULL, + owner integer NOT NULL, + opac_visible boolean DEFAULT false NOT NULL, + name text NOT NULL, + required boolean DEFAULT false NOT NULL, + sip_field character(2), + sip_format text, + checkout_archive boolean DEFAULT false NOT NULL +); + + +ALTER TABLE stat_cat OWNER TO evergreen; + +-- +-- Name: stat_cat_entry; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE stat_cat_entry ( + id integer NOT NULL, + stat_cat integer NOT NULL, + owner integer NOT NULL, + value text NOT NULL +); + + +ALTER TABLE stat_cat_entry OWNER TO evergreen; + +-- +-- Name: stat_cat_entry_copy_map; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE stat_cat_entry_copy_map ( + id bigint NOT NULL, + stat_cat integer NOT NULL, + stat_cat_entry integer NOT NULL, + owning_copy bigint NOT NULL +); + + +ALTER TABLE stat_cat_entry_copy_map OWNER TO evergreen; + +-- +-- Name: stat_cat_entry_copy_map_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE stat_cat_entry_copy_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE stat_cat_entry_copy_map_id_seq OWNER TO evergreen; + +-- +-- Name: stat_cat_entry_copy_map_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE stat_cat_entry_copy_map_id_seq OWNED BY stat_cat_entry_copy_map.id; + + +-- +-- Name: stat_cat_entry_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE stat_cat_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE stat_cat_entry_id_seq OWNER TO evergreen; + +-- +-- Name: stat_cat_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE stat_cat_entry_id_seq OWNED BY stat_cat_entry.id; + + +-- +-- Name: stat_cat_entry_transparency_map; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE stat_cat_entry_transparency_map ( + id bigint NOT NULL, + stat_cat integer NOT NULL, + stat_cat_entry integer NOT NULL, + owning_transparency integer NOT NULL +); + + +ALTER TABLE stat_cat_entry_transparency_map OWNER TO evergreen; + +-- +-- Name: stat_cat_entry_transparency_map_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE stat_cat_entry_transparency_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE stat_cat_entry_transparency_map_id_seq OWNER TO evergreen; + +-- +-- Name: stat_cat_entry_transparency_map_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE stat_cat_entry_transparency_map_id_seq OWNED BY stat_cat_entry_transparency_map.id; + + +-- +-- Name: stat_cat_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE stat_cat_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE stat_cat_id_seq OWNER TO evergreen; + +-- +-- Name: stat_cat_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE stat_cat_id_seq OWNED BY stat_cat.id; + + +-- +-- Name: stat_cat_sip_fields; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE stat_cat_sip_fields ( + field character(2) NOT NULL, + name text NOT NULL, + one_only boolean DEFAULT false NOT NULL +); + + +ALTER TABLE stat_cat_sip_fields OWNER TO evergreen; + +-- +-- Name: TABLE stat_cat_sip_fields; Type: COMMENT; Schema: asset; Owner: evergreen +-- + +COMMENT ON TABLE stat_cat_sip_fields IS ' +Asset Statistical Category SIP Fields + +Contains the list of valid SIP Field identifiers for +Statistical Categories. +'; + + +-- +-- Name: uri; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE uri ( + id integer NOT NULL, + href text NOT NULL, + label text, + use_restriction text, + active boolean DEFAULT true NOT NULL +); + + +ALTER TABLE uri OWNER TO evergreen; + +-- +-- Name: uri_call_number_map; Type: TABLE; Schema: asset; Owner: evergreen +-- + +CREATE TABLE uri_call_number_map ( + id bigint NOT NULL, + uri integer NOT NULL, + call_number integer NOT NULL +); + + +ALTER TABLE uri_call_number_map OWNER TO evergreen; + +-- +-- Name: uri_call_number_map_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE uri_call_number_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE uri_call_number_map_id_seq OWNER TO evergreen; + +-- +-- Name: uri_call_number_map_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE uri_call_number_map_id_seq OWNED BY uri_call_number_map.id; + + +-- +-- Name: uri_id_seq; Type: SEQUENCE; Schema: asset; Owner: evergreen +-- + +CREATE SEQUENCE uri_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE uri_id_seq OWNER TO evergreen; + +-- +-- Name: uri_id_seq; Type: SEQUENCE OWNED BY; Schema: asset; Owner: evergreen +-- + +ALTER SEQUENCE uri_id_seq OWNED BY uri.id; + + +SET search_path = auditor, pg_catalog; + +-- +-- Name: acq_invoice_entry_history; Type: TABLE; Schema: auditor; Owner: evergreen +-- + +CREATE TABLE acq_invoice_entry_history ( + audit_id bigint NOT NULL, + audit_time timestamp with time zone NOT NULL, + audit_action text NOT NULL, + audit_user integer, + audit_ws integer, + id integer NOT NULL, + invoice integer NOT NULL, + purchase_order integer, + lineitem integer, + inv_item_count integer NOT NULL, + phys_item_count integer, + note text, + billed_per_item boolean, + cost_billed numeric(8,2), + actual_cost numeric(8,2), + amount_paid numeric(8,2) +); + + +ALTER TABLE acq_invoice_entry_history OWNER TO evergreen; + +-- +-- Name: acq_invoice_entry_lifecycle; Type: VIEW; Schema: auditor; Owner: evergreen +-- + +CREATE VIEW acq_invoice_entry_lifecycle AS + SELECT '-1'::integer AS audit_id, + now() AS audit_time, + '-'::text AS audit_action, + '-1'::integer AS audit_user, + '-1'::integer AS audit_ws, + invoice_entry.id, + invoice_entry.invoice, + invoice_entry.purchase_order, + invoice_entry.lineitem, + invoice_entry.inv_item_count, + invoice_entry.phys_item_count, + invoice_entry.note, + invoice_entry.billed_per_item, + invoice_entry.cost_billed, + invoice_entry.actual_cost, + invoice_entry.amount_paid + FROM acq.invoice_entry +UNION ALL + SELECT acq_invoice_entry_history.audit_id, + acq_invoice_entry_history.audit_time, + acq_invoice_entry_history.audit_action, + acq_invoice_entry_history.audit_user, + acq_invoice_entry_history.audit_ws, + acq_invoice_entry_history.id, + acq_invoice_entry_history.invoice, + acq_invoice_entry_history.purchase_order, + acq_invoice_entry_history.lineitem, + acq_invoice_entry_history.inv_item_count, + acq_invoice_entry_history.phys_item_count, + acq_invoice_entry_history.note, + acq_invoice_entry_history.billed_per_item, + acq_invoice_entry_history.cost_billed, + acq_invoice_entry_history.actual_cost, + acq_invoice_entry_history.amount_paid + FROM acq_invoice_entry_history; + + +ALTER TABLE acq_invoice_entry_lifecycle OWNER TO evergreen; + +-- +-- Name: acq_invoice_entry_pkey_seq; Type: SEQUENCE; Schema: auditor; Owner: evergreen +-- + +CREATE SEQUENCE acq_invoice_entry_pkey_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE acq_invoice_entry_pkey_seq OWNER TO evergreen; + +-- +-- Name: acq_invoice_history; Type: TABLE; Schema: auditor; Owner: evergreen +-- + +CREATE TABLE acq_invoice_history ( + audit_id bigint NOT NULL, + audit_time timestamp with time zone NOT NULL, + audit_action text NOT NULL, + audit_user integer, + audit_ws integer, + id integer NOT NULL, + receiver integer NOT NULL, + provider integer NOT NULL, + shipper integer NOT NULL, + recv_date timestamp with time zone NOT NULL, + recv_method text NOT NULL, + inv_type text, + inv_ident text NOT NULL, + payment_auth text, + payment_method text, + note text, + complete boolean NOT NULL +); + + +ALTER TABLE acq_invoice_history OWNER TO evergreen; + +-- +-- Name: acq_invoice_item_history; Type: TABLE; Schema: auditor; Owner: evergreen +-- + +CREATE TABLE acq_invoice_item_history ( + audit_id bigint NOT NULL, + audit_time timestamp with time zone NOT NULL, + audit_action text NOT NULL, + audit_user integer, + audit_ws integer, + id integer NOT NULL, + invoice integer NOT NULL, + purchase_order integer, + fund_debit integer, + inv_item_type text NOT NULL, + title text, + author text, + note text, + cost_billed numeric(8,2), + actual_cost numeric(8,2), + fund integer, + amount_paid numeric(8,2), + po_item integer, + target bigint +); + + +ALTER TABLE acq_invoice_item_history OWNER TO evergreen; + +-- +-- Name: acq_invoice_item_lifecycle; Type: VIEW; Schema: auditor; Owner: evergreen +-- + +CREATE VIEW acq_invoice_item_lifecycle AS + SELECT '-1'::integer AS audit_id, + now() AS audit_time, + '-'::text AS audit_action, + '-1'::integer AS audit_user, + '-1'::integer AS audit_ws, + invoice_item.id, + invoice_item.invoice, + invoice_item.purchase_order, + invoice_item.fund_debit, + invoice_item.inv_item_type, + invoice_item.title, + invoice_item.author, + invoice_item.note, + invoice_item.cost_billed, + invoice_item.actual_cost, + invoice_item.fund, + invoice_item.amount_paid, + invoice_item.po_item, + invoice_item.target + FROM acq.invoice_item +UNION ALL + SELECT acq_invoice_item_history.audit_id, + acq_invoice_item_history.audit_time, + acq_invoice_item_history.audit_action, + acq_invoice_item_history.audit_user, + acq_invoice_item_history.audit_ws, + acq_invoice_item_history.id, + acq_invoice_item_history.invoice, + acq_invoice_item_history.purchase_order, + acq_invoice_item_history.fund_debit, + acq_invoice_item_history.inv_item_type, + acq_invoice_item_history.title, + acq_invoice_item_history.author, + acq_invoice_item_history.note, + acq_invoice_item_history.cost_billed, + acq_invoice_item_history.actual_cost, + acq_invoice_item_history.fund, + acq_invoice_item_history.amount_paid, + acq_invoice_item_history.po_item, + acq_invoice_item_history.target + FROM acq_invoice_item_history; + + +ALTER TABLE acq_invoice_item_lifecycle OWNER TO evergreen; + +-- +-- Name: acq_invoice_item_pkey_seq; Type: SEQUENCE; Schema: auditor; Owner: evergreen +-- + +CREATE SEQUENCE acq_invoice_item_pkey_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE acq_invoice_item_pkey_seq OWNER TO evergreen; + +-- +-- Name: acq_invoice_lifecycle; Type: VIEW; Schema: auditor; Owner: evergreen +-- + +CREATE VIEW acq_invoice_lifecycle AS + SELECT '-1'::integer AS audit_id, + now() AS audit_time, + '-'::text AS audit_action, + '-1'::integer AS audit_user, + '-1'::integer AS audit_ws, + invoice.id, + invoice.receiver, + invoice.provider, + invoice.shipper, + invoice.recv_date, + invoice.recv_method, + invoice.inv_type, + invoice.inv_ident, + invoice.payment_auth, + invoice.payment_method, + invoice.note, + invoice.complete + FROM acq.invoice +UNION ALL + SELECT acq_invoice_history.audit_id, + acq_invoice_history.audit_time, + acq_invoice_history.audit_action, + acq_invoice_history.audit_user, + acq_invoice_history.audit_ws, + acq_invoice_history.id, + acq_invoice_history.receiver, + acq_invoice_history.provider, + acq_invoice_history.shipper, + acq_invoice_history.recv_date, + acq_invoice_history.recv_method, + acq_invoice_history.inv_type, + acq_invoice_history.inv_ident, + acq_invoice_history.payment_auth, + acq_invoice_history.payment_method, + acq_invoice_history.note, + acq_invoice_history.complete + FROM acq_invoice_history; + + +ALTER TABLE acq_invoice_lifecycle OWNER TO evergreen; + +-- +-- Name: acq_invoice_pkey_seq; Type: SEQUENCE; Schema: auditor; Owner: evergreen +-- + +CREATE SEQUENCE acq_invoice_pkey_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE acq_invoice_pkey_seq OWNER TO evergreen; + +-- +-- Name: actor_org_unit_history; Type: TABLE; Schema: auditor; Owner: evergreen +-- + +CREATE TABLE actor_org_unit_history ( + audit_id bigint NOT NULL, + audit_time timestamp with time zone NOT NULL, + audit_action text NOT NULL, + audit_user integer, + audit_ws integer, + id integer NOT NULL, + parent_ou integer, + ou_type integer NOT NULL, + ill_address integer, + holds_address integer, + mailing_address integer, + billing_address integer, + shortname text NOT NULL, + name text NOT NULL, + email text, + phone text, + opac_visible boolean NOT NULL, + fiscal_calendar integer NOT NULL +); + + +ALTER TABLE actor_org_unit_history OWNER TO evergreen; + +-- +-- Name: actor_org_unit_lifecycle; Type: VIEW; Schema: auditor; Owner: evergreen +-- + +CREATE VIEW actor_org_unit_lifecycle AS + SELECT '-1'::integer AS audit_id, + now() AS audit_time, + '-'::text AS audit_action, + '-1'::integer AS audit_user, + '-1'::integer AS audit_ws, + org_unit.id, + org_unit.parent_ou, + org_unit.ou_type, + org_unit.ill_address, + org_unit.holds_address, + org_unit.mailing_address, + org_unit.billing_address, + org_unit.shortname, + org_unit.name, + org_unit.email, + org_unit.phone, + org_unit.opac_visible, + org_unit.fiscal_calendar + FROM actor.org_unit +UNION ALL + SELECT actor_org_unit_history.audit_id, + actor_org_unit_history.audit_time, + actor_org_unit_history.audit_action, + actor_org_unit_history.audit_user, + actor_org_unit_history.audit_ws, + actor_org_unit_history.id, + actor_org_unit_history.parent_ou, + actor_org_unit_history.ou_type, + actor_org_unit_history.ill_address, + actor_org_unit_history.holds_address, + actor_org_unit_history.mailing_address, + actor_org_unit_history.billing_address, + actor_org_unit_history.shortname, + actor_org_unit_history.name, + actor_org_unit_history.email, + actor_org_unit_history.phone, + actor_org_unit_history.opac_visible, + actor_org_unit_history.fiscal_calendar + FROM actor_org_unit_history; + + +ALTER TABLE actor_org_unit_lifecycle OWNER TO evergreen; + +-- +-- Name: actor_org_unit_pkey_seq; Type: SEQUENCE; Schema: auditor; Owner: evergreen +-- + +CREATE SEQUENCE actor_org_unit_pkey_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE actor_org_unit_pkey_seq OWNER TO evergreen; + +-- +-- Name: actor_usr_address_history; Type: TABLE; Schema: auditor; Owner: evergreen +-- + +CREATE TABLE actor_usr_address_history ( + audit_id bigint NOT NULL, + audit_time timestamp with time zone NOT NULL, + audit_action text NOT NULL, + audit_user integer, + audit_ws integer, + id integer NOT NULL, + valid boolean NOT NULL, + within_city_limits boolean NOT NULL, + address_type text NOT NULL, + usr integer NOT NULL, + street1 text NOT NULL, + street2 text, + city text NOT NULL, + county text, + state text, + country text NOT NULL, + post_code text NOT NULL, + pending boolean NOT NULL, + replaces integer +); + + +ALTER TABLE actor_usr_address_history OWNER TO evergreen; + +-- +-- Name: actor_usr_address_lifecycle; Type: VIEW; Schema: auditor; Owner: evergreen +-- + +CREATE VIEW actor_usr_address_lifecycle AS + SELECT '-1'::integer AS audit_id, + now() AS audit_time, + '-'::text AS audit_action, + '-1'::integer AS audit_user, + '-1'::integer AS audit_ws, + usr_address.id, + usr_address.valid, + usr_address.within_city_limits, + usr_address.address_type, + usr_address.usr, + usr_address.street1, + usr_address.street2, + usr_address.city, + usr_address.county, + usr_address.state, + usr_address.country, + usr_address.post_code, + usr_address.pending, + usr_address.replaces + FROM actor.usr_address +UNION ALL + SELECT actor_usr_address_history.audit_id, + actor_usr_address_history.audit_time, + actor_usr_address_history.audit_action, + actor_usr_address_history.audit_user, + actor_usr_address_history.audit_ws, + actor_usr_address_history.id, + actor_usr_address_history.valid, + actor_usr_address_history.within_city_limits, + actor_usr_address_history.address_type, + actor_usr_address_history.usr, + actor_usr_address_history.street1, + actor_usr_address_history.street2, + actor_usr_address_history.city, + actor_usr_address_history.county, + actor_usr_address_history.state, + actor_usr_address_history.country, + actor_usr_address_history.post_code, + actor_usr_address_history.pending, + actor_usr_address_history.replaces + FROM actor_usr_address_history; + + +ALTER TABLE actor_usr_address_lifecycle OWNER TO evergreen; + +-- +-- Name: actor_usr_address_pkey_seq; Type: SEQUENCE; Schema: auditor; Owner: evergreen +-- + +CREATE SEQUENCE actor_usr_address_pkey_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE actor_usr_address_pkey_seq OWNER TO evergreen; + +-- +-- Name: actor_usr_history; Type: TABLE; Schema: auditor; Owner: evergreen +-- + +CREATE TABLE actor_usr_history ( + audit_id bigint NOT NULL, + audit_time timestamp with time zone NOT NULL, + audit_action text NOT NULL, + audit_user integer, + audit_ws integer, + id integer NOT NULL, + card integer, + profile integer NOT NULL, + usrname text NOT NULL, + email text, + passwd text NOT NULL, + standing integer NOT NULL, + ident_type integer NOT NULL, + ident_value text, + ident_type2 integer, + ident_value2 text, + net_access_level integer NOT NULL, + photo_url text, + prefix text, + first_given_name text NOT NULL, + second_given_name text, + family_name text NOT NULL, + suffix text, + alias text, + day_phone text, + evening_phone text, + other_phone text, + mailing_address integer, + billing_address integer, + home_ou integer NOT NULL, + dob date, + active boolean NOT NULL, + master_account boolean NOT NULL, + super_user boolean NOT NULL, + barred boolean NOT NULL, + deleted boolean NOT NULL, + juvenile boolean NOT NULL, + usrgroup integer NOT NULL, + claims_returned_count integer NOT NULL, + credit_forward_balance numeric(6,2) NOT NULL, + last_xact_id text NOT NULL, + alert_message text, + create_date timestamp with time zone NOT NULL, + expire_date timestamp with time zone NOT NULL, + claims_never_checked_out_count integer NOT NULL, + last_update_time timestamp with time zone +); + + +ALTER TABLE actor_usr_history OWNER TO evergreen; + +-- +-- Name: actor_usr_lifecycle; Type: VIEW; Schema: auditor; Owner: evergreen +-- + +CREATE VIEW actor_usr_lifecycle AS + SELECT '-1'::integer AS audit_id, + now() AS audit_time, + '-'::text AS audit_action, + '-1'::integer AS audit_user, + '-1'::integer AS audit_ws, + usr.id, + usr.card, + usr.profile, + usr.usrname, + usr.email, + usr.passwd, + usr.standing, + usr.ident_type, + usr.ident_value, + usr.ident_type2, + usr.ident_value2, + usr.net_access_level, + usr.photo_url, + usr.prefix, + usr.first_given_name, + usr.second_given_name, + usr.family_name, + usr.suffix, + usr.alias, + usr.day_phone, + usr.evening_phone, + usr.other_phone, + usr.mailing_address, + usr.billing_address, + usr.home_ou, + usr.dob, + usr.active, + usr.master_account, + usr.super_user, + usr.barred, + usr.deleted, + usr.juvenile, + usr.usrgroup, + usr.claims_returned_count, + usr.credit_forward_balance, + usr.last_xact_id, + usr.alert_message, + usr.create_date, + usr.expire_date, + usr.claims_never_checked_out_count, + usr.last_update_time + FROM actor.usr +UNION ALL + SELECT actor_usr_history.audit_id, + actor_usr_history.audit_time, + actor_usr_history.audit_action, + actor_usr_history.audit_user, + actor_usr_history.audit_ws, + actor_usr_history.id, + actor_usr_history.card, + actor_usr_history.profile, + actor_usr_history.usrname, + actor_usr_history.email, + actor_usr_history.passwd, + actor_usr_history.standing, + actor_usr_history.ident_type, + actor_usr_history.ident_value, + actor_usr_history.ident_type2, + actor_usr_history.ident_value2, + actor_usr_history.net_access_level, + actor_usr_history.photo_url, + actor_usr_history.prefix, + actor_usr_history.first_given_name, + actor_usr_history.second_given_name, + actor_usr_history.family_name, + actor_usr_history.suffix, + actor_usr_history.alias, + actor_usr_history.day_phone, + actor_usr_history.evening_phone, + actor_usr_history.other_phone, + actor_usr_history.mailing_address, + actor_usr_history.billing_address, + actor_usr_history.home_ou, + actor_usr_history.dob, + actor_usr_history.active, + actor_usr_history.master_account, + actor_usr_history.super_user, + actor_usr_history.barred, + actor_usr_history.deleted, + actor_usr_history.juvenile, + actor_usr_history.usrgroup, + actor_usr_history.claims_returned_count, + actor_usr_history.credit_forward_balance, + actor_usr_history.last_xact_id, + actor_usr_history.alert_message, + actor_usr_history.create_date, + actor_usr_history.expire_date, + actor_usr_history.claims_never_checked_out_count, + actor_usr_history.last_update_time + FROM actor_usr_history; + + +ALTER TABLE actor_usr_lifecycle OWNER TO evergreen; + +-- +-- Name: actor_usr_pkey_seq; Type: SEQUENCE; Schema: auditor; Owner: evergreen +-- + +CREATE SEQUENCE actor_usr_pkey_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE actor_usr_pkey_seq OWNER TO evergreen; + +-- +-- Name: asset_call_number_history; Type: TABLE; Schema: auditor; Owner: evergreen +-- + +CREATE TABLE asset_call_number_history ( + audit_id bigint NOT NULL, + audit_time timestamp with time zone NOT NULL, + audit_action text NOT NULL, + audit_user integer, + audit_ws integer, + id bigint NOT NULL, + creator bigint NOT NULL, + create_date timestamp with time zone, + editor bigint NOT NULL, + edit_date timestamp with time zone, + record bigint NOT NULL, + owning_lib integer NOT NULL, + label text NOT NULL, + deleted boolean NOT NULL, + prefix integer NOT NULL, + suffix integer NOT NULL, + label_class bigint NOT NULL, + label_sortkey text +); + + +ALTER TABLE asset_call_number_history OWNER TO evergreen; + +-- +-- Name: asset_call_number_lifecycle; Type: VIEW; Schema: auditor; Owner: evergreen +-- + +CREATE VIEW asset_call_number_lifecycle AS + SELECT '-1'::integer AS audit_id, + now() AS audit_time, + '-'::text AS audit_action, + '-1'::integer AS audit_user, + '-1'::integer AS audit_ws, + call_number.id, + call_number.creator, + call_number.create_date, + call_number.editor, + call_number.edit_date, + call_number.record, + call_number.owning_lib, + call_number.label, + call_number.deleted, + call_number.prefix, + call_number.suffix, + call_number.label_class, + call_number.label_sortkey + FROM asset.call_number +UNION ALL + SELECT asset_call_number_history.audit_id, + asset_call_number_history.audit_time, + asset_call_number_history.audit_action, + asset_call_number_history.audit_user, + asset_call_number_history.audit_ws, + asset_call_number_history.id, + asset_call_number_history.creator, + asset_call_number_history.create_date, + asset_call_number_history.editor, + asset_call_number_history.edit_date, + asset_call_number_history.record, + asset_call_number_history.owning_lib, + asset_call_number_history.label, + asset_call_number_history.deleted, + asset_call_number_history.prefix, + asset_call_number_history.suffix, + asset_call_number_history.label_class, + asset_call_number_history.label_sortkey + FROM asset_call_number_history; + + +ALTER TABLE asset_call_number_lifecycle OWNER TO evergreen; + +-- +-- Name: asset_call_number_pkey_seq; Type: SEQUENCE; Schema: auditor; Owner: evergreen +-- + +CREATE SEQUENCE asset_call_number_pkey_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE asset_call_number_pkey_seq OWNER TO evergreen; + +-- +-- Name: asset_copy_history; Type: TABLE; Schema: auditor; Owner: evergreen +-- + +CREATE TABLE asset_copy_history ( + audit_id bigint NOT NULL, + audit_time timestamp with time zone NOT NULL, + audit_action text NOT NULL, + audit_user integer, + audit_ws integer, + id bigint NOT NULL, + circ_lib integer NOT NULL, + creator bigint NOT NULL, + call_number bigint NOT NULL, + editor bigint NOT NULL, + create_date timestamp with time zone, + edit_date timestamp with time zone, + copy_number integer, + status integer NOT NULL, + location integer NOT NULL, + loan_duration integer NOT NULL, + fine_level integer NOT NULL, + age_protect integer, + circulate boolean NOT NULL, + deposit boolean NOT NULL, + ref boolean NOT NULL, + holdable boolean NOT NULL, + deposit_amount numeric(6,2) NOT NULL, + price numeric(8,2), + barcode text NOT NULL, + circ_modifier text, + circ_as_type text, + dummy_title text, + dummy_author text, + alert_message text, + opac_visible boolean NOT NULL, + deleted boolean NOT NULL, + floating integer, + dummy_isbn text, + status_changed_time timestamp with time zone, + active_date timestamp with time zone, + mint_condition boolean NOT NULL, + cost numeric(8,2) +); + + +ALTER TABLE asset_copy_history OWNER TO evergreen; + +-- +-- Name: asset_copy_lifecycle; Type: VIEW; Schema: auditor; Owner: evergreen +-- + +CREATE VIEW asset_copy_lifecycle AS + SELECT '-1'::integer AS audit_id, + now() AS audit_time, + '-'::text AS audit_action, + '-1'::integer AS audit_user, + '-1'::integer AS audit_ws, + copy.id, + copy.circ_lib, + copy.creator, + copy.call_number, + copy.editor, + copy.create_date, + copy.edit_date, + copy.copy_number, + copy.status, + copy.location, + copy.loan_duration, + copy.fine_level, + copy.age_protect, + copy.circulate, + copy.deposit, + copy.ref, + copy.holdable, + copy.deposit_amount, + copy.price, + copy.barcode, + copy.circ_modifier, + copy.circ_as_type, + copy.dummy_title, + copy.dummy_author, + copy.alert_message, + copy.opac_visible, + copy.deleted, + copy.floating, + copy.dummy_isbn, + copy.status_changed_time, + copy.active_date, + copy.mint_condition, + copy.cost + FROM asset.copy +UNION ALL + SELECT asset_copy_history.audit_id, + asset_copy_history.audit_time, + asset_copy_history.audit_action, + asset_copy_history.audit_user, + asset_copy_history.audit_ws, + asset_copy_history.id, + asset_copy_history.circ_lib, + asset_copy_history.creator, + asset_copy_history.call_number, + asset_copy_history.editor, + asset_copy_history.create_date, + asset_copy_history.edit_date, + asset_copy_history.copy_number, + asset_copy_history.status, + asset_copy_history.location, + asset_copy_history.loan_duration, + asset_copy_history.fine_level, + asset_copy_history.age_protect, + asset_copy_history.circulate, + asset_copy_history.deposit, + asset_copy_history.ref, + asset_copy_history.holdable, + asset_copy_history.deposit_amount, + asset_copy_history.price, + asset_copy_history.barcode, + asset_copy_history.circ_modifier, + asset_copy_history.circ_as_type, + asset_copy_history.dummy_title, + asset_copy_history.dummy_author, + asset_copy_history.alert_message, + asset_copy_history.opac_visible, + asset_copy_history.deleted, + asset_copy_history.floating, + asset_copy_history.dummy_isbn, + asset_copy_history.status_changed_time, + asset_copy_history.active_date, + asset_copy_history.mint_condition, + asset_copy_history.cost + FROM asset_copy_history; + + +ALTER TABLE asset_copy_lifecycle OWNER TO evergreen; + +-- +-- Name: asset_copy_pkey_seq; Type: SEQUENCE; Schema: auditor; Owner: evergreen +-- + +CREATE SEQUENCE asset_copy_pkey_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE asset_copy_pkey_seq OWNER TO evergreen; + +-- +-- Name: biblio_record_entry_history; Type: TABLE; Schema: auditor; Owner: evergreen +-- + +CREATE TABLE biblio_record_entry_history ( + audit_id bigint NOT NULL, + audit_time timestamp with time zone NOT NULL, + audit_action text NOT NULL, + audit_user integer, + audit_ws integer, + id bigint NOT NULL, + creator integer NOT NULL, + editor integer NOT NULL, + source integer, + quality integer, + create_date timestamp with time zone NOT NULL, + edit_date timestamp with time zone NOT NULL, + active boolean NOT NULL, + deleted boolean NOT NULL, + fingerprint text, + tcn_source text NOT NULL, + tcn_value text NOT NULL, + marc text NOT NULL, + last_xact_id text NOT NULL, + owner integer, + share_depth integer +); + + +ALTER TABLE biblio_record_entry_history OWNER TO evergreen; + +SET search_path = biblio, pg_catalog; + +-- +-- Name: record_entry; Type: TABLE; Schema: biblio; Owner: evergreen +-- + +CREATE TABLE record_entry ( + id bigint NOT NULL, + creator integer DEFAULT 1 NOT NULL, + editor integer DEFAULT 1 NOT NULL, + source integer, + quality integer, + create_date timestamp with time zone DEFAULT now() NOT NULL, + edit_date timestamp with time zone DEFAULT now() NOT NULL, + active boolean DEFAULT true NOT NULL, + deleted boolean DEFAULT false NOT NULL, + fingerprint text, + tcn_source text DEFAULT 'AUTOGEN'::text NOT NULL, + tcn_value text DEFAULT next_autogen_tcn_value() NOT NULL, + marc text NOT NULL, + last_xact_id text NOT NULL, + owner integer, + share_depth integer +); + + +ALTER TABLE record_entry OWNER TO evergreen; + +SET search_path = auditor, pg_catalog; + +-- +-- Name: biblio_record_entry_lifecycle; Type: VIEW; Schema: auditor; Owner: evergreen +-- + +CREATE VIEW biblio_record_entry_lifecycle AS + SELECT '-1'::integer AS audit_id, + now() AS audit_time, + '-'::text AS audit_action, + '-1'::integer AS audit_user, + '-1'::integer AS audit_ws, + record_entry.id, + record_entry.creator, + record_entry.editor, + record_entry.source, + record_entry.quality, + record_entry.create_date, + record_entry.edit_date, + record_entry.active, + record_entry.deleted, + record_entry.fingerprint, + record_entry.tcn_source, + record_entry.tcn_value, + record_entry.marc, + record_entry.last_xact_id, + record_entry.owner, + record_entry.share_depth + FROM biblio.record_entry +UNION ALL + SELECT biblio_record_entry_history.audit_id, + biblio_record_entry_history.audit_time, + biblio_record_entry_history.audit_action, + biblio_record_entry_history.audit_user, + biblio_record_entry_history.audit_ws, + biblio_record_entry_history.id, + biblio_record_entry_history.creator, + biblio_record_entry_history.editor, + biblio_record_entry_history.source, + biblio_record_entry_history.quality, + biblio_record_entry_history.create_date, + biblio_record_entry_history.edit_date, + biblio_record_entry_history.active, + biblio_record_entry_history.deleted, + biblio_record_entry_history.fingerprint, + biblio_record_entry_history.tcn_source, + biblio_record_entry_history.tcn_value, + biblio_record_entry_history.marc, + biblio_record_entry_history.last_xact_id, + biblio_record_entry_history.owner, + biblio_record_entry_history.share_depth + FROM biblio_record_entry_history; + + +ALTER TABLE biblio_record_entry_lifecycle OWNER TO evergreen; + +-- +-- Name: biblio_record_entry_pkey_seq; Type: SEQUENCE; Schema: auditor; Owner: evergreen +-- + +CREATE SEQUENCE biblio_record_entry_pkey_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE biblio_record_entry_pkey_seq OWNER TO evergreen; + +-- +-- Name: serial_unit_history; Type: TABLE; Schema: auditor; Owner: evergreen +-- + +CREATE TABLE serial_unit_history ( + audit_id bigint NOT NULL, + audit_time timestamp with time zone NOT NULL, + audit_action text NOT NULL, + audit_user integer, + audit_ws integer, + id bigint NOT NULL, + circ_lib integer NOT NULL, + creator bigint NOT NULL, + call_number bigint NOT NULL, + editor bigint NOT NULL, + create_date timestamp with time zone, + edit_date timestamp with time zone, + copy_number integer, + status integer NOT NULL, + location integer NOT NULL, + loan_duration integer NOT NULL, + fine_level integer NOT NULL, + age_protect integer, + circulate boolean NOT NULL, + deposit boolean NOT NULL, + ref boolean NOT NULL, + holdable boolean NOT NULL, + deposit_amount numeric(6,2) NOT NULL, + price numeric(8,2), + barcode text NOT NULL, + circ_modifier text, + circ_as_type text, + dummy_title text, + dummy_author text, + alert_message text, + opac_visible boolean NOT NULL, + deleted boolean NOT NULL, + floating integer, + dummy_isbn text, + status_changed_time timestamp with time zone, + active_date timestamp with time zone, + mint_condition boolean NOT NULL, + cost numeric(8,2), + sort_key text, + detailed_contents text NOT NULL, + summary_contents text NOT NULL +); + + +ALTER TABLE serial_unit_history OWNER TO evergreen; + +SET search_path = serial, pg_catalog; + +-- +-- Name: unit; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE unit ( + sort_key text, + detailed_contents text NOT NULL, + summary_contents text NOT NULL +) +INHERITS (asset.copy); + + +ALTER TABLE unit OWNER TO evergreen; + +SET search_path = auditor, pg_catalog; + +-- +-- Name: serial_unit_lifecycle; Type: VIEW; Schema: auditor; Owner: evergreen +-- + +CREATE VIEW serial_unit_lifecycle AS + SELECT '-1'::integer AS audit_id, + now() AS audit_time, + '-'::text AS audit_action, + '-1'::integer AS audit_user, + '-1'::integer AS audit_ws, + unit.id, + unit.circ_lib, + unit.creator, + unit.call_number, + unit.editor, + unit.create_date, + unit.edit_date, + unit.copy_number, + unit.status, + unit.location, + unit.loan_duration, + unit.fine_level, + unit.age_protect, + unit.circulate, + unit.deposit, + unit.ref, + unit.holdable, + unit.deposit_amount, + unit.price, + unit.barcode, + unit.circ_modifier, + unit.circ_as_type, + unit.dummy_title, + unit.dummy_author, + unit.alert_message, + unit.opac_visible, + unit.deleted, + unit.floating, + unit.dummy_isbn, + unit.status_changed_time, + unit.active_date, + unit.mint_condition, + unit.cost, + unit.sort_key, + unit.detailed_contents, + unit.summary_contents + FROM serial.unit +UNION ALL + SELECT serial_unit_history.audit_id, + serial_unit_history.audit_time, + serial_unit_history.audit_action, + serial_unit_history.audit_user, + serial_unit_history.audit_ws, + serial_unit_history.id, + serial_unit_history.circ_lib, + serial_unit_history.creator, + serial_unit_history.call_number, + serial_unit_history.editor, + serial_unit_history.create_date, + serial_unit_history.edit_date, + serial_unit_history.copy_number, + serial_unit_history.status, + serial_unit_history.location, + serial_unit_history.loan_duration, + serial_unit_history.fine_level, + serial_unit_history.age_protect, + serial_unit_history.circulate, + serial_unit_history.deposit, + serial_unit_history.ref, + serial_unit_history.holdable, + serial_unit_history.deposit_amount, + serial_unit_history.price, + serial_unit_history.barcode, + serial_unit_history.circ_modifier, + serial_unit_history.circ_as_type, + serial_unit_history.dummy_title, + serial_unit_history.dummy_author, + serial_unit_history.alert_message, + serial_unit_history.opac_visible, + serial_unit_history.deleted, + serial_unit_history.floating, + serial_unit_history.dummy_isbn, + serial_unit_history.status_changed_time, + serial_unit_history.active_date, + serial_unit_history.mint_condition, + serial_unit_history.cost, + serial_unit_history.sort_key, + serial_unit_history.detailed_contents, + serial_unit_history.summary_contents + FROM serial_unit_history; + + +ALTER TABLE serial_unit_lifecycle OWNER TO evergreen; + +-- +-- Name: serial_unit_pkey_seq; Type: SEQUENCE; Schema: auditor; Owner: evergreen +-- + +CREATE SEQUENCE serial_unit_pkey_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE serial_unit_pkey_seq OWNER TO evergreen; + +SET search_path = authority, pg_catalog; + +-- +-- Name: authority_linking_id_seq; Type: SEQUENCE; Schema: authority; Owner: evergreen +-- + +CREATE SEQUENCE authority_linking_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE authority_linking_id_seq OWNER TO evergreen; + +-- +-- Name: authority_linking_id_seq; Type: SEQUENCE OWNED BY; Schema: authority; Owner: evergreen +-- + +ALTER SEQUENCE authority_linking_id_seq OWNED BY authority_linking.id; + + +-- +-- Name: bib_linking; Type: TABLE; Schema: authority; Owner: evergreen +-- + +CREATE TABLE bib_linking ( + id bigint NOT NULL, + bib bigint NOT NULL, + authority bigint NOT NULL +); + + +ALTER TABLE bib_linking OWNER TO evergreen; + +-- +-- Name: bib_linking_id_seq; Type: SEQUENCE; Schema: authority; Owner: evergreen +-- + +CREATE SEQUENCE bib_linking_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE bib_linking_id_seq OWNER TO evergreen; + +-- +-- Name: bib_linking_id_seq; Type: SEQUENCE OWNED BY; Schema: authority; Owner: evergreen +-- + +ALTER SEQUENCE bib_linking_id_seq OWNED BY bib_linking.id; + + +-- +-- Name: browse_axis; Type: TABLE; Schema: authority; Owner: evergreen +-- + +CREATE TABLE browse_axis ( + code text NOT NULL, + name text NOT NULL, + sorter text, + description text +); + + +ALTER TABLE browse_axis OWNER TO evergreen; + +-- +-- Name: browse_axis_authority_field_map; Type: TABLE; Schema: authority; Owner: evergreen +-- + +CREATE TABLE browse_axis_authority_field_map ( + id integer NOT NULL, + axis text NOT NULL, + field integer NOT NULL +); + + +ALTER TABLE browse_axis_authority_field_map OWNER TO evergreen; + +-- +-- Name: browse_axis_authority_field_map_id_seq; Type: SEQUENCE; Schema: authority; Owner: evergreen +-- + +CREATE SEQUENCE browse_axis_authority_field_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE browse_axis_authority_field_map_id_seq OWNER TO evergreen; + +-- +-- Name: browse_axis_authority_field_map_id_seq; Type: SEQUENCE OWNED BY; Schema: authority; Owner: evergreen +-- + +ALTER SEQUENCE browse_axis_authority_field_map_id_seq OWNED BY browse_axis_authority_field_map.id; + + +-- +-- Name: control_set; Type: TABLE; Schema: authority; Owner: evergreen +-- + +CREATE TABLE control_set ( + id integer NOT NULL, + name text NOT NULL, + description text +); + + +ALTER TABLE control_set OWNER TO evergreen; + +-- +-- Name: control_set_bib_field; Type: TABLE; Schema: authority; Owner: evergreen +-- + +CREATE TABLE control_set_bib_field ( + id integer NOT NULL, + authority_field integer NOT NULL, + tag character(3) NOT NULL +); + + +ALTER TABLE control_set_bib_field OWNER TO evergreen; + +-- +-- Name: control_set_bib_field_metabib_field_map; Type: TABLE; Schema: authority; Owner: evergreen +-- + +CREATE TABLE control_set_bib_field_metabib_field_map ( + id integer NOT NULL, + bib_field integer NOT NULL, + metabib_field integer NOT NULL +); + + +ALTER TABLE control_set_bib_field_metabib_field_map OWNER TO evergreen; + +-- +-- Name: control_set_auth_field_metabib_field_map_main; Type: VIEW; Schema: authority; Owner: evergreen +-- + +CREATE VIEW control_set_auth_field_metabib_field_map_main AS + SELECT DISTINCT b.authority_field, + m.metabib_field + FROM (control_set_bib_field_metabib_field_map m + JOIN control_set_bib_field b ON ((b.id = m.bib_field))); + + +ALTER TABLE control_set_auth_field_metabib_field_map_main OWNER TO evergreen; + +-- +-- Name: VIEW control_set_auth_field_metabib_field_map_main; Type: COMMENT; Schema: authority; Owner: evergreen +-- + +COMMENT ON VIEW control_set_auth_field_metabib_field_map_main IS 'metabib fields for main entry auth fields'; + + +-- +-- Name: control_set_authority_field; Type: TABLE; Schema: authority; Owner: evergreen +-- + +CREATE TABLE control_set_authority_field ( + id integer NOT NULL, + main_entry integer, + control_set integer NOT NULL, + tag character(3) NOT NULL, + nfi character(1), + sf_list text NOT NULL, + display_sf_list text NOT NULL, + name text NOT NULL, + description text, + joiner text, + linking_subfield character(1) +); + + +ALTER TABLE control_set_authority_field OWNER TO evergreen; + +-- +-- Name: control_set_auth_field_metabib_field_map_blind_main; Type: VIEW; Schema: authority; Owner: evergreen +-- + +CREATE VIEW control_set_auth_field_metabib_field_map_blind_main AS + SELECT r.authority_field, + r.metabib_field + FROM (control_set_auth_field_metabib_field_map_main r + JOIN control_set_authority_field a ON ((r.authority_field = a.id))) + WHERE (a.linking_subfield IS NULL); + + +ALTER TABLE control_set_auth_field_metabib_field_map_blind_main OWNER TO evergreen; + +-- +-- Name: VIEW control_set_auth_field_metabib_field_map_blind_main; Type: COMMENT; Schema: authority; Owner: evergreen +-- + +COMMENT ON VIEW control_set_auth_field_metabib_field_map_blind_main IS 'metabib fields for main entry auth fields that can''t be linked to other records'; + + +-- +-- Name: control_set_auth_field_metabib_field_map_refs_only; Type: VIEW; Schema: authority; Owner: evergreen +-- + +CREATE VIEW control_set_auth_field_metabib_field_map_refs_only AS + SELECT DISTINCT a.id AS authority_field, + m.metabib_field + FROM ((((control_set_authority_field a + JOIN control_set_authority_field ame ON ((a.main_entry = ame.id))) + JOIN control_set_bib_field b ON ((b.authority_field = ame.id))) + JOIN control_set_bib_field_metabib_field_map mf ON ((mf.bib_field = b.id))) + JOIN control_set_auth_field_metabib_field_map_main m ON ((ame.id = m.authority_field))); + + +ALTER TABLE control_set_auth_field_metabib_field_map_refs_only OWNER TO evergreen; + +-- +-- Name: VIEW control_set_auth_field_metabib_field_map_refs_only; Type: COMMENT; Schema: authority; Owner: evergreen +-- + +COMMENT ON VIEW control_set_auth_field_metabib_field_map_refs_only IS 'metabib fields for NON-main entry auth fields'; + + +-- +-- Name: control_set_auth_field_metabib_field_map_refs; Type: VIEW; Schema: authority; Owner: evergreen +-- + +CREATE VIEW control_set_auth_field_metabib_field_map_refs AS + SELECT control_set_auth_field_metabib_field_map_main.authority_field, + control_set_auth_field_metabib_field_map_main.metabib_field + FROM control_set_auth_field_metabib_field_map_main +UNION + SELECT control_set_auth_field_metabib_field_map_refs_only.authority_field, + control_set_auth_field_metabib_field_map_refs_only.metabib_field + FROM control_set_auth_field_metabib_field_map_refs_only; + + +ALTER TABLE control_set_auth_field_metabib_field_map_refs OWNER TO evergreen; + +-- +-- Name: VIEW control_set_auth_field_metabib_field_map_refs; Type: COMMENT; Schema: authority; Owner: evergreen +-- + +COMMENT ON VIEW control_set_auth_field_metabib_field_map_refs IS 'metabib fields for all auth fields'; + + +-- +-- Name: control_set_auth_field_metabib_field_map_blind_refs; Type: VIEW; Schema: authority; Owner: evergreen +-- + +CREATE VIEW control_set_auth_field_metabib_field_map_blind_refs AS + SELECT r.authority_field, + r.metabib_field + FROM (control_set_auth_field_metabib_field_map_refs r + JOIN control_set_authority_field a ON ((r.authority_field = a.id))) + WHERE (a.linking_subfield IS NULL); + + +ALTER TABLE control_set_auth_field_metabib_field_map_blind_refs OWNER TO evergreen; + +-- +-- Name: VIEW control_set_auth_field_metabib_field_map_blind_refs; Type: COMMENT; Schema: authority; Owner: evergreen +-- + +COMMENT ON VIEW control_set_auth_field_metabib_field_map_blind_refs IS 'metabib fields for all auth fields that can''t be linked to other records'; + + +-- +-- Name: control_set_auth_field_metabib_field_map_blind_refs_only; Type: VIEW; Schema: authority; Owner: evergreen +-- + +CREATE VIEW control_set_auth_field_metabib_field_map_blind_refs_only AS + SELECT r.authority_field, + r.metabib_field + FROM (control_set_auth_field_metabib_field_map_refs_only r + JOIN control_set_authority_field a ON ((r.authority_field = a.id))) + WHERE (a.linking_subfield IS NULL); + + +ALTER TABLE control_set_auth_field_metabib_field_map_blind_refs_only OWNER TO evergreen; + +-- +-- Name: VIEW control_set_auth_field_metabib_field_map_blind_refs_only; Type: COMMENT; Schema: authority; Owner: evergreen +-- + +COMMENT ON VIEW control_set_auth_field_metabib_field_map_blind_refs_only IS 'metabib fields for NON-main entry auth fields that can''t be linked to other records'; + + +-- +-- Name: control_set_authority_field_id_seq; Type: SEQUENCE; Schema: authority; Owner: evergreen +-- + +CREATE SEQUENCE control_set_authority_field_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE control_set_authority_field_id_seq OWNER TO evergreen; + +-- +-- Name: control_set_authority_field_id_seq; Type: SEQUENCE OWNED BY; Schema: authority; Owner: evergreen +-- + +ALTER SEQUENCE control_set_authority_field_id_seq OWNED BY control_set_authority_field.id; + + +-- +-- Name: control_set_bib_field_id_seq; Type: SEQUENCE; Schema: authority; Owner: evergreen +-- + +CREATE SEQUENCE control_set_bib_field_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE control_set_bib_field_id_seq OWNER TO evergreen; + +-- +-- Name: control_set_bib_field_id_seq; Type: SEQUENCE OWNED BY; Schema: authority; Owner: evergreen +-- + +ALTER SEQUENCE control_set_bib_field_id_seq OWNED BY control_set_bib_field.id; + + +-- +-- Name: control_set_bib_field_metabib_field_map_id_seq; Type: SEQUENCE; Schema: authority; Owner: evergreen +-- + +CREATE SEQUENCE control_set_bib_field_metabib_field_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE control_set_bib_field_metabib_field_map_id_seq OWNER TO evergreen; + +-- +-- Name: control_set_bib_field_metabib_field_map_id_seq; Type: SEQUENCE OWNED BY; Schema: authority; Owner: evergreen +-- + +ALTER SEQUENCE control_set_bib_field_metabib_field_map_id_seq OWNED BY control_set_bib_field_metabib_field_map.id; + + +-- +-- Name: control_set_id_seq; Type: SEQUENCE; Schema: authority; Owner: evergreen +-- + +CREATE SEQUENCE control_set_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE control_set_id_seq OWNER TO evergreen; + +-- +-- Name: control_set_id_seq; Type: SEQUENCE OWNED BY; Schema: authority; Owner: evergreen +-- + +ALTER SEQUENCE control_set_id_seq OWNED BY control_set.id; + + +-- +-- Name: full_rec_id_seq; Type: SEQUENCE; Schema: authority; Owner: evergreen +-- + +CREATE SEQUENCE full_rec_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE full_rec_id_seq OWNER TO evergreen; + +-- +-- Name: full_rec_id_seq; Type: SEQUENCE OWNED BY; Schema: authority; Owner: evergreen +-- + +ALTER SEQUENCE full_rec_id_seq OWNED BY full_rec.id; + + +-- +-- Name: rec_descriptor; Type: TABLE; Schema: authority; Owner: evergreen +-- + +CREATE TABLE rec_descriptor ( + id bigint NOT NULL, + record bigint, + record_status text, + encoding_level text, + thesaurus text +); + + +ALTER TABLE rec_descriptor OWNER TO evergreen; + +-- +-- Name: rec_descriptor_id_seq; Type: SEQUENCE; Schema: authority; Owner: evergreen +-- + +CREATE SEQUENCE rec_descriptor_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE rec_descriptor_id_seq OWNER TO evergreen; + +-- +-- Name: rec_descriptor_id_seq; Type: SEQUENCE OWNED BY; Schema: authority; Owner: evergreen +-- + +ALTER SEQUENCE rec_descriptor_id_seq OWNED BY rec_descriptor.id; + + +-- +-- Name: record_entry; Type: TABLE; Schema: authority; Owner: evergreen +-- + +CREATE TABLE record_entry ( + id bigint NOT NULL, + create_date timestamp with time zone DEFAULT now() NOT NULL, + edit_date timestamp with time zone DEFAULT now() NOT NULL, + creator integer DEFAULT 1 NOT NULL, + editor integer DEFAULT 1 NOT NULL, + active boolean DEFAULT true NOT NULL, + deleted boolean DEFAULT false NOT NULL, + source integer, + control_set integer, + marc text NOT NULL, + last_xact_id text NOT NULL, + owner integer, + heading text, + simple_heading text +); + + +ALTER TABLE record_entry OWNER TO evergreen; + +-- +-- Name: record_entry_id_seq; Type: SEQUENCE; Schema: authority; Owner: evergreen +-- + +CREATE SEQUENCE record_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE record_entry_id_seq OWNER TO evergreen; + +-- +-- Name: record_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: authority; Owner: evergreen +-- + +ALTER SEQUENCE record_entry_id_seq OWNED BY record_entry.id; + + +-- +-- Name: record_note; Type: TABLE; Schema: authority; Owner: evergreen +-- + +CREATE TABLE record_note ( + id bigint NOT NULL, + record bigint NOT NULL, + value text NOT NULL, + creator integer DEFAULT 1 NOT NULL, + editor integer DEFAULT 1 NOT NULL, + create_date timestamp with time zone DEFAULT now() NOT NULL, + edit_date timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE record_note OWNER TO evergreen; + +-- +-- Name: record_note_id_seq; Type: SEQUENCE; Schema: authority; Owner: evergreen +-- + +CREATE SEQUENCE record_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE record_note_id_seq OWNER TO evergreen; + +-- +-- Name: record_note_id_seq; Type: SEQUENCE OWNED BY; Schema: authority; Owner: evergreen +-- + +ALTER SEQUENCE record_note_id_seq OWNED BY record_note.id; + + +-- +-- Name: simple_heading_id_seq; Type: SEQUENCE; Schema: authority; Owner: evergreen +-- + +CREATE SEQUENCE simple_heading_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE simple_heading_id_seq OWNER TO evergreen; + +-- +-- Name: simple_heading_id_seq; Type: SEQUENCE OWNED BY; Schema: authority; Owner: evergreen +-- + +ALTER SEQUENCE simple_heading_id_seq OWNED BY simple_heading.id; + + +-- +-- Name: thesaurus; Type: TABLE; Schema: authority; Owner: evergreen +-- + +CREATE TABLE thesaurus ( + code text NOT NULL, + control_set integer, + name text NOT NULL, + description text +); + + +ALTER TABLE thesaurus OWNER TO evergreen; + +-- +-- Name: tracing_links; Type: VIEW; Schema: authority; Owner: evergreen +-- + +CREATE VIEW tracing_links AS + SELECT main.record, + main.id AS main_id, + main.tag AS main_tag, + evergreen.oils_xpath_string((('//*[@tag="'::text || (main.tag)::text) || '"]/*[local-name()="subfield"]'::text), are.marc) AS main_value, + substr(link.value, 1, 1) AS relationship, + substr(link.value, 2, 1) AS use_restriction, + substr(link.value, 3, 1) AS deprecation, + substr(link.value, 4, 1) AS display_restriction, + link.id AS link_id, + link.tag AS link_tag, + evergreen.oils_xpath_string((('//*[@tag="'::text || (link.tag)::text) || '"]/*[local-name()="subfield"]'::text), are.marc) AS link_value, + are.heading AS normalized_main_value + FROM ((((full_rec main + JOIN record_entry are ON ((main.record = are.id))) + JOIN control_set_authority_field main_entry ON (((main_entry.tag = main.tag) AND (main_entry.main_entry IS NULL) AND (main.subfield = 'a'::text)))) + JOIN control_set_authority_field sub_entry ON ((main_entry.id = sub_entry.main_entry))) + JOIN full_rec link ON (((link.record = main.record) AND (link.tag = sub_entry.tag) AND (link.subfield = 'w'::text)))); + + +ALTER TABLE tracing_links OWNER TO evergreen; + +SET search_path = biblio, pg_catalog; + +-- +-- Name: autogen_tcn_value_seq; Type: SEQUENCE; Schema: biblio; Owner: evergreen +-- + +CREATE SEQUENCE autogen_tcn_value_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE autogen_tcn_value_seq OWNER TO evergreen; + +-- +-- Name: monograph_part; Type: TABLE; Schema: biblio; Owner: evergreen +-- + +CREATE TABLE monograph_part ( + id integer NOT NULL, + record bigint NOT NULL, + label text NOT NULL, + label_sortkey text NOT NULL, + deleted boolean DEFAULT false NOT NULL +); + + +ALTER TABLE monograph_part OWNER TO evergreen; + +-- +-- Name: monograph_part_id_seq; Type: SEQUENCE; Schema: biblio; Owner: evergreen +-- + +CREATE SEQUENCE monograph_part_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE monograph_part_id_seq OWNER TO evergreen; + +-- +-- Name: monograph_part_id_seq; Type: SEQUENCE OWNED BY; Schema: biblio; Owner: evergreen +-- + +ALTER SEQUENCE monograph_part_id_seq OWNED BY monograph_part.id; + + +-- +-- Name: peer_bib_copy_map; Type: TABLE; Schema: biblio; Owner: evergreen +-- + +CREATE TABLE peer_bib_copy_map ( + id integer NOT NULL, + peer_type integer NOT NULL, + peer_record bigint NOT NULL, + target_copy bigint NOT NULL +); + + +ALTER TABLE peer_bib_copy_map OWNER TO evergreen; + +-- +-- Name: peer_bib_copy_map_id_seq; Type: SEQUENCE; Schema: biblio; Owner: evergreen +-- + +CREATE SEQUENCE peer_bib_copy_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE peer_bib_copy_map_id_seq OWNER TO evergreen; + +-- +-- Name: peer_bib_copy_map_id_seq; Type: SEQUENCE OWNED BY; Schema: biblio; Owner: evergreen +-- + +ALTER SEQUENCE peer_bib_copy_map_id_seq OWNED BY peer_bib_copy_map.id; + + +-- +-- Name: peer_type; Type: TABLE; Schema: biblio; Owner: evergreen +-- + +CREATE TABLE peer_type ( + id integer NOT NULL, + name text NOT NULL +); + + +ALTER TABLE peer_type OWNER TO evergreen; + +-- +-- Name: peer_type_id_seq; Type: SEQUENCE; Schema: biblio; Owner: evergreen +-- + +CREATE SEQUENCE peer_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE peer_type_id_seq OWNER TO evergreen; + +-- +-- Name: peer_type_id_seq; Type: SEQUENCE OWNED BY; Schema: biblio; Owner: evergreen +-- + +ALTER SEQUENCE peer_type_id_seq OWNED BY peer_type.id; + + +-- +-- Name: record_entry_id_seq; Type: SEQUENCE; Schema: biblio; Owner: evergreen +-- + +CREATE SEQUENCE record_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE record_entry_id_seq OWNER TO evergreen; + +-- +-- Name: record_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: biblio; Owner: evergreen +-- + +ALTER SEQUENCE record_entry_id_seq OWNED BY record_entry.id; + + +-- +-- Name: record_note; Type: TABLE; Schema: biblio; Owner: evergreen +-- + +CREATE TABLE record_note ( + id bigint NOT NULL, + record bigint NOT NULL, + value text NOT NULL, + creator integer DEFAULT 1 NOT NULL, + editor integer DEFAULT 1 NOT NULL, + pub boolean DEFAULT false NOT NULL, + create_date timestamp with time zone DEFAULT now() NOT NULL, + edit_date timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE record_note OWNER TO evergreen; + +-- +-- Name: record_note_id_seq; Type: SEQUENCE; Schema: biblio; Owner: evergreen +-- + +CREATE SEQUENCE record_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE record_note_id_seq OWNER TO evergreen; + +-- +-- Name: record_note_id_seq; Type: SEQUENCE OWNED BY; Schema: biblio; Owner: evergreen +-- + +ALTER SEQUENCE record_note_id_seq OWNED BY record_note.id; + + +SET search_path = booking, pg_catalog; + +-- +-- Name: reservation; Type: TABLE; Schema: booking; Owner: evergreen +-- + +CREATE TABLE reservation ( + request_time timestamp with time zone DEFAULT now() NOT NULL, + start_time timestamp with time zone, + end_time timestamp with time zone, + capture_time timestamp with time zone, + cancel_time timestamp with time zone, + pickup_time timestamp with time zone, + return_time timestamp with time zone, + booking_interval interval, + fine_interval interval, + fine_amount numeric(8,2), + max_fine numeric(8,2), + target_resource_type integer NOT NULL, + target_resource integer, + current_resource integer, + request_lib integer NOT NULL, + pickup_lib integer, + capture_staff integer, + email_notify boolean DEFAULT false NOT NULL +) +INHERITS (money.billable_xact); + + +ALTER TABLE reservation OWNER TO evergreen; + +-- +-- Name: reservation_attr_value_map; Type: TABLE; Schema: booking; Owner: evergreen +-- + +CREATE TABLE reservation_attr_value_map ( + id integer NOT NULL, + reservation integer NOT NULL, + attr_value integer NOT NULL +); + + +ALTER TABLE reservation_attr_value_map OWNER TO evergreen; + +-- +-- Name: reservation_attr_value_map_id_seq; Type: SEQUENCE; Schema: booking; Owner: evergreen +-- + +CREATE SEQUENCE reservation_attr_value_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE reservation_attr_value_map_id_seq OWNER TO evergreen; + +-- +-- Name: reservation_attr_value_map_id_seq; Type: SEQUENCE OWNED BY; Schema: booking; Owner: evergreen +-- + +ALTER SEQUENCE reservation_attr_value_map_id_seq OWNED BY reservation_attr_value_map.id; + + +-- +-- Name: resource; Type: TABLE; Schema: booking; Owner: evergreen +-- + +CREATE TABLE resource ( + id integer NOT NULL, + owner integer NOT NULL, + type integer NOT NULL, + overbook boolean DEFAULT false NOT NULL, + barcode text NOT NULL, + deposit boolean DEFAULT false NOT NULL, + deposit_amount numeric(8,2) DEFAULT 0.00 NOT NULL, + user_fee numeric(8,2) DEFAULT 0.00 NOT NULL +); + + +ALTER TABLE resource OWNER TO evergreen; + +-- +-- Name: resource_attr; Type: TABLE; Schema: booking; Owner: evergreen +-- + +CREATE TABLE resource_attr ( + id integer NOT NULL, + owner integer NOT NULL, + name text NOT NULL, + resource_type integer NOT NULL, + required boolean DEFAULT false NOT NULL +); + + +ALTER TABLE resource_attr OWNER TO evergreen; + +-- +-- Name: resource_attr_id_seq; Type: SEQUENCE; Schema: booking; Owner: evergreen +-- + +CREATE SEQUENCE resource_attr_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE resource_attr_id_seq OWNER TO evergreen; + +-- +-- Name: resource_attr_id_seq; Type: SEQUENCE OWNED BY; Schema: booking; Owner: evergreen +-- + +ALTER SEQUENCE resource_attr_id_seq OWNED BY resource_attr.id; + + +-- +-- Name: resource_attr_map; Type: TABLE; Schema: booking; Owner: evergreen +-- + +CREATE TABLE resource_attr_map ( + id integer NOT NULL, + resource integer NOT NULL, + resource_attr integer NOT NULL, + value integer NOT NULL +); + + +ALTER TABLE resource_attr_map OWNER TO evergreen; + +-- +-- Name: resource_attr_map_id_seq; Type: SEQUENCE; Schema: booking; Owner: evergreen +-- + +CREATE SEQUENCE resource_attr_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE resource_attr_map_id_seq OWNER TO evergreen; + +-- +-- Name: resource_attr_map_id_seq; Type: SEQUENCE OWNED BY; Schema: booking; Owner: evergreen +-- + +ALTER SEQUENCE resource_attr_map_id_seq OWNED BY resource_attr_map.id; + + +-- +-- Name: resource_attr_value; Type: TABLE; Schema: booking; Owner: evergreen +-- + +CREATE TABLE resource_attr_value ( + id integer NOT NULL, + owner integer NOT NULL, + attr integer NOT NULL, + valid_value text NOT NULL +); + + +ALTER TABLE resource_attr_value OWNER TO evergreen; + +-- +-- Name: resource_attr_value_id_seq; Type: SEQUENCE; Schema: booking; Owner: evergreen +-- + +CREATE SEQUENCE resource_attr_value_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE resource_attr_value_id_seq OWNER TO evergreen; + +-- +-- Name: resource_attr_value_id_seq; Type: SEQUENCE OWNED BY; Schema: booking; Owner: evergreen +-- + +ALTER SEQUENCE resource_attr_value_id_seq OWNED BY resource_attr_value.id; + + +-- +-- Name: resource_id_seq; Type: SEQUENCE; Schema: booking; Owner: evergreen +-- + +CREATE SEQUENCE resource_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE resource_id_seq OWNER TO evergreen; + +-- +-- Name: resource_id_seq; Type: SEQUENCE OWNED BY; Schema: booking; Owner: evergreen +-- + +ALTER SEQUENCE resource_id_seq OWNED BY resource.id; + + +-- +-- Name: resource_type; Type: TABLE; Schema: booking; Owner: evergreen +-- + +CREATE TABLE resource_type ( + id integer NOT NULL, + name text NOT NULL, + elbow_room interval, + fine_interval interval, + fine_amount numeric(8,2) DEFAULT 0 NOT NULL, + max_fine numeric(8,2), + owner integer NOT NULL, + catalog_item boolean DEFAULT false NOT NULL, + transferable boolean DEFAULT false NOT NULL, + record bigint +); + + +ALTER TABLE resource_type OWNER TO evergreen; + +-- +-- Name: resource_type_id_seq; Type: SEQUENCE; Schema: booking; Owner: evergreen +-- + +CREATE SEQUENCE resource_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE resource_type_id_seq OWNER TO evergreen; + +-- +-- Name: resource_type_id_seq; Type: SEQUENCE OWNED BY; Schema: booking; Owner: evergreen +-- + +ALTER SEQUENCE resource_type_id_seq OWNED BY resource_type.id; + + +SET search_path = config, pg_catalog; + +-- +-- Name: coded_value_map; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE coded_value_map ( + id integer NOT NULL, + ctype text NOT NULL, + code text NOT NULL, + value text NOT NULL, + description text, + opac_visible boolean DEFAULT true NOT NULL, + search_label text, + is_simple boolean DEFAULT false NOT NULL, + concept_uri text +); + + +ALTER TABLE coded_value_map OWNER TO evergreen; + +-- +-- Name: audience_map; Type: VIEW; Schema: config; Owner: evergreen +-- + +CREATE VIEW audience_map AS + SELECT coded_value_map.code, + coded_value_map.value, + coded_value_map.description + FROM coded_value_map + WHERE (coded_value_map.ctype = 'audience'::text); + + +ALTER TABLE audience_map OWNER TO evergreen; + +-- +-- Name: barcode_completion; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE barcode_completion ( + id integer NOT NULL, + active boolean DEFAULT true NOT NULL, + org_unit integer NOT NULL, + prefix text, + suffix text, + length integer DEFAULT 0 NOT NULL, + padding text, + padding_end boolean DEFAULT false NOT NULL, + asset boolean DEFAULT true NOT NULL, + actor boolean DEFAULT true NOT NULL +); + + +ALTER TABLE barcode_completion OWNER TO evergreen; + +-- +-- Name: barcode_completion_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE barcode_completion_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE barcode_completion_id_seq OWNER TO evergreen; + +-- +-- Name: barcode_completion_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE barcode_completion_id_seq OWNED BY barcode_completion.id; + + +-- +-- Name: best_hold_order; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE best_hold_order ( + id integer NOT NULL, + name text, + pprox integer, + hprox integer, + aprox integer, + approx integer, + priority integer, + cut integer, + depth integer, + htime integer, + rtime integer, + shtime integer, + CONSTRAINT best_hold_order_check CHECK (((pprox IS NOT NULL) OR (hprox IS NOT NULL) OR (aprox IS NOT NULL) OR (priority IS NOT NULL) OR (cut IS NOT NULL) OR (depth IS NOT NULL) OR (htime IS NOT NULL) OR (rtime IS NOT NULL))) +); + + +ALTER TABLE best_hold_order OWNER TO evergreen; + +-- +-- Name: best_hold_order_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE best_hold_order_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE best_hold_order_id_seq OWNER TO evergreen; + +-- +-- Name: best_hold_order_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE best_hold_order_id_seq OWNED BY best_hold_order.id; + + +-- +-- Name: bib_level_map; Type: VIEW; Schema: config; Owner: evergreen +-- + +CREATE VIEW bib_level_map AS + SELECT coded_value_map.code, + coded_value_map.value + FROM coded_value_map + WHERE (coded_value_map.ctype = 'bib_level'::text); + + +ALTER TABLE bib_level_map OWNER TO evergreen; + +-- +-- Name: bib_source; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE bib_source ( + id integer NOT NULL, + quality integer, + source text NOT NULL, + transcendant boolean DEFAULT false NOT NULL, + can_have_copies boolean DEFAULT true NOT NULL, + CONSTRAINT bib_source_quality_check CHECK (((quality >= 0) AND (quality <= 100))) +); + + +ALTER TABLE bib_source OWNER TO evergreen; + +-- +-- Name: TABLE bib_source; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE bib_source IS ' +This is table is used to set up the relative "quality" of each +MARC source, such as OCLC. Also identifies "transcendant" sources, +i.e., sources of bib records that should display in the OPAC +even if no copies or located URIs are attached. Also indicates if +the source is allowed to have actual copies on its bibs. Volumes +for targeted URIs are unaffected by this setting. +'; + + +-- +-- Name: bib_source_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE bib_source_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE bib_source_id_seq OWNER TO evergreen; + +-- +-- Name: bib_source_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE bib_source_id_seq OWNED BY bib_source.id; + + +-- +-- Name: biblio_fingerprint; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE biblio_fingerprint ( + id integer NOT NULL, + name text NOT NULL, + xpath text NOT NULL, + first_word boolean DEFAULT false NOT NULL, + format text DEFAULT 'marcxml'::text NOT NULL +); + + +ALTER TABLE biblio_fingerprint OWNER TO evergreen; + +-- +-- Name: biblio_fingerprint_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE biblio_fingerprint_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE biblio_fingerprint_id_seq OWNER TO evergreen; + +-- +-- Name: biblio_fingerprint_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE biblio_fingerprint_id_seq OWNED BY biblio_fingerprint.id; + + +-- +-- Name: billing_type; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE billing_type ( + id integer NOT NULL, + name text NOT NULL, + owner integer NOT NULL, + default_price numeric(6,2) +); + + +ALTER TABLE billing_type OWNER TO evergreen; + +-- +-- Name: billing_type_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE billing_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE billing_type_id_seq OWNER TO evergreen; + +-- +-- Name: billing_type_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE billing_type_id_seq OWNED BY billing_type.id; + + +-- +-- Name: circ_limit_group; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE circ_limit_group ( + id integer NOT NULL, + name text NOT NULL, + description text +); + + +ALTER TABLE circ_limit_group OWNER TO evergreen; + +-- +-- Name: circ_limit_group_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE circ_limit_group_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE circ_limit_group_id_seq OWNER TO evergreen; + +-- +-- Name: circ_limit_group_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE circ_limit_group_id_seq OWNED BY circ_limit_group.id; + + +-- +-- Name: circ_limit_set; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE circ_limit_set ( + id integer NOT NULL, + name text NOT NULL, + owning_lib integer NOT NULL, + items_out integer NOT NULL, + depth integer DEFAULT 0 NOT NULL, + global boolean DEFAULT false NOT NULL, + description text +); + + +ALTER TABLE circ_limit_set OWNER TO evergreen; + +-- +-- Name: circ_limit_set_circ_mod_map; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE circ_limit_set_circ_mod_map ( + id integer NOT NULL, + limit_set integer NOT NULL, + circ_mod text NOT NULL +); + + +ALTER TABLE circ_limit_set_circ_mod_map OWNER TO evergreen; + +-- +-- Name: circ_limit_set_circ_mod_map_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE circ_limit_set_circ_mod_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE circ_limit_set_circ_mod_map_id_seq OWNER TO evergreen; + +-- +-- Name: circ_limit_set_circ_mod_map_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE circ_limit_set_circ_mod_map_id_seq OWNED BY circ_limit_set_circ_mod_map.id; + + +-- +-- Name: circ_limit_set_copy_loc_map; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE circ_limit_set_copy_loc_map ( + id integer NOT NULL, + limit_set integer NOT NULL, + copy_loc integer NOT NULL +); + + +ALTER TABLE circ_limit_set_copy_loc_map OWNER TO evergreen; + +-- +-- Name: circ_limit_set_copy_loc_map_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE circ_limit_set_copy_loc_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE circ_limit_set_copy_loc_map_id_seq OWNER TO evergreen; + +-- +-- Name: circ_limit_set_copy_loc_map_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE circ_limit_set_copy_loc_map_id_seq OWNED BY circ_limit_set_copy_loc_map.id; + + +-- +-- Name: circ_limit_set_group_map; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE circ_limit_set_group_map ( + id integer NOT NULL, + limit_set integer NOT NULL, + limit_group integer NOT NULL, + check_only boolean DEFAULT false NOT NULL +); + + +ALTER TABLE circ_limit_set_group_map OWNER TO evergreen; + +-- +-- Name: circ_limit_set_group_map_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE circ_limit_set_group_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE circ_limit_set_group_map_id_seq OWNER TO evergreen; + +-- +-- Name: circ_limit_set_group_map_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE circ_limit_set_group_map_id_seq OWNED BY circ_limit_set_group_map.id; + + +-- +-- Name: circ_limit_set_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE circ_limit_set_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE circ_limit_set_id_seq OWNER TO evergreen; + +-- +-- Name: circ_limit_set_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE circ_limit_set_id_seq OWNED BY circ_limit_set.id; + + +-- +-- Name: circ_matrix_limit_set_map; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE circ_matrix_limit_set_map ( + id integer NOT NULL, + matchpoint integer NOT NULL, + limit_set integer NOT NULL, + fallthrough boolean DEFAULT false NOT NULL, + active boolean DEFAULT true NOT NULL +); + + +ALTER TABLE circ_matrix_limit_set_map OWNER TO evergreen; + +-- +-- Name: circ_matrix_limit_set_map_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE circ_matrix_limit_set_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE circ_matrix_limit_set_map_id_seq OWNER TO evergreen; + +-- +-- Name: circ_matrix_limit_set_map_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE circ_matrix_limit_set_map_id_seq OWNED BY circ_matrix_limit_set_map.id; + + +-- +-- Name: circ_matrix_matchpoint_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE circ_matrix_matchpoint_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE circ_matrix_matchpoint_id_seq OWNER TO evergreen; + +-- +-- Name: circ_matrix_matchpoint_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE circ_matrix_matchpoint_id_seq OWNED BY circ_matrix_matchpoint.id; + + +-- +-- Name: circ_matrix_weights; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE circ_matrix_weights ( + id integer NOT NULL, + name text NOT NULL, + org_unit numeric(6,2) NOT NULL, + grp numeric(6,2) NOT NULL, + circ_modifier numeric(6,2) NOT NULL, + copy_location numeric(6,2) NOT NULL, + marc_type numeric(6,2) NOT NULL, + marc_form numeric(6,2) NOT NULL, + marc_bib_level numeric(6,2) NOT NULL, + marc_vr_format numeric(6,2) NOT NULL, + copy_circ_lib numeric(6,2) NOT NULL, + copy_owning_lib numeric(6,2) NOT NULL, + user_home_ou numeric(6,2) NOT NULL, + ref_flag numeric(6,2) NOT NULL, + juvenile_flag numeric(6,2) NOT NULL, + is_renewal numeric(6,2) NOT NULL, + usr_age_lower_bound numeric(6,2) NOT NULL, + usr_age_upper_bound numeric(6,2) NOT NULL, + item_age numeric(6,2) NOT NULL +); + + +ALTER TABLE circ_matrix_weights OWNER TO evergreen; + +-- +-- Name: circ_matrix_weights_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE circ_matrix_weights_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE circ_matrix_weights_id_seq OWNER TO evergreen; + +-- +-- Name: circ_matrix_weights_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE circ_matrix_weights_id_seq OWNED BY circ_matrix_weights.id; + + +-- +-- Name: circ_modifier; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE circ_modifier ( + code text NOT NULL, + name text NOT NULL, + description text NOT NULL, + sip2_media_type text NOT NULL, + magnetic_media boolean DEFAULT true NOT NULL, + avg_wait_time interval +); + + +ALTER TABLE circ_modifier OWNER TO evergreen; + +-- +-- Name: coded_value_map_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE coded_value_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE coded_value_map_id_seq OWNER TO evergreen; + +-- +-- Name: coded_value_map_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE coded_value_map_id_seq OWNED BY coded_value_map.id; + + +-- +-- Name: composite_attr_entry_definition; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE composite_attr_entry_definition ( + coded_value integer NOT NULL, + definition text NOT NULL +); + + +ALTER TABLE composite_attr_entry_definition OWNER TO evergreen; + +-- +-- Name: copy_status; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE copy_status ( + id integer NOT NULL, + name text NOT NULL, + holdable boolean DEFAULT false NOT NULL, + opac_visible boolean DEFAULT false NOT NULL, + copy_active boolean DEFAULT false NOT NULL, + restrict_copy_delete boolean DEFAULT false NOT NULL +); + + +ALTER TABLE copy_status OWNER TO evergreen; + +-- +-- Name: TABLE copy_status; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE copy_status IS ' +Copy Statuses + +The available copy statuses, and whether a copy in that +status is available for hold request capture. 0 (zero) is +the only special number in this set, meaning that the item +is available for immediate checkout, and is counted as available +in the OPAC. + +Statuses with an ID below 100 are not removable, and have special +meaning in the code. Do not change them except to translate the +textual name. + +You may add and remove statuses above 100, and these can be used +to remove items from normal circulation without affecting the rest +of the copy''s values or its location. +'; + + +-- +-- Name: copy_status_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE copy_status_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE copy_status_id_seq OWNER TO evergreen; + +-- +-- Name: copy_status_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE copy_status_id_seq OWNED BY copy_status.id; + + +-- +-- Name: db_patch_dependencies; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE db_patch_dependencies ( + db_patch text NOT NULL, + supersedes text[], + deprecates text[] +); + + +ALTER TABLE db_patch_dependencies OWNER TO evergreen; + +-- +-- Name: filter_dialog_filter_set; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE filter_dialog_filter_set ( + id integer NOT NULL, + name text NOT NULL, + owning_lib integer NOT NULL, + creator integer NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL, + interface text NOT NULL, + filters text NOT NULL, + CONSTRAINT config_filter_dialog_filter_set_filters_check CHECK (evergreen.is_json(filters)) +); + + +ALTER TABLE filter_dialog_filter_set OWNER TO evergreen; + +-- +-- Name: filter_dialog_filter_set_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE filter_dialog_filter_set_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE filter_dialog_filter_set_id_seq OWNER TO evergreen; + +-- +-- Name: filter_dialog_filter_set_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE filter_dialog_filter_set_id_seq OWNED BY filter_dialog_filter_set.id; + + +-- +-- Name: filter_dialog_interface; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE filter_dialog_interface ( + key text NOT NULL, + description text +); + + +ALTER TABLE filter_dialog_interface OWNER TO evergreen; + +-- +-- Name: floating_group; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE floating_group ( + id integer NOT NULL, + name text NOT NULL, + manual boolean DEFAULT false NOT NULL +); + + +ALTER TABLE floating_group OWNER TO evergreen; + +-- +-- Name: floating_group_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE floating_group_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE floating_group_id_seq OWNER TO evergreen; + +-- +-- Name: floating_group_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE floating_group_id_seq OWNED BY floating_group.id; + + +-- +-- Name: floating_group_member; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE floating_group_member ( + id integer NOT NULL, + floating_group integer NOT NULL, + org_unit integer NOT NULL, + stop_depth integer DEFAULT 0 NOT NULL, + max_depth integer, + exclude boolean DEFAULT false NOT NULL +); + + +ALTER TABLE floating_group_member OWNER TO evergreen; + +-- +-- Name: floating_group_member_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE floating_group_member_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE floating_group_member_id_seq OWNER TO evergreen; + +-- +-- Name: floating_group_member_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE floating_group_member_id_seq OWNED BY floating_group_member.id; + + +-- +-- Name: internal_flag; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE internal_flag ( + name text NOT NULL, + value text, + enabled boolean DEFAULT false NOT NULL +); + + +ALTER TABLE internal_flag OWNER TO evergreen; + +-- +-- Name: global_flag; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE global_flag ( + label text NOT NULL +) +INHERITS (internal_flag); + + +ALTER TABLE global_flag OWNER TO evergreen; + +-- +-- Name: hard_due_date; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE hard_due_date ( + id integer NOT NULL, + name text NOT NULL, + ceiling_date timestamp with time zone NOT NULL, + forceto boolean NOT NULL, + owner integer NOT NULL +); + + +ALTER TABLE hard_due_date OWNER TO evergreen; + +-- +-- Name: hard_due_date_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE hard_due_date_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE hard_due_date_id_seq OWNER TO evergreen; + +-- +-- Name: hard_due_date_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE hard_due_date_id_seq OWNED BY hard_due_date.id; + + +-- +-- Name: hard_due_date_values; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE hard_due_date_values ( + id integer NOT NULL, + hard_due_date integer NOT NULL, + ceiling_date timestamp with time zone NOT NULL, + active_date timestamp with time zone NOT NULL +); + + +ALTER TABLE hard_due_date_values OWNER TO evergreen; + +-- +-- Name: hard_due_date_values_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE hard_due_date_values_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE hard_due_date_values_id_seq OWNER TO evergreen; + +-- +-- Name: hard_due_date_values_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE hard_due_date_values_id_seq OWNED BY hard_due_date_values.id; + + +-- +-- Name: hold_matrix_matchpoint; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE hold_matrix_matchpoint ( + id integer NOT NULL, + active boolean DEFAULT true NOT NULL, + strict_ou_match boolean DEFAULT false NOT NULL, + user_home_ou integer, + request_ou integer, + pickup_ou integer, + item_owning_ou integer, + item_circ_ou integer, + usr_grp integer, + requestor_grp integer NOT NULL, + circ_modifier text, + marc_type text, + marc_form text, + marc_bib_level text, + marc_vr_format text, + juvenile_flag boolean, + ref_flag boolean, + item_age interval, + holdable boolean DEFAULT true NOT NULL, + distance_is_from_owner boolean DEFAULT false NOT NULL, + transit_range integer, + max_holds integer, + include_frozen_holds boolean DEFAULT true NOT NULL, + stop_blocked_user boolean DEFAULT false NOT NULL, + age_hold_protect_rule integer +); + + +ALTER TABLE hold_matrix_matchpoint OWNER TO evergreen; + +-- +-- Name: hold_matrix_matchpoint_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE hold_matrix_matchpoint_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE hold_matrix_matchpoint_id_seq OWNER TO evergreen; + +-- +-- Name: hold_matrix_matchpoint_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE hold_matrix_matchpoint_id_seq OWNED BY hold_matrix_matchpoint.id; + + +-- +-- Name: hold_matrix_weights; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE hold_matrix_weights ( + id integer NOT NULL, + name text NOT NULL, + user_home_ou numeric(6,2) NOT NULL, + request_ou numeric(6,2) NOT NULL, + pickup_ou numeric(6,2) NOT NULL, + item_owning_ou numeric(6,2) NOT NULL, + item_circ_ou numeric(6,2) NOT NULL, + usr_grp numeric(6,2) NOT NULL, + requestor_grp numeric(6,2) NOT NULL, + circ_modifier numeric(6,2) NOT NULL, + marc_type numeric(6,2) NOT NULL, + marc_form numeric(6,2) NOT NULL, + marc_bib_level numeric(6,2) NOT NULL, + marc_vr_format numeric(6,2) NOT NULL, + juvenile_flag numeric(6,2) NOT NULL, + ref_flag numeric(6,2) NOT NULL, + item_age numeric(6,2) NOT NULL +); + + +ALTER TABLE hold_matrix_weights OWNER TO evergreen; + +-- +-- Name: hold_matrix_weights_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE hold_matrix_weights_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE hold_matrix_weights_id_seq OWNER TO evergreen; + +-- +-- Name: hold_matrix_weights_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE hold_matrix_weights_id_seq OWNED BY hold_matrix_weights.id; + + +-- +-- Name: i18n_core; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE i18n_core ( + id bigint NOT NULL, + fq_field text NOT NULL, + identity_value text NOT NULL, + translation text NOT NULL, + string text NOT NULL +); + + +ALTER TABLE i18n_core OWNER TO evergreen; + +-- +-- Name: i18n_core_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE i18n_core_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE i18n_core_id_seq OWNER TO evergreen; + +-- +-- Name: i18n_core_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE i18n_core_id_seq OWNED BY i18n_core.id; + + +-- +-- Name: i18n_locale; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE i18n_locale ( + code text NOT NULL, + marc_code text NOT NULL, + name text NOT NULL, + description text +); + + +ALTER TABLE i18n_locale OWNER TO evergreen; + +-- +-- Name: identification_type; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE identification_type ( + id integer NOT NULL, + name text NOT NULL +); + + +ALTER TABLE identification_type OWNER TO evergreen; + +-- +-- Name: TABLE identification_type; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE identification_type IS ' +Types of valid patron identification. + +Each patron must display at least one valid form of identification +in order to get a library card. This table lists those forms. +'; + + +-- +-- Name: identification_type_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE identification_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE identification_type_id_seq OWNER TO evergreen; + +-- +-- Name: identification_type_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE identification_type_id_seq OWNED BY identification_type.id; + + +-- +-- Name: idl_field_doc; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE idl_field_doc ( + id bigint NOT NULL, + fm_class text NOT NULL, + field text NOT NULL, + owner integer NOT NULL, + string text NOT NULL +); + + +ALTER TABLE idl_field_doc OWNER TO evergreen; + +-- +-- Name: idl_field_doc_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE idl_field_doc_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE idl_field_doc_id_seq OWNER TO evergreen; + +-- +-- Name: idl_field_doc_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE idl_field_doc_id_seq OWNED BY idl_field_doc.id; + + +-- +-- Name: index_normalizer; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE index_normalizer ( + id integer NOT NULL, + name text NOT NULL, + description text, + func text NOT NULL, + param_count integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE index_normalizer OWNER TO evergreen; + +-- +-- Name: index_normalizer_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE index_normalizer_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE index_normalizer_id_seq OWNER TO evergreen; + +-- +-- Name: index_normalizer_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE index_normalizer_id_seq OWNED BY index_normalizer.id; + + +-- +-- Name: item_form_map; Type: VIEW; Schema: config; Owner: evergreen +-- + +CREATE VIEW item_form_map AS + SELECT coded_value_map.code, + coded_value_map.value + FROM coded_value_map + WHERE (coded_value_map.ctype = 'item_form'::text); + + +ALTER TABLE item_form_map OWNER TO evergreen; + +-- +-- Name: item_type_map; Type: VIEW; Schema: config; Owner: evergreen +-- + +CREATE VIEW item_type_map AS + SELECT coded_value_map.code, + coded_value_map.value + FROM coded_value_map + WHERE (coded_value_map.ctype = 'item_type'::text); + + +ALTER TABLE item_type_map OWNER TO evergreen; + +-- +-- Name: language_map; Type: VIEW; Schema: config; Owner: evergreen +-- + +CREATE VIEW language_map AS + SELECT coded_value_map.code, + coded_value_map.value + FROM coded_value_map + WHERE (coded_value_map.ctype = 'item_lang'::text); + + +ALTER TABLE language_map OWNER TO evergreen; + +-- +-- Name: lit_form_map; Type: VIEW; Schema: config; Owner: evergreen +-- + +CREATE VIEW lit_form_map AS + SELECT coded_value_map.code, + coded_value_map.value, + coded_value_map.description + FROM coded_value_map + WHERE (coded_value_map.ctype = 'lit_form'::text); + + +ALTER TABLE lit_form_map OWNER TO evergreen; + +-- +-- Name: marc21_ff_pos_map; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE marc21_ff_pos_map ( + id integer NOT NULL, + fixed_field text NOT NULL, + tag text NOT NULL, + rec_type text NOT NULL, + start_pos integer NOT NULL, + length integer NOT NULL, + default_val text DEFAULT ' '::text NOT NULL +); + + +ALTER TABLE marc21_ff_pos_map OWNER TO evergreen; + +-- +-- Name: marc21_ff_pos_map_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE marc21_ff_pos_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE marc21_ff_pos_map_id_seq OWNER TO evergreen; + +-- +-- Name: marc21_ff_pos_map_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE marc21_ff_pos_map_id_seq OWNED BY marc21_ff_pos_map.id; + + +-- +-- Name: marc21_physical_characteristic_subfield_map; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE marc21_physical_characteristic_subfield_map ( + id integer NOT NULL, + ptype_key text NOT NULL, + subfield text NOT NULL, + start_pos integer NOT NULL, + length integer NOT NULL, + label text NOT NULL +); + + +ALTER TABLE marc21_physical_characteristic_subfield_map OWNER TO evergreen; + +-- +-- Name: marc21_physical_characteristic_subfield_map_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE marc21_physical_characteristic_subfield_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE marc21_physical_characteristic_subfield_map_id_seq OWNER TO evergreen; + +-- +-- Name: marc21_physical_characteristic_subfield_map_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE marc21_physical_characteristic_subfield_map_id_seq OWNED BY marc21_physical_characteristic_subfield_map.id; + + +-- +-- Name: marc21_physical_characteristic_type_map; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE marc21_physical_characteristic_type_map ( + ptype_key text NOT NULL, + label text NOT NULL +); + + +ALTER TABLE marc21_physical_characteristic_type_map OWNER TO evergreen; + +-- +-- Name: marc21_physical_characteristic_value_map; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE marc21_physical_characteristic_value_map ( + id integer NOT NULL, + value text NOT NULL, + ptype_subfield integer NOT NULL, + label text NOT NULL +); + + +ALTER TABLE marc21_physical_characteristic_value_map OWNER TO evergreen; + +-- +-- Name: marc21_physical_characteristic_value_map_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE marc21_physical_characteristic_value_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE marc21_physical_characteristic_value_map_id_seq OWNER TO evergreen; + +-- +-- Name: marc21_physical_characteristic_value_map_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE marc21_physical_characteristic_value_map_id_seq OWNED BY marc21_physical_characteristic_value_map.id; + + +-- +-- Name: marc_field_for_ou; Type: VIEW; Schema: config; Owner: evergreen +-- + +CREATE VIEW marc_field_for_ou AS + WITH RECURSIVE ou_marc_fields(id, marc_format, marc_record_type, tag, name, description, fixed_field, repeatable, mandatory, hidden, owner, depth) AS ( + SELECT marc_field.id, + marc_field.marc_format, + marc_field.marc_record_type, + marc_field.tag, + marc_field.name, + marc_field.description, + marc_field.fixed_field, + marc_field.repeatable, + marc_field.mandatory, + marc_field.hidden, + marc_field.owner, + 0 + FROM marc_field + WHERE (marc_field.owner IS NULL) + UNION + SELECT marc_field.id, + marc_field.marc_format, + marc_field.marc_record_type, + marc_field.tag, + marc_field.name, + marc_field.description, + marc_field.fixed_field, + marc_field.repeatable, + marc_field.mandatory, + marc_field.hidden, + marc_field.owner, + 0 + FROM marc_field + WHERE (NOT (ARRAY[(marc_field.marc_format)::text, (marc_field.marc_record_type)::text, (marc_field.tag)::text] IN ( SELECT ARRAY[(marc_field_1.marc_format)::text, (marc_field_1.marc_record_type)::text, (marc_field_1.tag)::text] AS "array" + FROM marc_field marc_field_1 + WHERE (marc_field_1.owner IS NULL)))) + UNION + SELECT c.id, + c.marc_format, + c.marc_record_type, + c.tag, + COALESCE(c.name, p.name) AS "coalesce", + COALESCE(c.description, p.description) AS "coalesce", + COALESCE(c.fixed_field, p.fixed_field) AS "coalesce", + COALESCE(c.repeatable, p.repeatable) AS "coalesce", + COALESCE(c.mandatory, p.mandatory) AS "coalesce", + COALESCE(c.hidden, p.hidden) AS "coalesce", + c.owner, + (p.depth + 1) + FROM ((marc_field c + JOIN ou_marc_fields p USING (marc_format, marc_record_type, tag)) + JOIN actor.org_unit aou ON ((c.owner = aou.id))) + WHERE ((aou.parent_ou = p.owner) OR ((aou.parent_ou IS NULL) AND (p.owner IS NULL))) + ) + SELECT ou_marc_fields.id, + ou_marc_fields.marc_format, + ou_marc_fields.marc_record_type, + ou_marc_fields.tag, + ou_marc_fields.name, + ou_marc_fields.description, + ou_marc_fields.fixed_field, + ou_marc_fields.repeatable, + ou_marc_fields.mandatory, + ou_marc_fields.hidden, + ou_marc_fields.owner, + ou_marc_fields.depth + FROM ou_marc_fields; + + +ALTER TABLE marc_field_for_ou OWNER TO evergreen; + +-- +-- Name: marc_field_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE marc_field_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE marc_field_id_seq OWNER TO evergreen; + +-- +-- Name: marc_field_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE marc_field_id_seq OWNED BY marc_field.id; + + +-- +-- Name: marc_format; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE marc_format ( + id integer NOT NULL, + code text NOT NULL, + name text NOT NULL +); + + +ALTER TABLE marc_format OWNER TO evergreen; + +-- +-- Name: TABLE marc_format; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE marc_format IS ' +List of MARC formats supported by this Evergreen +database. This exists primarily as a hook for future +support of UNIMARC, though whether that will ever +happen remains to be seen. +'; + + +-- +-- Name: marc_format_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE marc_format_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE marc_format_id_seq OWNER TO evergreen; + +-- +-- Name: marc_format_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE marc_format_id_seq OWNED BY marc_format.id; + + +-- +-- Name: marc_subfield_for_ou; Type: VIEW; Schema: config; Owner: evergreen +-- + +CREATE VIEW marc_subfield_for_ou AS + WITH RECURSIVE ou_marc_subfields(id, marc_format, marc_record_type, tag, code, description, repeatable, mandatory, hidden, value_ctype, owner, depth) AS ( + SELECT marc_subfield.id, + marc_subfield.marc_format, + marc_subfield.marc_record_type, + marc_subfield.tag, + marc_subfield.code, + marc_subfield.description, + marc_subfield.repeatable, + marc_subfield.mandatory, + marc_subfield.hidden, + marc_subfield.value_ctype, + marc_subfield.owner, + 0 + FROM marc_subfield + WHERE (marc_subfield.owner IS NULL) + UNION + SELECT marc_subfield.id, + marc_subfield.marc_format, + marc_subfield.marc_record_type, + marc_subfield.tag, + marc_subfield.code, + marc_subfield.description, + marc_subfield.repeatable, + marc_subfield.mandatory, + marc_subfield.hidden, + marc_subfield.value_ctype, + marc_subfield.owner, + 0 + FROM marc_subfield + WHERE (NOT (ARRAY[(marc_subfield.marc_format)::text, (marc_subfield.marc_record_type)::text, (marc_subfield.tag)::text, (marc_subfield.code)::text] IN ( SELECT ARRAY[(marc_subfield_1.marc_format)::text, (marc_subfield_1.marc_record_type)::text, (marc_subfield_1.tag)::text, (marc_subfield_1.code)::text] AS "array" + FROM marc_subfield marc_subfield_1 + WHERE (marc_subfield_1.owner IS NULL)))) + UNION + SELECT c.id, + c.marc_format, + c.marc_record_type, + c.tag, + c.code, + COALESCE(c.description, p.description) AS "coalesce", + COALESCE(c.repeatable, p.repeatable) AS "coalesce", + COALESCE(c.mandatory, p.mandatory) AS "coalesce", + COALESCE(c.hidden, p.hidden) AS "coalesce", + COALESCE(c.value_ctype, p.value_ctype) AS "coalesce", + c.owner, + (p.depth + 1) + FROM ((marc_subfield c + JOIN ou_marc_subfields p USING (marc_format, marc_record_type, tag, code)) + JOIN actor.org_unit aou ON ((c.owner = aou.id))) + WHERE ((aou.parent_ou = p.owner) OR ((aou.parent_ou IS NULL) AND (p.owner IS NULL))) + ) + SELECT ou_marc_subfields.id, + ou_marc_subfields.marc_format, + ou_marc_subfields.marc_record_type, + ou_marc_subfields.tag, + ou_marc_subfields.code, + ou_marc_subfields.description, + ou_marc_subfields.repeatable, + ou_marc_subfields.mandatory, + ou_marc_subfields.hidden, + ou_marc_subfields.value_ctype, + ou_marc_subfields.owner, + ou_marc_subfields.depth + FROM ou_marc_subfields; + + +ALTER TABLE marc_subfield_for_ou OWNER TO evergreen; + +-- +-- Name: marc_subfield_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE marc_subfield_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE marc_subfield_id_seq OWNER TO evergreen; + +-- +-- Name: marc_subfield_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE marc_subfield_id_seq OWNED BY marc_subfield.id; + + +-- +-- Name: metabib_class; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE metabib_class ( + name text NOT NULL, + label text NOT NULL, + buoyant boolean DEFAULT false NOT NULL, + restrict boolean DEFAULT false NOT NULL, + combined boolean DEFAULT false NOT NULL, + a_weight numeric DEFAULT 1.0 NOT NULL, + b_weight numeric DEFAULT 0.4 NOT NULL, + c_weight numeric DEFAULT 0.2 NOT NULL, + d_weight numeric DEFAULT 0.1 NOT NULL +); + + +ALTER TABLE metabib_class OWNER TO evergreen; + +-- +-- Name: metabib_class_ts_map; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE metabib_class_ts_map ( + id integer NOT NULL, + field_class text NOT NULL, + ts_config text NOT NULL, + active boolean DEFAULT true NOT NULL, + index_weight character(1) DEFAULT 'C'::bpchar NOT NULL, + index_lang text, + search_lang text, + always boolean DEFAULT true NOT NULL, + CONSTRAINT metabib_class_ts_map_index_weight_check CHECK ((index_weight = ANY (ARRAY['A'::bpchar, 'B'::bpchar, 'C'::bpchar, 'D'::bpchar]))) +); + + +ALTER TABLE metabib_class_ts_map OWNER TO evergreen; + +-- +-- Name: TABLE metabib_class_ts_map; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE metabib_class_ts_map IS ' +Text Search Configs for metabib class indexing + +This table contains text search config definitions for +storing index_vector values. +'; + + +-- +-- Name: metabib_class_ts_map_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE metabib_class_ts_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE metabib_class_ts_map_id_seq OWNER TO evergreen; + +-- +-- Name: metabib_class_ts_map_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE metabib_class_ts_map_id_seq OWNED BY metabib_class_ts_map.id; + + +-- +-- Name: metabib_field; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE metabib_field ( + id integer NOT NULL, + field_class text NOT NULL, + name text NOT NULL, + label text NOT NULL, + xpath text NOT NULL, + weight integer DEFAULT 1 NOT NULL, + format text DEFAULT 'mods33'::text NOT NULL, + search_field boolean DEFAULT true NOT NULL, + facet_field boolean DEFAULT false NOT NULL, + browse_field boolean DEFAULT true NOT NULL, + browse_xpath text, + browse_sort_xpath text, + facet_xpath text, + authority_xpath text, + joiner text, + restrict boolean DEFAULT false NOT NULL +); + + +ALTER TABLE metabib_field OWNER TO evergreen; + +-- +-- Name: TABLE metabib_field; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE metabib_field IS ' +XPath used for record indexing ingest + +This table contains the XPath used to chop up MODS into its +indexable parts. Each XPath entry is named and assigned to +a "class" of either title, subject, author, keyword, series +or identifier. +'; + + +-- +-- Name: metabib_field_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE metabib_field_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE metabib_field_id_seq OWNER TO evergreen; + +-- +-- Name: metabib_field_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE metabib_field_id_seq OWNED BY metabib_field.id; + + +-- +-- Name: metabib_field_index_norm_map; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE metabib_field_index_norm_map ( + id integer NOT NULL, + field integer NOT NULL, + norm integer NOT NULL, + params text, + pos integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE metabib_field_index_norm_map OWNER TO evergreen; + +-- +-- Name: metabib_field_index_norm_map_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE metabib_field_index_norm_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE metabib_field_index_norm_map_id_seq OWNER TO evergreen; + +-- +-- Name: metabib_field_index_norm_map_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE metabib_field_index_norm_map_id_seq OWNED BY metabib_field_index_norm_map.id; + + +-- +-- Name: metabib_field_ts_map; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE metabib_field_ts_map ( + id integer NOT NULL, + metabib_field integer NOT NULL, + ts_config text NOT NULL, + active boolean DEFAULT true NOT NULL, + index_weight character(1) DEFAULT 'C'::bpchar NOT NULL, + index_lang text, + search_lang text, + CONSTRAINT metabib_field_ts_map_index_weight_check CHECK ((index_weight = ANY (ARRAY['A'::bpchar, 'B'::bpchar, 'C'::bpchar, 'D'::bpchar]))) +); + + +ALTER TABLE metabib_field_ts_map OWNER TO evergreen; + +-- +-- Name: TABLE metabib_field_ts_map; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE metabib_field_ts_map IS ' +Text Search Configs for metabib field indexing + +This table contains text search config definitions for +storing index_vector values. +'; + + +-- +-- Name: metabib_field_ts_map_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE metabib_field_ts_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE metabib_field_ts_map_id_seq OWNER TO evergreen; + +-- +-- Name: metabib_field_ts_map_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE metabib_field_ts_map_id_seq OWNED BY metabib_field_ts_map.id; + + +-- +-- Name: metabib_search_alias; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE metabib_search_alias ( + alias text NOT NULL, + field_class text NOT NULL, + field integer +); + + +ALTER TABLE metabib_search_alias OWNER TO evergreen; + +-- +-- Name: net_access_level; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE net_access_level ( + id integer NOT NULL, + name text NOT NULL +); + + +ALTER TABLE net_access_level OWNER TO evergreen; + +-- +-- Name: TABLE net_access_level; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE net_access_level IS ' +Patron Network Access level + +This will be used to inform the in-library firewall of how much +internet access the using patron should be allowed. +'; + + +-- +-- Name: net_access_level_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE net_access_level_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE net_access_level_id_seq OWNER TO evergreen; + +-- +-- Name: net_access_level_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE net_access_level_id_seq OWNED BY net_access_level.id; + + +-- +-- Name: non_cataloged_type; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE non_cataloged_type ( + id integer NOT NULL, + owning_lib integer NOT NULL, + name text NOT NULL, + circ_duration interval DEFAULT '14 days'::interval NOT NULL, + in_house boolean DEFAULT false NOT NULL +); + + +ALTER TABLE non_cataloged_type OWNER TO evergreen; + +-- +-- Name: TABLE non_cataloged_type; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE non_cataloged_type IS ' +Types of valid non-cataloged items. +'; + + +-- +-- Name: non_cataloged_type_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE non_cataloged_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE non_cataloged_type_id_seq OWNER TO evergreen; + +-- +-- Name: non_cataloged_type_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE non_cataloged_type_id_seq OWNED BY non_cataloged_type.id; + + +-- +-- Name: org_unit_setting_type; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE org_unit_setting_type ( + name text NOT NULL, + label text NOT NULL, + grp text, + description text, + datatype text DEFAULT 'string'::text NOT NULL, + fm_class text, + view_perm integer, + update_perm integer, + CONSTRAINT coust_no_empty_link CHECK ((((datatype = 'link'::text) AND (fm_class IS NOT NULL)) OR ((datatype <> 'link'::text) AND (fm_class IS NULL)))), + CONSTRAINT coust_valid_datatype CHECK ((datatype = ANY (ARRAY['bool'::text, 'integer'::text, 'float'::text, 'currency'::text, 'interval'::text, 'date'::text, 'string'::text, 'object'::text, 'array'::text, 'link'::text]))) +); + + +ALTER TABLE org_unit_setting_type OWNER TO evergreen; + +-- +-- Name: org_unit_setting_type_log; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE org_unit_setting_type_log ( + id bigint NOT NULL, + date_applied timestamp with time zone DEFAULT now() NOT NULL, + org integer, + original_value text, + new_value text, + field_name text +); + + +ALTER TABLE org_unit_setting_type_log OWNER TO evergreen; + +-- +-- Name: TABLE org_unit_setting_type_log; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE org_unit_setting_type_log IS ' +Org Unit setting Logs + +This table contains the most recent changes to each setting +in actor.org_unit_setting, allowing for mistakes to be undone. +This is NOT meant to be an auditor, but rather an undo/redo. +'; + + +-- +-- Name: org_unit_setting_type_log_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE org_unit_setting_type_log_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE org_unit_setting_type_log_id_seq OWNER TO evergreen; + +-- +-- Name: org_unit_setting_type_log_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE org_unit_setting_type_log_id_seq OWNED BY org_unit_setting_type_log.id; + + +-- +-- Name: record_attr_definition; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE record_attr_definition ( + name text NOT NULL, + label text NOT NULL, + description text, + multi boolean DEFAULT true NOT NULL, + filter boolean DEFAULT true NOT NULL, + sorter boolean DEFAULT false NOT NULL, + composite boolean DEFAULT false NOT NULL, + tag text, + sf_list text, + joiner text, + xpath text, + format text, + start_pos integer, + string_len integer, + fixed_field text, + phys_char_sf integer, + vocabulary text +); + + +ALTER TABLE record_attr_definition OWNER TO evergreen; + +-- +-- Name: record_attr_index_norm_map; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE record_attr_index_norm_map ( + id integer NOT NULL, + attr text NOT NULL, + norm integer NOT NULL, + params text, + pos integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE record_attr_index_norm_map OWNER TO evergreen; + +-- +-- Name: record_attr_index_norm_map_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE record_attr_index_norm_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE record_attr_index_norm_map_id_seq OWNER TO evergreen; + +-- +-- Name: record_attr_index_norm_map_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE record_attr_index_norm_map_id_seq OWNED BY record_attr_index_norm_map.id; + + +-- +-- Name: remote_account_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE remote_account_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE remote_account_id_seq OWNER TO evergreen; + +-- +-- Name: remote_account_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE remote_account_id_seq OWNED BY remote_account.id; + + +-- +-- Name: rule_age_hold_protect; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE rule_age_hold_protect ( + id integer NOT NULL, + name text NOT NULL, + age interval NOT NULL, + prox integer NOT NULL, + CONSTRAINT rule_age_hold_protect_name_check CHECK ((name ~ '^\w+$'::text)) +); + + +ALTER TABLE rule_age_hold_protect OWNER TO evergreen; + +-- +-- Name: TABLE rule_age_hold_protect; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE rule_age_hold_protect IS ' +Hold Item Age Protection rules + +A hold request can only capture new(ish) items when they are +within a particular proximity of the pickup_lib of the request. +The proximity (''prox'' column) is calculated by counting +the number of tree edges between the pickup_lib and either the +owning_lib or circ_lib of the copy that could fulfill the hold, +as determined by the distance_is_from_owner value of the hold matrix +rule controlling the hold request. +'; + + +-- +-- Name: rule_age_hold_protect_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE rule_age_hold_protect_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE rule_age_hold_protect_id_seq OWNER TO evergreen; + +-- +-- Name: rule_age_hold_protect_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE rule_age_hold_protect_id_seq OWNED BY rule_age_hold_protect.id; + + +-- +-- Name: rule_circ_duration; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE rule_circ_duration ( + id integer NOT NULL, + name text NOT NULL, + extended interval NOT NULL, + normal interval NOT NULL, + shrt interval NOT NULL, + max_renewals integer NOT NULL, + CONSTRAINT rule_circ_duration_name_check CHECK ((name ~ '^\w+$'::text)) +); + + +ALTER TABLE rule_circ_duration OWNER TO evergreen; + +-- +-- Name: TABLE rule_circ_duration; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE rule_circ_duration IS ' +Circulation Duration rules + +Each circulation is given a duration based on one of these rules. +'; + + +-- +-- Name: rule_circ_duration_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE rule_circ_duration_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE rule_circ_duration_id_seq OWNER TO evergreen; + +-- +-- Name: rule_circ_duration_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE rule_circ_duration_id_seq OWNED BY rule_circ_duration.id; + + +-- +-- Name: rule_max_fine; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE rule_max_fine ( + id integer NOT NULL, + name text NOT NULL, + amount numeric(6,2) NOT NULL, + is_percent boolean DEFAULT false NOT NULL, + CONSTRAINT rule_max_fine_name_check CHECK ((name ~ '^\w+$'::text)) +); + + +ALTER TABLE rule_max_fine OWNER TO evergreen; + +-- +-- Name: TABLE rule_max_fine; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE rule_max_fine IS ' +Circulation Max Fine rules + +Each circulation is given a maximum fine based on one of +these rules. +'; + + +-- +-- Name: rule_max_fine_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE rule_max_fine_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE rule_max_fine_id_seq OWNER TO evergreen; + +-- +-- Name: rule_max_fine_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE rule_max_fine_id_seq OWNED BY rule_max_fine.id; + + +-- +-- Name: rule_recurring_fine; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE rule_recurring_fine ( + id integer NOT NULL, + name text NOT NULL, + high numeric(6,2) NOT NULL, + normal numeric(6,2) NOT NULL, + low numeric(6,2) NOT NULL, + recurrence_interval interval DEFAULT '1 day'::interval NOT NULL, + grace_period interval DEFAULT '1 day'::interval NOT NULL, + CONSTRAINT rule_recurring_fine_name_check CHECK ((name ~ '^\w+$'::text)) +); + + +ALTER TABLE rule_recurring_fine OWNER TO evergreen; + +-- +-- Name: TABLE rule_recurring_fine; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE rule_recurring_fine IS ' +Circulation Recurring Fine rules + +Each circulation is given a recurring fine amount based on one of +these rules. Note that it is recommended to run the fine generator +(from cron) at least as frequently as the lowest recurrence interval +used by your circulation rules so that accrued fines will be up +to date. +'; + + +-- +-- Name: rule_recurring_fine_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE rule_recurring_fine_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE rule_recurring_fine_id_seq OWNER TO evergreen; + +-- +-- Name: rule_recurring_fine_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE rule_recurring_fine_id_seq OWNED BY rule_recurring_fine.id; + + +-- +-- Name: settings_group; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE settings_group ( + name text NOT NULL, + label text NOT NULL +); + + +ALTER TABLE settings_group OWNER TO evergreen; + +-- +-- Name: sms_carrier; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE sms_carrier ( + id integer NOT NULL, + region text, + name text, + email_gateway text, + active boolean DEFAULT true +); + + +ALTER TABLE sms_carrier OWNER TO evergreen; + +-- +-- Name: sms_carrier_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE sms_carrier_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE sms_carrier_id_seq OWNER TO evergreen; + +-- +-- Name: sms_carrier_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE sms_carrier_id_seq OWNED BY sms_carrier.id; + + +-- +-- Name: standing; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE standing ( + id integer NOT NULL, + value text NOT NULL +); + + +ALTER TABLE standing OWNER TO evergreen; + +-- +-- Name: TABLE standing; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE standing IS ' +Patron Standings + +This table contains the values that can be applied to a patron +by a staff member. These values should not be changed, other +than for translation, as the ID column is currently a "magic +number" in the source. :( +'; + + +-- +-- Name: standing_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE standing_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE standing_id_seq OWNER TO evergreen; + +-- +-- Name: standing_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE standing_id_seq OWNED BY standing.id; + + +-- +-- Name: standing_penalty; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE standing_penalty ( + id integer NOT NULL, + name text NOT NULL, + label text NOT NULL, + block_list text, + staff_alert boolean DEFAULT false NOT NULL, + org_depth integer, + ignore_proximity integer +); + + +ALTER TABLE standing_penalty OWNER TO evergreen; + +-- +-- Name: standing_penalty_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE standing_penalty_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE standing_penalty_id_seq OWNER TO evergreen; + +-- +-- Name: standing_penalty_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE standing_penalty_id_seq OWNED BY standing_penalty.id; + + +-- +-- Name: ts_config_list; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE ts_config_list ( + id text NOT NULL, + name text NOT NULL +); + + +ALTER TABLE ts_config_list OWNER TO evergreen; + +-- +-- Name: TABLE ts_config_list; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE ts_config_list IS ' +Full Text Configs + +A list of full text configs with names and descriptions. +'; + + +-- +-- Name: upgrade_log; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE upgrade_log ( + version text NOT NULL, + install_date timestamp with time zone DEFAULT now() NOT NULL, + applied_to text +); + + +ALTER TABLE upgrade_log OWNER TO evergreen; + +-- +-- Name: usr_activity_type_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE usr_activity_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_activity_type_id_seq OWNER TO evergreen; + +-- +-- Name: usr_activity_type_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE usr_activity_type_id_seq OWNED BY usr_activity_type.id; + + +-- +-- Name: usr_setting_type; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE usr_setting_type ( + name text NOT NULL, + opac_visible boolean DEFAULT false NOT NULL, + label text NOT NULL, + description text, + grp text, + datatype text DEFAULT 'string'::text NOT NULL, + fm_class text, + reg_default text, + CONSTRAINT coust_no_empty_link CHECK ((((datatype = 'link'::text) AND (fm_class IS NOT NULL)) OR ((datatype <> 'link'::text) AND (fm_class IS NULL)))), + CONSTRAINT coust_valid_datatype CHECK ((datatype = ANY (ARRAY['bool'::text, 'integer'::text, 'float'::text, 'currency'::text, 'interval'::text, 'date'::text, 'string'::text, 'object'::text, 'array'::text, 'link'::text]))) +); + + +ALTER TABLE usr_setting_type OWNER TO evergreen; + +-- +-- Name: videorecording_format_map; Type: VIEW; Schema: config; Owner: evergreen +-- + +CREATE VIEW videorecording_format_map AS + SELECT coded_value_map.code, + coded_value_map.value + FROM coded_value_map + WHERE (coded_value_map.ctype = 'vr_format'::text); + + +ALTER TABLE videorecording_format_map OWNER TO evergreen; + +-- +-- Name: weight_assoc; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE weight_assoc ( + id integer NOT NULL, + active boolean NOT NULL, + org_unit integer NOT NULL, + circ_weights integer, + hold_weights integer +); + + +ALTER TABLE weight_assoc OWNER TO evergreen; + +-- +-- Name: weight_assoc_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE weight_assoc_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE weight_assoc_id_seq OWNER TO evergreen; + +-- +-- Name: weight_assoc_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE weight_assoc_id_seq OWNED BY weight_assoc.id; + + +-- +-- Name: xml_transform; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE xml_transform ( + name text NOT NULL, + namespace_uri text NOT NULL, + prefix text NOT NULL, + xslt text NOT NULL +); + + +ALTER TABLE xml_transform OWNER TO evergreen; + +-- +-- Name: z3950_attr; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE z3950_attr ( + id integer NOT NULL, + source text NOT NULL, + name text NOT NULL, + label text NOT NULL, + code integer NOT NULL, + format integer NOT NULL, + truncation integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE z3950_attr OWNER TO evergreen; + +-- +-- Name: z3950_attr_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE z3950_attr_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE z3950_attr_id_seq OWNER TO evergreen; + +-- +-- Name: z3950_attr_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE z3950_attr_id_seq OWNED BY z3950_attr.id; + + +-- +-- Name: z3950_index_field_map; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE z3950_index_field_map ( + id integer NOT NULL, + label text NOT NULL, + metabib_field integer, + record_attr text, + z3950_attr integer, + z3950_attr_type text, + CONSTRAINT attr_or_attr_type CHECK (((z3950_attr IS NOT NULL) OR (z3950_attr_type IS NOT NULL))), + CONSTRAINT metabib_field_or_record_attr CHECK (((metabib_field IS NOT NULL) OR (record_attr IS NOT NULL))) +); + + +ALTER TABLE z3950_index_field_map OWNER TO evergreen; + +-- +-- Name: z3950_index_field_map_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE z3950_index_field_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE z3950_index_field_map_id_seq OWNER TO evergreen; + +-- +-- Name: z3950_index_field_map_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE z3950_index_field_map_id_seq OWNED BY z3950_index_field_map.id; + + +-- +-- Name: z3950_source; Type: TABLE; Schema: config; Owner: evergreen +-- + +CREATE TABLE z3950_source ( + name text NOT NULL, + label text NOT NULL, + host text NOT NULL, + port integer NOT NULL, + db text NOT NULL, + record_format text DEFAULT 'FI'::text NOT NULL, + transmission_format text DEFAULT 'usmarc'::text NOT NULL, + auth boolean DEFAULT true NOT NULL, + use_perm integer +); + + +ALTER TABLE z3950_source OWNER TO evergreen; + +-- +-- Name: TABLE z3950_source; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON TABLE z3950_source IS ' +Z39.50 Sources + +Each row in this table represents a database searchable via Z39.50. +'; + + +-- +-- Name: COLUMN z3950_source.record_format; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON COLUMN z3950_source.record_format IS ' +Z39.50 element set. +'; + + +-- +-- Name: COLUMN z3950_source.transmission_format; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON COLUMN z3950_source.transmission_format IS ' +Z39.50 preferred record syntax.. +'; + + +-- +-- Name: COLUMN z3950_source.use_perm; Type: COMMENT; Schema: config; Owner: evergreen +-- + +COMMENT ON COLUMN z3950_source.use_perm IS ' +If set, this permission is required for the source to be listed in the staff +client Z39.50 interface. Similar to permission.grp_tree.application_perm. +'; + + +-- +-- Name: z3950_source_credentials_id_seq; Type: SEQUENCE; Schema: config; Owner: evergreen +-- + +CREATE SEQUENCE z3950_source_credentials_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE z3950_source_credentials_id_seq OWNER TO evergreen; + +-- +-- Name: z3950_source_credentials_id_seq; Type: SEQUENCE OWNED BY; Schema: config; Owner: evergreen +-- + +ALTER SEQUENCE z3950_source_credentials_id_seq OWNED BY z3950_source_credentials.id; + + +SET search_path = container, pg_catalog; + +-- +-- Name: biblio_record_entry_bucket; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE biblio_record_entry_bucket ( + id integer NOT NULL, + owner integer NOT NULL, + name text NOT NULL, + btype text DEFAULT 'misc'::text NOT NULL, + description text, + pub boolean DEFAULT false NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE biblio_record_entry_bucket OWNER TO evergreen; + +-- +-- Name: biblio_record_entry_bucket_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE biblio_record_entry_bucket_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE biblio_record_entry_bucket_id_seq OWNER TO evergreen; + +-- +-- Name: biblio_record_entry_bucket_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE biblio_record_entry_bucket_id_seq OWNED BY biblio_record_entry_bucket.id; + + +-- +-- Name: biblio_record_entry_bucket_item; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE biblio_record_entry_bucket_item ( + id integer NOT NULL, + bucket integer NOT NULL, + target_biblio_record_entry bigint NOT NULL, + pos integer, + create_time timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE biblio_record_entry_bucket_item OWNER TO evergreen; + +-- +-- Name: biblio_record_entry_bucket_item_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE biblio_record_entry_bucket_item_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE biblio_record_entry_bucket_item_id_seq OWNER TO evergreen; + +-- +-- Name: biblio_record_entry_bucket_item_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE biblio_record_entry_bucket_item_id_seq OWNED BY biblio_record_entry_bucket_item.id; + + +-- +-- Name: biblio_record_entry_bucket_item_note; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE biblio_record_entry_bucket_item_note ( + id integer NOT NULL, + item integer NOT NULL, + note text NOT NULL +); + + +ALTER TABLE biblio_record_entry_bucket_item_note OWNER TO evergreen; + +-- +-- Name: biblio_record_entry_bucket_item_note_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE biblio_record_entry_bucket_item_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE biblio_record_entry_bucket_item_note_id_seq OWNER TO evergreen; + +-- +-- Name: biblio_record_entry_bucket_item_note_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE biblio_record_entry_bucket_item_note_id_seq OWNED BY biblio_record_entry_bucket_item_note.id; + + +-- +-- Name: biblio_record_entry_bucket_note; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE biblio_record_entry_bucket_note ( + id integer NOT NULL, + bucket integer NOT NULL, + note text NOT NULL +); + + +ALTER TABLE biblio_record_entry_bucket_note OWNER TO evergreen; + +-- +-- Name: biblio_record_entry_bucket_note_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE biblio_record_entry_bucket_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE biblio_record_entry_bucket_note_id_seq OWNER TO evergreen; + +-- +-- Name: biblio_record_entry_bucket_note_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE biblio_record_entry_bucket_note_id_seq OWNED BY biblio_record_entry_bucket_note.id; + + +-- +-- Name: biblio_record_entry_bucket_type; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE biblio_record_entry_bucket_type ( + code text NOT NULL, + label text NOT NULL +); + + +ALTER TABLE biblio_record_entry_bucket_type OWNER TO evergreen; + +-- +-- Name: call_number_bucket; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE call_number_bucket ( + id integer NOT NULL, + owner integer NOT NULL, + name text NOT NULL, + btype text DEFAULT 'misc'::text NOT NULL, + description text, + pub boolean DEFAULT false NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE call_number_bucket OWNER TO evergreen; + +-- +-- Name: call_number_bucket_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE call_number_bucket_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE call_number_bucket_id_seq OWNER TO evergreen; + +-- +-- Name: call_number_bucket_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE call_number_bucket_id_seq OWNED BY call_number_bucket.id; + + +-- +-- Name: call_number_bucket_item; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE call_number_bucket_item ( + id integer NOT NULL, + bucket integer NOT NULL, + target_call_number integer NOT NULL, + pos integer, + create_time timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE call_number_bucket_item OWNER TO evergreen; + +-- +-- Name: call_number_bucket_item_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE call_number_bucket_item_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE call_number_bucket_item_id_seq OWNER TO evergreen; + +-- +-- Name: call_number_bucket_item_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE call_number_bucket_item_id_seq OWNED BY call_number_bucket_item.id; + + +-- +-- Name: call_number_bucket_item_note; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE call_number_bucket_item_note ( + id integer NOT NULL, + item integer NOT NULL, + note text NOT NULL +); + + +ALTER TABLE call_number_bucket_item_note OWNER TO evergreen; + +-- +-- Name: call_number_bucket_item_note_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE call_number_bucket_item_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE call_number_bucket_item_note_id_seq OWNER TO evergreen; + +-- +-- Name: call_number_bucket_item_note_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE call_number_bucket_item_note_id_seq OWNED BY call_number_bucket_item_note.id; + + +-- +-- Name: call_number_bucket_note; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE call_number_bucket_note ( + id integer NOT NULL, + bucket integer NOT NULL, + note text NOT NULL +); + + +ALTER TABLE call_number_bucket_note OWNER TO evergreen; + +-- +-- Name: call_number_bucket_note_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE call_number_bucket_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE call_number_bucket_note_id_seq OWNER TO evergreen; + +-- +-- Name: call_number_bucket_note_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE call_number_bucket_note_id_seq OWNED BY call_number_bucket_note.id; + + +-- +-- Name: call_number_bucket_type; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE call_number_bucket_type ( + code text NOT NULL, + label text NOT NULL +); + + +ALTER TABLE call_number_bucket_type OWNER TO evergreen; + +-- +-- Name: copy_bucket; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE copy_bucket ( + id integer NOT NULL, + owner integer NOT NULL, + name text NOT NULL, + btype text DEFAULT 'misc'::text NOT NULL, + description text, + pub boolean DEFAULT false NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE copy_bucket OWNER TO evergreen; + +-- +-- Name: copy_bucket_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE copy_bucket_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE copy_bucket_id_seq OWNER TO evergreen; + +-- +-- Name: copy_bucket_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE copy_bucket_id_seq OWNED BY copy_bucket.id; + + +-- +-- Name: copy_bucket_item; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE copy_bucket_item ( + id integer NOT NULL, + bucket integer NOT NULL, + target_copy integer NOT NULL, + pos integer, + create_time timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE copy_bucket_item OWNER TO evergreen; + +-- +-- Name: copy_bucket_item_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE copy_bucket_item_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE copy_bucket_item_id_seq OWNER TO evergreen; + +-- +-- Name: copy_bucket_item_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE copy_bucket_item_id_seq OWNED BY copy_bucket_item.id; + + +-- +-- Name: copy_bucket_item_note; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE copy_bucket_item_note ( + id integer NOT NULL, + item integer NOT NULL, + note text NOT NULL +); + + +ALTER TABLE copy_bucket_item_note OWNER TO evergreen; + +-- +-- Name: copy_bucket_item_note_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE copy_bucket_item_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE copy_bucket_item_note_id_seq OWNER TO evergreen; + +-- +-- Name: copy_bucket_item_note_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE copy_bucket_item_note_id_seq OWNED BY copy_bucket_item_note.id; + + +-- +-- Name: copy_bucket_note; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE copy_bucket_note ( + id integer NOT NULL, + bucket integer NOT NULL, + note text NOT NULL +); + + +ALTER TABLE copy_bucket_note OWNER TO evergreen; + +-- +-- Name: copy_bucket_note_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE copy_bucket_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE copy_bucket_note_id_seq OWNER TO evergreen; + +-- +-- Name: copy_bucket_note_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE copy_bucket_note_id_seq OWNED BY copy_bucket_note.id; + + +-- +-- Name: copy_bucket_type; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE copy_bucket_type ( + code text NOT NULL, + label text NOT NULL +); + + +ALTER TABLE copy_bucket_type OWNER TO evergreen; + +-- +-- Name: user_bucket; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE user_bucket ( + id integer NOT NULL, + owner integer NOT NULL, + name text NOT NULL, + btype text DEFAULT 'misc'::text NOT NULL, + description text, + pub boolean DEFAULT false NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE user_bucket OWNER TO evergreen; + +-- +-- Name: user_bucket_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE user_bucket_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE user_bucket_id_seq OWNER TO evergreen; + +-- +-- Name: user_bucket_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE user_bucket_id_seq OWNED BY user_bucket.id; + + +-- +-- Name: user_bucket_item; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE user_bucket_item ( + id integer NOT NULL, + bucket integer NOT NULL, + target_user integer NOT NULL, + pos integer, + create_time timestamp with time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE user_bucket_item OWNER TO evergreen; + +-- +-- Name: user_bucket_item_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE user_bucket_item_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE user_bucket_item_id_seq OWNER TO evergreen; + +-- +-- Name: user_bucket_item_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE user_bucket_item_id_seq OWNED BY user_bucket_item.id; + + +-- +-- Name: user_bucket_item_note; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE user_bucket_item_note ( + id integer NOT NULL, + item integer NOT NULL, + note text NOT NULL +); + + +ALTER TABLE user_bucket_item_note OWNER TO evergreen; + +-- +-- Name: user_bucket_item_note_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE user_bucket_item_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE user_bucket_item_note_id_seq OWNER TO evergreen; + +-- +-- Name: user_bucket_item_note_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE user_bucket_item_note_id_seq OWNED BY user_bucket_item_note.id; + + +-- +-- Name: user_bucket_note; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE user_bucket_note ( + id integer NOT NULL, + bucket integer NOT NULL, + note text NOT NULL +); + + +ALTER TABLE user_bucket_note OWNER TO evergreen; + +-- +-- Name: user_bucket_note_id_seq; Type: SEQUENCE; Schema: container; Owner: evergreen +-- + +CREATE SEQUENCE user_bucket_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE user_bucket_note_id_seq OWNER TO evergreen; + +-- +-- Name: user_bucket_note_id_seq; Type: SEQUENCE OWNED BY; Schema: container; Owner: evergreen +-- + +ALTER SEQUENCE user_bucket_note_id_seq OWNED BY user_bucket_note.id; + + +-- +-- Name: user_bucket_type; Type: TABLE; Schema: container; Owner: evergreen +-- + +CREATE TABLE user_bucket_type ( + code text NOT NULL, + label text NOT NULL +); + + +ALTER TABLE user_bucket_type OWNER TO evergreen; + +SET search_path = extend_reporter, pg_catalog; + +-- +-- Name: legacy_circ_count; Type: TABLE; Schema: extend_reporter; Owner: evergreen +-- + +CREATE TABLE legacy_circ_count ( + id bigint NOT NULL, + circ_count integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE legacy_circ_count OWNER TO evergreen; + +-- +-- Name: full_circ_count; Type: VIEW; Schema: extend_reporter; Owner: evergreen +-- + +CREATE VIEW full_circ_count AS + SELECT cp.id, + ((COALESCE(( SELECT legacy_circ_count.circ_count + FROM legacy_circ_count + WHERE (legacy_circ_count.id = cp.id)), 0) + ( SELECT count(*) AS count + FROM action.circulation + WHERE (circulation.target_copy = cp.id))) + ( SELECT count(*) AS count + FROM action.aged_circulation + WHERE (aged_circulation.target_copy = cp.id))) AS circ_count + FROM asset.copy cp; + + +ALTER TABLE full_circ_count OWNER TO evergreen; + +-- +-- Name: global_bibs_by_holding_update; Type: VIEW; Schema: extend_reporter; Owner: evergreen +-- + +CREATE VIEW global_bibs_by_holding_update AS + SELECT DISTINCT ON (x.id) x.id, + x.holding_update, + x.update_type + FROM ( SELECT b.id, + public.last(cp.create_date) AS holding_update, + 'add'::text AS update_type + FROM ((biblio.record_entry b + JOIN asset.call_number cn ON ((cn.record = b.id))) + JOIN asset.copy cp ON ((cp.call_number = cn.id))) + WHERE ((NOT cp.deleted) AND (b.id > 0)) + GROUP BY b.id + UNION + SELECT b.id, + public.last(cp.edit_date) AS holding_update, + 'delete'::text AS update_type + FROM ((biblio.record_entry b + JOIN asset.call_number cn ON ((cn.record = b.id))) + JOIN asset.copy cp ON ((cp.call_number = cn.id))) + WHERE (cp.deleted AND (b.id > 0)) + GROUP BY b.id) x + ORDER BY x.id, x.holding_update; + + +ALTER TABLE global_bibs_by_holding_update OWNER TO evergreen; + +SET search_path = metabib, pg_catalog; + +-- +-- Name: author_field_entry; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE author_field_entry ( + id bigint NOT NULL, + source bigint NOT NULL, + field integer NOT NULL, + value text NOT NULL, + index_vector tsvector NOT NULL +); + + +ALTER TABLE author_field_entry OWNER TO evergreen; + +-- +-- Name: author_field_entry_id_seq; Type: SEQUENCE; Schema: metabib; Owner: evergreen +-- + +CREATE SEQUENCE author_field_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE author_field_entry_id_seq OWNER TO evergreen; + +-- +-- Name: author_field_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: metabib; Owner: evergreen +-- + +ALTER SEQUENCE author_field_entry_id_seq OWNED BY author_field_entry.id; + + +-- +-- Name: browse_entry; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE browse_entry ( + id bigint NOT NULL, + value text, + index_vector tsvector, + sort_value text NOT NULL +); + + +ALTER TABLE browse_entry OWNER TO evergreen; + +-- +-- Name: browse_entry_def_map; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE browse_entry_def_map ( + id bigint NOT NULL, + entry bigint, + def integer, + source bigint, + authority bigint +); + + +ALTER TABLE browse_entry_def_map OWNER TO evergreen; + +-- +-- Name: browse_entry_def_map_id_seq; Type: SEQUENCE; Schema: metabib; Owner: evergreen +-- + +CREATE SEQUENCE browse_entry_def_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE browse_entry_def_map_id_seq OWNER TO evergreen; + +-- +-- Name: browse_entry_def_map_id_seq; Type: SEQUENCE OWNED BY; Schema: metabib; Owner: evergreen +-- + +ALTER SEQUENCE browse_entry_def_map_id_seq OWNED BY browse_entry_def_map.id; + + +-- +-- Name: browse_entry_id_seq; Type: SEQUENCE; Schema: metabib; Owner: evergreen +-- + +CREATE SEQUENCE browse_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE browse_entry_id_seq OWNER TO evergreen; + +-- +-- Name: browse_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: metabib; Owner: evergreen +-- + +ALTER SEQUENCE browse_entry_id_seq OWNED BY browse_entry.id; + + +-- +-- Name: browse_entry_simple_heading_map; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE browse_entry_simple_heading_map ( + id bigint NOT NULL, + entry bigint, + simple_heading bigint +); + + +ALTER TABLE browse_entry_simple_heading_map OWNER TO evergreen; + +-- +-- Name: browse_entry_simple_heading_map_id_seq; Type: SEQUENCE; Schema: metabib; Owner: evergreen +-- + +CREATE SEQUENCE browse_entry_simple_heading_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE browse_entry_simple_heading_map_id_seq OWNER TO evergreen; + +-- +-- Name: browse_entry_simple_heading_map_id_seq; Type: SEQUENCE OWNED BY; Schema: metabib; Owner: evergreen +-- + +ALTER SEQUENCE browse_entry_simple_heading_map_id_seq OWNED BY browse_entry_simple_heading_map.id; + + +-- +-- Name: combined_author_field_entry; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE combined_author_field_entry ( + record bigint NOT NULL, + metabib_field integer, + index_vector tsvector NOT NULL +); + + +ALTER TABLE combined_author_field_entry OWNER TO evergreen; + +-- +-- Name: combined_identifier_field_entry; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE combined_identifier_field_entry ( + record bigint NOT NULL, + metabib_field integer, + index_vector tsvector NOT NULL +); + + +ALTER TABLE combined_identifier_field_entry OWNER TO evergreen; + +-- +-- Name: combined_keyword_field_entry; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE combined_keyword_field_entry ( + record bigint NOT NULL, + metabib_field integer, + index_vector tsvector NOT NULL +); + + +ALTER TABLE combined_keyword_field_entry OWNER TO evergreen; + +-- +-- Name: combined_series_field_entry; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE combined_series_field_entry ( + record bigint NOT NULL, + metabib_field integer, + index_vector tsvector NOT NULL +); + + +ALTER TABLE combined_series_field_entry OWNER TO evergreen; + +-- +-- Name: combined_subject_field_entry; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE combined_subject_field_entry ( + record bigint NOT NULL, + metabib_field integer, + index_vector tsvector NOT NULL +); + + +ALTER TABLE combined_subject_field_entry OWNER TO evergreen; + +-- +-- Name: combined_title_field_entry; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE combined_title_field_entry ( + record bigint NOT NULL, + metabib_field integer, + index_vector tsvector NOT NULL +); + + +ALTER TABLE combined_title_field_entry OWNER TO evergreen; + +-- +-- Name: composite_attr_id_map; Type: VIEW; Schema: metabib; Owner: evergreen +-- + +CREATE VIEW composite_attr_id_map AS + SELECT c.id, + c.ctype AS attr, + c.code AS value + FROM (config.coded_value_map c + JOIN config.record_attr_definition d ON (((d.name = c.ctype) AND d.composite))); + + +ALTER TABLE composite_attr_id_map OWNER TO evergreen; + +-- +-- Name: facet_entry; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE facet_entry ( + id bigint NOT NULL, + source bigint NOT NULL, + field integer NOT NULL, + value text NOT NULL +); + + +ALTER TABLE facet_entry OWNER TO evergreen; + +-- +-- Name: facet_entry_id_seq; Type: SEQUENCE; Schema: metabib; Owner: evergreen +-- + +CREATE SEQUENCE facet_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE facet_entry_id_seq OWNER TO evergreen; + +-- +-- Name: facet_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: metabib; Owner: evergreen +-- + +ALTER SEQUENCE facet_entry_id_seq OWNED BY facet_entry.id; + + +-- +-- Name: uncontrolled_record_attr_value_id_seq; Type: SEQUENCE; Schema: metabib; Owner: evergreen +-- + +CREATE SEQUENCE uncontrolled_record_attr_value_id_seq + START WITH -1 + INCREMENT BY -1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE uncontrolled_record_attr_value_id_seq OWNER TO evergreen; + +-- +-- Name: uncontrolled_record_attr_value; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE uncontrolled_record_attr_value ( + id bigint DEFAULT nextval('uncontrolled_record_attr_value_id_seq'::regclass) NOT NULL, + attr text NOT NULL, + value text NOT NULL +); + + +ALTER TABLE uncontrolled_record_attr_value OWNER TO evergreen; + +-- +-- Name: record_attr_id_map; Type: VIEW; Schema: metabib; Owner: evergreen +-- + +CREATE VIEW record_attr_id_map AS + SELECT uncontrolled_record_attr_value.id, + uncontrolled_record_attr_value.attr, + uncontrolled_record_attr_value.value + FROM uncontrolled_record_attr_value +UNION + SELECT c.id, + c.ctype AS attr, + c.code AS value + FROM (config.coded_value_map c + JOIN config.record_attr_definition d ON (((d.name = c.ctype) AND (NOT d.composite)))); + + +ALTER TABLE record_attr_id_map OWNER TO evergreen; + +-- +-- Name: full_attr_id_map; Type: VIEW; Schema: metabib; Owner: evergreen +-- + +CREATE VIEW full_attr_id_map AS + SELECT record_attr_id_map.id, + record_attr_id_map.attr, + record_attr_id_map.value + FROM record_attr_id_map +UNION + SELECT composite_attr_id_map.id, + composite_attr_id_map.attr, + composite_attr_id_map.value + FROM composite_attr_id_map; + + +ALTER TABLE full_attr_id_map OWNER TO evergreen; + +-- +-- Name: identifier_field_entry; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE identifier_field_entry ( + id bigint NOT NULL, + source bigint NOT NULL, + field integer NOT NULL, + value text NOT NULL, + index_vector tsvector NOT NULL +); + + +ALTER TABLE identifier_field_entry OWNER TO evergreen; + +-- +-- Name: identifier_field_entry_id_seq; Type: SEQUENCE; Schema: metabib; Owner: evergreen +-- + +CREATE SEQUENCE identifier_field_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE identifier_field_entry_id_seq OWNER TO evergreen; + +-- +-- Name: identifier_field_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: metabib; Owner: evergreen +-- + +ALTER SEQUENCE identifier_field_entry_id_seq OWNED BY identifier_field_entry.id; + + +-- +-- Name: keyword_field_entry; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE keyword_field_entry ( + id bigint NOT NULL, + source bigint NOT NULL, + field integer NOT NULL, + value text NOT NULL, + index_vector tsvector NOT NULL +); + + +ALTER TABLE keyword_field_entry OWNER TO evergreen; + +-- +-- Name: keyword_field_entry_id_seq; Type: SEQUENCE; Schema: metabib; Owner: evergreen +-- + +CREATE SEQUENCE keyword_field_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE keyword_field_entry_id_seq OWNER TO evergreen; + +-- +-- Name: keyword_field_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: metabib; Owner: evergreen +-- + +ALTER SEQUENCE keyword_field_entry_id_seq OWNED BY keyword_field_entry.id; + + +-- +-- Name: metarecord; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE metarecord ( + id bigint NOT NULL, + fingerprint text NOT NULL, + master_record bigint, + mods text +); + + +ALTER TABLE metarecord OWNER TO evergreen; + +-- +-- Name: metarecord_id_seq; Type: SEQUENCE; Schema: metabib; Owner: evergreen +-- + +CREATE SEQUENCE metarecord_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE metarecord_id_seq OWNER TO evergreen; + +-- +-- Name: metarecord_id_seq; Type: SEQUENCE OWNED BY; Schema: metabib; Owner: evergreen +-- + +ALTER SEQUENCE metarecord_id_seq OWNED BY metarecord.id; + + +-- +-- Name: metarecord_source_map; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE metarecord_source_map ( + id bigint NOT NULL, + metarecord bigint NOT NULL, + source bigint NOT NULL +); + + +ALTER TABLE metarecord_source_map OWNER TO evergreen; + +-- +-- Name: metarecord_source_map_id_seq; Type: SEQUENCE; Schema: metabib; Owner: evergreen +-- + +CREATE SEQUENCE metarecord_source_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE metarecord_source_map_id_seq OWNER TO evergreen; + +-- +-- Name: metarecord_source_map_id_seq; Type: SEQUENCE OWNED BY; Schema: metabib; Owner: evergreen +-- + +ALTER SEQUENCE metarecord_source_map_id_seq OWNED BY metarecord_source_map.id; + + +-- +-- Name: record_attr_vector_list; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE record_attr_vector_list ( + source bigint NOT NULL, + vlist integer[] NOT NULL +); + + +ALTER TABLE record_attr_vector_list OWNER TO evergreen; + +-- +-- Name: record_attr_flat; Type: VIEW; Schema: metabib; Owner: evergreen +-- + +CREATE VIEW record_attr_flat AS + SELECT v.source AS id, + m.attr, + m.value + FROM (record_attr_vector_list v + LEFT JOIN uncontrolled_record_attr_value m ON ((m.id = ANY (v.vlist)))) +UNION + SELECT v.source AS id, + c.ctype AS attr, + c.code AS value + FROM (record_attr_vector_list v + LEFT JOIN config.coded_value_map c ON ((c.id = ANY (v.vlist)))); + + +ALTER TABLE record_attr_flat OWNER TO evergreen; + +-- +-- Name: record_attr; Type: VIEW; Schema: metabib; Owner: evergreen +-- + +CREATE VIEW record_attr AS + SELECT record_attr_flat.id, + public.hstore(array_agg(record_attr_flat.attr), array_agg(record_attr_flat.value)) AS attrs + FROM record_attr_flat + WHERE (record_attr_flat.attr IS NOT NULL) + GROUP BY record_attr_flat.id; + + +ALTER TABLE record_attr OWNER TO evergreen; + +-- +-- Name: rec_descriptor; Type: VIEW; Schema: metabib; Owner: evergreen +-- + +CREATE VIEW rec_descriptor AS + SELECT record_attr.id, + record_attr.id AS record, + (public.populate_record(NULL::rec_desc_type, record_attr.attrs)).item_type AS item_type, + (public.populate_record(NULL::rec_desc_type, record_attr.attrs)).item_form AS item_form, + (public.populate_record(NULL::rec_desc_type, record_attr.attrs)).bib_level AS bib_level, + (public.populate_record(NULL::rec_desc_type, record_attr.attrs)).control_type AS control_type, + (public.populate_record(NULL::rec_desc_type, record_attr.attrs)).char_encoding AS char_encoding, + (public.populate_record(NULL::rec_desc_type, record_attr.attrs)).enc_level AS enc_level, + (public.populate_record(NULL::rec_desc_type, record_attr.attrs)).audience AS audience, + (public.populate_record(NULL::rec_desc_type, record_attr.attrs)).lit_form AS lit_form, + (public.populate_record(NULL::rec_desc_type, record_attr.attrs)).type_mat AS type_mat, + (public.populate_record(NULL::rec_desc_type, record_attr.attrs)).cat_form AS cat_form, + (public.populate_record(NULL::rec_desc_type, record_attr.attrs)).pub_status AS pub_status, + (public.populate_record(NULL::rec_desc_type, record_attr.attrs)).item_lang AS item_lang, + (public.populate_record(NULL::rec_desc_type, record_attr.attrs)).vr_format AS vr_format, + (public.populate_record(NULL::rec_desc_type, record_attr.attrs)).date1 AS date1, + (public.populate_record(NULL::rec_desc_type, record_attr.attrs)).date2 AS date2 + FROM record_attr; + + +ALTER TABLE rec_descriptor OWNER TO evergreen; + +-- +-- Name: record_sorter; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE record_sorter ( + id bigint NOT NULL, + source bigint NOT NULL, + attr text NOT NULL, + value text NOT NULL +); + + +ALTER TABLE record_sorter OWNER TO evergreen; + +-- +-- Name: record_sorter_id_seq; Type: SEQUENCE; Schema: metabib; Owner: evergreen +-- + +CREATE SEQUENCE record_sorter_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE record_sorter_id_seq OWNER TO evergreen; + +-- +-- Name: record_sorter_id_seq; Type: SEQUENCE OWNED BY; Schema: metabib; Owner: evergreen +-- + +ALTER SEQUENCE record_sorter_id_seq OWNED BY record_sorter.id; + + +-- +-- Name: series_field_entry; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE series_field_entry ( + id bigint NOT NULL, + source bigint NOT NULL, + field integer NOT NULL, + value text NOT NULL, + index_vector tsvector NOT NULL +); + + +ALTER TABLE series_field_entry OWNER TO evergreen; + +-- +-- Name: series_field_entry_id_seq; Type: SEQUENCE; Schema: metabib; Owner: evergreen +-- + +CREATE SEQUENCE series_field_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE series_field_entry_id_seq OWNER TO evergreen; + +-- +-- Name: series_field_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: metabib; Owner: evergreen +-- + +ALTER SEQUENCE series_field_entry_id_seq OWNED BY series_field_entry.id; + + +-- +-- Name: subject_field_entry; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE subject_field_entry ( + id bigint NOT NULL, + source bigint NOT NULL, + field integer NOT NULL, + value text NOT NULL, + index_vector tsvector NOT NULL +); + + +ALTER TABLE subject_field_entry OWNER TO evergreen; + +-- +-- Name: subject_field_entry_id_seq; Type: SEQUENCE; Schema: metabib; Owner: evergreen +-- + +CREATE SEQUENCE subject_field_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE subject_field_entry_id_seq OWNER TO evergreen; + +-- +-- Name: subject_field_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: metabib; Owner: evergreen +-- + +ALTER SEQUENCE subject_field_entry_id_seq OWNED BY subject_field_entry.id; + + +-- +-- Name: title_field_entry; Type: TABLE; Schema: metabib; Owner: evergreen +-- + +CREATE TABLE title_field_entry ( + id bigint NOT NULL, + source bigint NOT NULL, + field integer NOT NULL, + value text NOT NULL, + index_vector tsvector NOT NULL +); + + +ALTER TABLE title_field_entry OWNER TO evergreen; + +-- +-- Name: title_field_entry_id_seq; Type: SEQUENCE; Schema: metabib; Owner: evergreen +-- + +CREATE SEQUENCE title_field_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE title_field_entry_id_seq OWNER TO evergreen; + +-- +-- Name: title_field_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: metabib; Owner: evergreen +-- + +ALTER SEQUENCE title_field_entry_id_seq OWNED BY title_field_entry.id; + + +SET search_path = money, pg_catalog; + +-- +-- Name: payment; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE payment ( + id bigint NOT NULL, + xact bigint NOT NULL, + payment_ts timestamp with time zone DEFAULT now() NOT NULL, + voided boolean DEFAULT false NOT NULL, + amount numeric(6,2) NOT NULL, + note text +); + + +ALTER TABLE payment OWNER TO evergreen; + +-- +-- Name: bnm_payment; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE bnm_payment ( + amount_collected numeric(6,2) NOT NULL, + accepting_usr integer NOT NULL +) +INHERITS (payment); + + +ALTER TABLE bnm_payment OWNER TO evergreen; + +-- +-- Name: account_adjustment; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE account_adjustment ( + billing bigint +) +INHERITS (bnm_payment); + + +ALTER TABLE account_adjustment OWNER TO evergreen; + +-- +-- Name: billable_xact_id_seq; Type: SEQUENCE; Schema: money; Owner: evergreen +-- + +CREATE SEQUENCE billable_xact_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE billable_xact_id_seq OWNER TO evergreen; + +-- +-- Name: billable_xact_id_seq; Type: SEQUENCE OWNED BY; Schema: money; Owner: evergreen +-- + +ALTER SEQUENCE billable_xact_id_seq OWNED BY billable_xact.id; + + +-- +-- Name: materialized_billable_xact_summary; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE materialized_billable_xact_summary ( + id bigint NOT NULL, + usr integer, + xact_start timestamp with time zone, + xact_finish timestamp with time zone, + total_paid numeric, + last_payment_ts timestamp with time zone, + last_payment_note text, + last_payment_type name, + total_owed numeric, + last_billing_ts timestamp with time zone, + last_billing_note text, + last_billing_type text, + balance_owed numeric, + xact_type name +); + + +ALTER TABLE materialized_billable_xact_summary OWNER TO evergreen; + +-- +-- Name: billable_xact_summary; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW billable_xact_summary AS + SELECT materialized_billable_xact_summary.id, + materialized_billable_xact_summary.usr, + materialized_billable_xact_summary.xact_start, + materialized_billable_xact_summary.xact_finish, + materialized_billable_xact_summary.total_paid, + materialized_billable_xact_summary.last_payment_ts, + materialized_billable_xact_summary.last_payment_note, + materialized_billable_xact_summary.last_payment_type, + materialized_billable_xact_summary.total_owed, + materialized_billable_xact_summary.last_billing_ts, + materialized_billable_xact_summary.last_billing_note, + materialized_billable_xact_summary.last_billing_type, + materialized_billable_xact_summary.balance_owed, + materialized_billable_xact_summary.xact_type + FROM materialized_billable_xact_summary; + + +ALTER TABLE billable_xact_summary OWNER TO evergreen; + +-- +-- Name: grocery; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE grocery ( + billing_location integer NOT NULL, + note text +) +INHERITS (billable_xact); + + +ALTER TABLE grocery OWNER TO evergreen; + +-- +-- Name: billable_xact_summary_location_view; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW billable_xact_summary_location_view AS + SELECT m.id, + m.usr, + m.xact_start, + m.xact_finish, + m.total_paid, + m.last_payment_ts, + m.last_payment_note, + m.last_payment_type, + m.total_owed, + m.last_billing_ts, + m.last_billing_note, + m.last_billing_type, + m.balance_owed, + m.xact_type, + COALESCE(c.circ_lib, g.billing_location, r.pickup_lib) AS billing_location + FROM (((materialized_billable_xact_summary m + LEFT JOIN action.circulation c ON ((c.id = m.id))) + LEFT JOIN grocery g ON ((g.id = m.id))) + LEFT JOIN booking.reservation r ON ((r.id = m.id))); + + +ALTER TABLE billable_xact_summary_location_view OWNER TO evergreen; + +-- +-- Name: billing; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE billing ( + id bigint NOT NULL, + xact bigint NOT NULL, + billing_ts timestamp with time zone DEFAULT now() NOT NULL, + voided boolean DEFAULT false NOT NULL, + voider integer, + void_time timestamp with time zone, + amount numeric(6,2) NOT NULL, + billing_type text NOT NULL, + btype integer NOT NULL, + note text +); + + +ALTER TABLE billing OWNER TO evergreen; + +-- +-- Name: payment_view; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW payment_view AS + SELECT p.id, + p.xact, + p.payment_ts, + p.voided, + p.amount, + p.note, + c.relname AS payment_type + FROM (payment p + JOIN pg_class c ON ((p.tableoid = c.oid))); + + +ALTER TABLE payment_view OWNER TO evergreen; + +-- +-- Name: billable_xact_with_void_summary; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW billable_xact_with_void_summary AS + SELECT xact.id, + xact.usr, + xact.xact_start, + xact.xact_finish, + sum(credit.amount) AS total_paid, + max(credit.payment_ts) AS last_payment_ts, + public.last(credit.note) AS last_payment_note, + public.last(credit.payment_type) AS last_payment_type, + sum(debit.amount) AS total_owed, + max(debit.billing_ts) AS last_billing_ts, + public.last(debit.note) AS last_billing_note, + public.last(debit.billing_type) AS last_billing_type, + (COALESCE(sum(debit.amount), (0)::numeric) - COALESCE(sum(credit.amount), (0)::numeric)) AS balance_owed, + p.relname AS xact_type + FROM (((billable_xact xact + JOIN pg_class p ON ((xact.tableoid = p.oid))) + LEFT JOIN billing debit ON ((xact.id = debit.xact))) + LEFT JOIN payment_view credit ON ((xact.id = credit.xact))) + GROUP BY xact.id, xact.usr, xact.xact_start, xact.xact_finish, p.relname + ORDER BY (max(debit.billing_ts)), (max(credit.payment_ts)); + + +ALTER TABLE billable_xact_with_void_summary OWNER TO evergreen; + +-- +-- Name: billing_id_seq; Type: SEQUENCE; Schema: money; Owner: evergreen +-- + +CREATE SEQUENCE billing_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE billing_id_seq OWNER TO evergreen; + +-- +-- Name: billing_id_seq; Type: SEQUENCE OWNED BY; Schema: money; Owner: evergreen +-- + +ALTER SEQUENCE billing_id_seq OWNED BY billing.id; + + +-- +-- Name: bnm_desk_payment; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE bnm_desk_payment ( + cash_drawer integer +) +INHERITS (bnm_payment); + + +ALTER TABLE bnm_desk_payment OWNER TO evergreen; + +-- +-- Name: bnm_payment_view; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW bnm_payment_view AS + SELECT p.id, + p.xact, + p.payment_ts, + p.voided, + p.amount, + p.note, + p.amount_collected, + p.accepting_usr, + c.relname AS payment_type + FROM (bnm_payment p + JOIN pg_class c ON ((p.tableoid = c.oid))); + + +ALTER TABLE bnm_payment_view OWNER TO evergreen; + +-- +-- Name: cash_payment; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE cash_payment ( +) +INHERITS (bnm_desk_payment); + + +ALTER TABLE cash_payment OWNER TO evergreen; + +-- +-- Name: cashdrawer_payment_view; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW cashdrawer_payment_view AS + SELECT ou.id AS org_unit, + ws.id AS cashdrawer, + t.payment_type, + p.payment_ts, + p.amount, + p.voided, + p.note + FROM (((actor.org_unit ou + JOIN actor.workstation ws ON ((ou.id = ws.owning_lib))) + LEFT JOIN bnm_desk_payment p ON ((ws.id = p.cash_drawer))) + LEFT JOIN payment_view t ON ((p.id = t.id))); + + +ALTER TABLE cashdrawer_payment_view OWNER TO evergreen; + +-- +-- Name: check_payment; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE check_payment ( + check_number text NOT NULL +) +INHERITS (bnm_desk_payment); + + +ALTER TABLE check_payment OWNER TO evergreen; + +-- +-- Name: collections_tracker; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE collections_tracker ( + id bigint NOT NULL, + usr integer NOT NULL, + collector integer NOT NULL, + location integer NOT NULL, + enter_time timestamp with time zone +); + + +ALTER TABLE collections_tracker OWNER TO evergreen; + +-- +-- Name: collections_tracker_id_seq; Type: SEQUENCE; Schema: money; Owner: evergreen +-- + +CREATE SEQUENCE collections_tracker_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE collections_tracker_id_seq OWNER TO evergreen; + +-- +-- Name: collections_tracker_id_seq; Type: SEQUENCE OWNED BY; Schema: money; Owner: evergreen +-- + +ALTER SEQUENCE collections_tracker_id_seq OWNED BY collections_tracker.id; + + +-- +-- Name: credit_card_payment; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE credit_card_payment ( + cc_number text, + cc_processor text, + cc_order_number text, + approval_code text +) +INHERITS (bnm_desk_payment); + + +ALTER TABLE credit_card_payment OWNER TO evergreen; + +-- +-- Name: credit_payment; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE credit_payment ( +) +INHERITS (bnm_payment); + + +ALTER TABLE credit_payment OWNER TO evergreen; + +-- +-- Name: desk_payment_view; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW desk_payment_view AS + SELECT p.id, + p.xact, + p.payment_ts, + p.voided, + p.amount, + p.note, + p.amount_collected, + p.accepting_usr, + p.cash_drawer, + c.relname AS payment_type + FROM (bnm_desk_payment p + JOIN pg_class c ON ((p.tableoid = c.oid))); + + +ALTER TABLE desk_payment_view OWNER TO evergreen; + +-- +-- Name: forgive_payment; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE forgive_payment ( +) +INHERITS (bnm_payment); + + +ALTER TABLE forgive_payment OWNER TO evergreen; + +-- +-- Name: goods_payment; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE goods_payment ( +) +INHERITS (bnm_payment); + + +ALTER TABLE goods_payment OWNER TO evergreen; + +-- +-- Name: non_drawer_payment_view; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW non_drawer_payment_view AS + SELECT p.id, + p.xact, + p.payment_ts, + p.voided, + p.amount, + p.note, + p.amount_collected, + p.accepting_usr, + c.relname AS payment_type + FROM (bnm_payment p + JOIN pg_class c ON ((p.tableoid = c.oid))) + WHERE (c.relname <> ALL (ARRAY['cash_payment'::name, 'check_payment'::name, 'credit_card_payment'::name])); + + +ALTER TABLE non_drawer_payment_view OWNER TO evergreen; + +-- +-- Name: open_billable_xact_summary; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW open_billable_xact_summary AS + SELECT billable_xact_summary_location_view.id, + billable_xact_summary_location_view.usr, + billable_xact_summary_location_view.xact_start, + billable_xact_summary_location_view.xact_finish, + billable_xact_summary_location_view.total_paid, + billable_xact_summary_location_view.last_payment_ts, + billable_xact_summary_location_view.last_payment_note, + billable_xact_summary_location_view.last_payment_type, + billable_xact_summary_location_view.total_owed, + billable_xact_summary_location_view.last_billing_ts, + billable_xact_summary_location_view.last_billing_note, + billable_xact_summary_location_view.last_billing_type, + billable_xact_summary_location_view.balance_owed, + billable_xact_summary_location_view.xact_type, + billable_xact_summary_location_view.billing_location + FROM billable_xact_summary_location_view + WHERE (billable_xact_summary_location_view.xact_finish IS NULL); + + +ALTER TABLE open_billable_xact_summary OWNER TO evergreen; + +-- +-- Name: open_transaction_billing_summary; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW open_transaction_billing_summary AS + SELECT billing.xact, + public.last(billing.billing_type) AS last_billing_type, + public.last(billing.note) AS last_billing_note, + max(billing.billing_ts) AS last_billing_ts, + sum(COALESCE(billing.amount, (0)::numeric)) AS total_owed + FROM billing + WHERE (billing.voided IS FALSE) + GROUP BY billing.xact + ORDER BY (max(billing.billing_ts)); + + +ALTER TABLE open_transaction_billing_summary OWNER TO evergreen; + +-- +-- Name: open_transaction_billing_type_summary; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW open_transaction_billing_type_summary AS + SELECT billing.xact, + billing.billing_type AS last_billing_type, + public.last(billing.note) AS last_billing_note, + max(billing.billing_ts) AS last_billing_ts, + sum(COALESCE(billing.amount, (0)::numeric)) AS total_owed + FROM billing + WHERE (billing.voided IS FALSE) + GROUP BY billing.xact, billing.billing_type + ORDER BY (max(billing.billing_ts)); + + +ALTER TABLE open_transaction_billing_type_summary OWNER TO evergreen; + +-- +-- Name: open_transaction_payment_summary; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW open_transaction_payment_summary AS + SELECT payment_view.xact, + public.last(payment_view.payment_type) AS last_payment_type, + public.last(payment_view.note) AS last_payment_note, + max(payment_view.payment_ts) AS last_payment_ts, + sum(COALESCE(payment_view.amount, (0)::numeric)) AS total_paid + FROM payment_view + WHERE (payment_view.voided IS FALSE) + GROUP BY payment_view.xact + ORDER BY (max(payment_view.payment_ts)); + + +ALTER TABLE open_transaction_payment_summary OWNER TO evergreen; + +-- +-- Name: open_usr_circulation_summary; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW open_usr_circulation_summary AS + SELECT materialized_billable_xact_summary.usr, + sum(materialized_billable_xact_summary.total_paid) AS total_paid, + sum(materialized_billable_xact_summary.total_owed) AS total_owed, + sum(materialized_billable_xact_summary.balance_owed) AS balance_owed + FROM materialized_billable_xact_summary + WHERE ((materialized_billable_xact_summary.xact_type = 'circulation'::name) AND (materialized_billable_xact_summary.xact_finish IS NULL)) + GROUP BY materialized_billable_xact_summary.usr; + + +ALTER TABLE open_usr_circulation_summary OWNER TO evergreen; + +-- +-- Name: open_usr_summary; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW open_usr_summary AS + SELECT materialized_billable_xact_summary.usr, + sum(materialized_billable_xact_summary.total_paid) AS total_paid, + sum(materialized_billable_xact_summary.total_owed) AS total_owed, + sum(materialized_billable_xact_summary.balance_owed) AS balance_owed + FROM materialized_billable_xact_summary + WHERE (materialized_billable_xact_summary.xact_finish IS NULL) + GROUP BY materialized_billable_xact_summary.usr; + + +ALTER TABLE open_usr_summary OWNER TO evergreen; + +-- +-- Name: payment_id_seq; Type: SEQUENCE; Schema: money; Owner: evergreen +-- + +CREATE SEQUENCE payment_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE payment_id_seq OWNER TO evergreen; + +-- +-- Name: payment_id_seq; Type: SEQUENCE OWNED BY; Schema: money; Owner: evergreen +-- + +ALTER SEQUENCE payment_id_seq OWNED BY payment.id; + + +-- +-- Name: transaction_billing_summary; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW transaction_billing_summary AS + SELECT materialized_billable_xact_summary.id AS xact, + materialized_billable_xact_summary.last_billing_type, + materialized_billable_xact_summary.last_billing_note, + materialized_billable_xact_summary.last_billing_ts, + materialized_billable_xact_summary.total_owed + FROM materialized_billable_xact_summary; + + +ALTER TABLE transaction_billing_summary OWNER TO evergreen; + +-- +-- Name: transaction_billing_type_summary; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW transaction_billing_type_summary AS + SELECT billing.xact, + billing.billing_type AS last_billing_type, + public.last(billing.note) AS last_billing_note, + max(billing.billing_ts) AS last_billing_ts, + sum(COALESCE(billing.amount, (0)::numeric)) AS total_owed + FROM billing + WHERE (billing.voided IS FALSE) + GROUP BY billing.xact, billing.billing_type + ORDER BY (max(billing.billing_ts)); + + +ALTER TABLE transaction_billing_type_summary OWNER TO evergreen; + +-- +-- Name: transaction_billing_with_void_summary; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW transaction_billing_with_void_summary AS + SELECT billing.xact, + public.last(billing.billing_type) AS last_billing_type, + public.last(billing.note) AS last_billing_note, + max(billing.billing_ts) AS last_billing_ts, + sum( + CASE + WHEN billing.voided THEN (0)::numeric + ELSE COALESCE(billing.amount, (0)::numeric) + END) AS total_owed + FROM billing + GROUP BY billing.xact + ORDER BY (max(billing.billing_ts)); + + +ALTER TABLE transaction_billing_with_void_summary OWNER TO evergreen; + +-- +-- Name: transaction_payment_summary; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW transaction_payment_summary AS + SELECT payment_view.xact, + public.last(payment_view.payment_type) AS last_payment_type, + public.last(payment_view.note) AS last_payment_note, + max(payment_view.payment_ts) AS last_payment_ts, + sum(COALESCE(payment_view.amount, (0)::numeric)) AS total_paid + FROM payment_view + WHERE (payment_view.voided IS FALSE) + GROUP BY payment_view.xact + ORDER BY (max(payment_view.payment_ts)); + + +ALTER TABLE transaction_payment_summary OWNER TO evergreen; + +-- +-- Name: transaction_payment_with_void_summary; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW transaction_payment_with_void_summary AS + SELECT payment_view.xact, + public.last(payment_view.payment_type) AS last_payment_type, + public.last(payment_view.note) AS last_payment_note, + max(payment_view.payment_ts) AS last_payment_ts, + sum( + CASE + WHEN payment_view.voided THEN (0)::numeric + ELSE COALESCE(payment_view.amount, (0)::numeric) + END) AS total_paid + FROM payment_view + GROUP BY payment_view.xact + ORDER BY (max(payment_view.payment_ts)); + + +ALTER TABLE transaction_payment_with_void_summary OWNER TO evergreen; + +-- +-- Name: usr_circulation_summary; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW usr_circulation_summary AS + SELECT billable_xact_summary.usr, + sum(billable_xact_summary.total_paid) AS total_paid, + sum(billable_xact_summary.total_owed) AS total_owed, + sum(billable_xact_summary.balance_owed) AS balance_owed + FROM billable_xact_summary + WHERE (billable_xact_summary.xact_type = 'circulation'::name) + GROUP BY billable_xact_summary.usr; + + +ALTER TABLE usr_circulation_summary OWNER TO evergreen; + +-- +-- Name: usr_summary; Type: VIEW; Schema: money; Owner: evergreen +-- + +CREATE VIEW usr_summary AS + SELECT materialized_billable_xact_summary.usr, + sum(materialized_billable_xact_summary.total_paid) AS total_paid, + sum(materialized_billable_xact_summary.total_owed) AS total_owed, + sum(materialized_billable_xact_summary.balance_owed) AS balance_owed + FROM materialized_billable_xact_summary + GROUP BY materialized_billable_xact_summary.usr; + + +ALTER TABLE usr_summary OWNER TO evergreen; + +-- +-- Name: work_payment; Type: TABLE; Schema: money; Owner: evergreen +-- + +CREATE TABLE work_payment ( +) +INHERITS (bnm_payment); + + +ALTER TABLE work_payment OWNER TO evergreen; + +SET search_path = offline, pg_catalog; + +-- +-- Name: script; Type: TABLE; Schema: offline; Owner: evergreen +-- + +CREATE TABLE script ( + id integer NOT NULL, + session text NOT NULL, + requestor integer NOT NULL, + create_time integer NOT NULL, + workstation text NOT NULL, + logfile text NOT NULL, + time_delta integer DEFAULT 0 NOT NULL, + count integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE script OWNER TO evergreen; + +-- +-- Name: script_id_seq; Type: SEQUENCE; Schema: offline; Owner: evergreen +-- + +CREATE SEQUENCE script_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE script_id_seq OWNER TO evergreen; + +-- +-- Name: script_id_seq; Type: SEQUENCE OWNED BY; Schema: offline; Owner: evergreen +-- + +ALTER SEQUENCE script_id_seq OWNED BY script.id; + + +-- +-- Name: session; Type: TABLE; Schema: offline; Owner: evergreen +-- + +CREATE TABLE session ( + key text NOT NULL, + org integer NOT NULL, + description text, + creator integer NOT NULL, + create_time integer NOT NULL, + in_process integer DEFAULT 0 NOT NULL, + start_time integer, + end_time integer, + num_complete integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE session OWNER TO evergreen; + +SET search_path = permission, pg_catalog; + +-- +-- Name: grp_penalty_threshold; Type: TABLE; Schema: permission; Owner: evergreen +-- + +CREATE TABLE grp_penalty_threshold ( + id integer NOT NULL, + grp integer NOT NULL, + org_unit integer NOT NULL, + penalty integer NOT NULL, + threshold numeric(8,2) NOT NULL +); + + +ALTER TABLE grp_penalty_threshold OWNER TO evergreen; + +-- +-- Name: grp_penalty_threshold_id_seq; Type: SEQUENCE; Schema: permission; Owner: evergreen +-- + +CREATE SEQUENCE grp_penalty_threshold_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE grp_penalty_threshold_id_seq OWNER TO evergreen; + +-- +-- Name: grp_penalty_threshold_id_seq; Type: SEQUENCE OWNED BY; Schema: permission; Owner: evergreen +-- + +ALTER SEQUENCE grp_penalty_threshold_id_seq OWNED BY grp_penalty_threshold.id; + + +-- +-- Name: grp_perm_map; Type: TABLE; Schema: permission; Owner: evergreen +-- + +CREATE TABLE grp_perm_map ( + id integer NOT NULL, + grp integer NOT NULL, + perm integer NOT NULL, + depth integer NOT NULL, + grantable boolean DEFAULT false NOT NULL +); + + +ALTER TABLE grp_perm_map OWNER TO evergreen; + +-- +-- Name: grp_perm_map_id_seq; Type: SEQUENCE; Schema: permission; Owner: evergreen +-- + +CREATE SEQUENCE grp_perm_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE grp_perm_map_id_seq OWNER TO evergreen; + +-- +-- Name: grp_perm_map_id_seq; Type: SEQUENCE OWNED BY; Schema: permission; Owner: evergreen +-- + +ALTER SEQUENCE grp_perm_map_id_seq OWNED BY grp_perm_map.id; + + +-- +-- Name: grp_tree_id_seq; Type: SEQUENCE; Schema: permission; Owner: evergreen +-- + +CREATE SEQUENCE grp_tree_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE grp_tree_id_seq OWNER TO evergreen; + +-- +-- Name: grp_tree_id_seq; Type: SEQUENCE OWNED BY; Schema: permission; Owner: evergreen +-- + +ALTER SEQUENCE grp_tree_id_seq OWNED BY grp_tree.id; + + +-- +-- Name: perm_list; Type: TABLE; Schema: permission; Owner: evergreen +-- + +CREATE TABLE perm_list ( + id integer NOT NULL, + code text NOT NULL, + description text +); + + +ALTER TABLE perm_list OWNER TO evergreen; + +-- +-- Name: perm_list_id_seq; Type: SEQUENCE; Schema: permission; Owner: evergreen +-- + +CREATE SEQUENCE perm_list_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE perm_list_id_seq OWNER TO evergreen; + +-- +-- Name: perm_list_id_seq; Type: SEQUENCE OWNED BY; Schema: permission; Owner: evergreen +-- + +ALTER SEQUENCE perm_list_id_seq OWNED BY perm_list.id; + + +-- +-- Name: usr_grp_map; Type: TABLE; Schema: permission; Owner: evergreen +-- + +CREATE TABLE usr_grp_map ( + id integer NOT NULL, + usr integer NOT NULL, + grp integer NOT NULL +); + + +ALTER TABLE usr_grp_map OWNER TO evergreen; + +-- +-- Name: usr_grp_map_id_seq; Type: SEQUENCE; Schema: permission; Owner: evergreen +-- + +CREATE SEQUENCE usr_grp_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_grp_map_id_seq OWNER TO evergreen; + +-- +-- Name: usr_grp_map_id_seq; Type: SEQUENCE OWNED BY; Schema: permission; Owner: evergreen +-- + +ALTER SEQUENCE usr_grp_map_id_seq OWNED BY usr_grp_map.id; + + +-- +-- Name: usr_object_perm_map; Type: TABLE; Schema: permission; Owner: evergreen +-- + +CREATE TABLE usr_object_perm_map ( + id integer NOT NULL, + usr integer NOT NULL, + perm integer NOT NULL, + object_type text NOT NULL, + object_id text NOT NULL, + grantable boolean DEFAULT false NOT NULL +); + + +ALTER TABLE usr_object_perm_map OWNER TO evergreen; + +-- +-- Name: usr_object_perm_map_id_seq; Type: SEQUENCE; Schema: permission; Owner: evergreen +-- + +CREATE SEQUENCE usr_object_perm_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_object_perm_map_id_seq OWNER TO evergreen; + +-- +-- Name: usr_object_perm_map_id_seq; Type: SEQUENCE OWNED BY; Schema: permission; Owner: evergreen +-- + +ALTER SEQUENCE usr_object_perm_map_id_seq OWNED BY usr_object_perm_map.id; + + +-- +-- Name: usr_perm_map_id_seq; Type: SEQUENCE; Schema: permission; Owner: evergreen +-- + +CREATE SEQUENCE usr_perm_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_perm_map_id_seq OWNER TO evergreen; + +-- +-- Name: usr_perm_map_id_seq; Type: SEQUENCE OWNED BY; Schema: permission; Owner: evergreen +-- + +ALTER SEQUENCE usr_perm_map_id_seq OWNED BY usr_perm_map.id; + + +-- +-- Name: usr_work_ou_map; Type: TABLE; Schema: permission; Owner: evergreen +-- + +CREATE TABLE usr_work_ou_map ( + id integer NOT NULL, + usr integer NOT NULL, + work_ou integer NOT NULL +); + + +ALTER TABLE usr_work_ou_map OWNER TO evergreen; + +-- +-- Name: usr_work_ou_map_id_seq; Type: SEQUENCE; Schema: permission; Owner: evergreen +-- + +CREATE SEQUENCE usr_work_ou_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE usr_work_ou_map_id_seq OWNER TO evergreen; + +-- +-- Name: usr_work_ou_map_id_seq; Type: SEQUENCE OWNED BY; Schema: permission; Owner: evergreen +-- + +ALTER SEQUENCE usr_work_ou_map_id_seq OWNED BY usr_work_ou_map.id; + + +SET search_path = query, pg_catalog; + +-- +-- Name: bind_variable; Type: TABLE; Schema: query; Owner: evergreen +-- + +CREATE TABLE bind_variable ( + name text NOT NULL, + type text NOT NULL, + description text NOT NULL, + default_value text, + label text NOT NULL, + CONSTRAINT bind_variable_type CHECK ((type = ANY (ARRAY['string'::text, 'number'::text, 'string_list'::text, 'number_list'::text]))) +); + + +ALTER TABLE bind_variable OWNER TO evergreen; + +-- +-- Name: case_branch; Type: TABLE; Schema: query; Owner: evergreen +-- + +CREATE TABLE case_branch ( + id integer NOT NULL, + parent_expr integer NOT NULL, + seq_no integer NOT NULL, + condition integer, + result integer NOT NULL +); + + +ALTER TABLE case_branch OWNER TO evergreen; + +-- +-- Name: case_branch_id_seq; Type: SEQUENCE; Schema: query; Owner: evergreen +-- + +CREATE SEQUENCE case_branch_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE case_branch_id_seq OWNER TO evergreen; + +-- +-- Name: case_branch_id_seq; Type: SEQUENCE OWNED BY; Schema: query; Owner: evergreen +-- + +ALTER SEQUENCE case_branch_id_seq OWNED BY case_branch.id; + + +-- +-- Name: datatype; Type: TABLE; Schema: query; Owner: evergreen +-- + +CREATE TABLE datatype ( + id integer NOT NULL, + datatype_name text NOT NULL, + is_numeric boolean DEFAULT false NOT NULL, + is_composite boolean DEFAULT false NOT NULL, + CONSTRAINT qdt_comp_not_num CHECK (((is_numeric IS FALSE) OR (is_composite IS FALSE))) +); + + +ALTER TABLE datatype OWNER TO evergreen; + +-- +-- Name: datatype_id_seq; Type: SEQUENCE; Schema: query; Owner: evergreen +-- + +CREATE SEQUENCE datatype_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE datatype_id_seq OWNER TO evergreen; + +-- +-- Name: datatype_id_seq; Type: SEQUENCE OWNED BY; Schema: query; Owner: evergreen +-- + +ALTER SEQUENCE datatype_id_seq OWNED BY datatype.id; + + +-- +-- Name: expression; Type: TABLE; Schema: query; Owner: evergreen +-- + +CREATE TABLE expression ( + id integer NOT NULL, + type text NOT NULL, + parenthesize boolean DEFAULT false NOT NULL, + parent_expr integer, + seq_no integer DEFAULT 1 NOT NULL, + literal text, + table_alias text, + column_name text, + left_operand integer, + operator text, + right_operand integer, + function_id integer, + subquery integer, + cast_type integer, + negate boolean DEFAULT false NOT NULL, + bind_variable text, + CONSTRAINT expression_type CHECK ((type = ANY (ARRAY['xbet'::text, 'xbind'::text, 'xbool'::text, 'xcase'::text, 'xcast'::text, 'xcol'::text, 'xex'::text, 'xfunc'::text, 'xin'::text, 'xisnull'::text, 'xnull'::text, 'xnum'::text, 'xop'::text, 'xser'::text, 'xstr'::text, 'xsubq'::text]))) +); + + +ALTER TABLE expression OWNER TO evergreen; + +-- +-- Name: expr_xbet; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xbet AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.left_operand, + expression.negate + FROM expression + WHERE (expression.type = 'xbet'::text); + + +ALTER TABLE expr_xbet OWNER TO evergreen; + +-- +-- Name: expr_xbind; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xbind AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.bind_variable + FROM expression + WHERE (expression.type = 'xbind'::text); + + +ALTER TABLE expr_xbind OWNER TO evergreen; + +-- +-- Name: expr_xbool; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xbool AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.literal, + expression.negate + FROM expression + WHERE (expression.type = 'xbool'::text); + + +ALTER TABLE expr_xbool OWNER TO evergreen; + +-- +-- Name: expr_xcase; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xcase AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.left_operand, + expression.negate + FROM expression + WHERE (expression.type = 'xcase'::text); + + +ALTER TABLE expr_xcase OWNER TO evergreen; + +-- +-- Name: expr_xcast; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xcast AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.left_operand, + expression.cast_type, + expression.negate + FROM expression + WHERE (expression.type = 'xcast'::text); + + +ALTER TABLE expr_xcast OWNER TO evergreen; + +-- +-- Name: expr_xcol; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xcol AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.table_alias, + expression.column_name, + expression.negate + FROM expression + WHERE (expression.type = 'xcol'::text); + + +ALTER TABLE expr_xcol OWNER TO evergreen; + +-- +-- Name: expr_xex; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xex AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.subquery, + expression.negate + FROM expression + WHERE (expression.type = 'xex'::text); + + +ALTER TABLE expr_xex OWNER TO evergreen; + +-- +-- Name: expr_xfunc; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xfunc AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.column_name, + expression.function_id, + expression.negate + FROM expression + WHERE (expression.type = 'xfunc'::text); + + +ALTER TABLE expr_xfunc OWNER TO evergreen; + +-- +-- Name: expr_xin; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xin AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.left_operand, + expression.subquery, + expression.negate + FROM expression + WHERE (expression.type = 'xin'::text); + + +ALTER TABLE expr_xin OWNER TO evergreen; + +-- +-- Name: expr_xisnull; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xisnull AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.left_operand, + expression.negate + FROM expression + WHERE (expression.type = 'xisnull'::text); + + +ALTER TABLE expr_xisnull OWNER TO evergreen; + +-- +-- Name: expr_xnull; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xnull AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.negate + FROM expression + WHERE (expression.type = 'xnull'::text); + + +ALTER TABLE expr_xnull OWNER TO evergreen; + +-- +-- Name: expr_xnum; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xnum AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.literal + FROM expression + WHERE (expression.type = 'xnum'::text); + + +ALTER TABLE expr_xnum OWNER TO evergreen; + +-- +-- Name: expr_xop; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xop AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.left_operand, + expression.operator, + expression.right_operand, + expression.negate + FROM expression + WHERE (expression.type = 'xop'::text); + + +ALTER TABLE expr_xop OWNER TO evergreen; + +-- +-- Name: expr_xser; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xser AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.operator, + expression.negate + FROM expression + WHERE (expression.type = 'xser'::text); + + +ALTER TABLE expr_xser OWNER TO evergreen; + +-- +-- Name: expr_xstr; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xstr AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.literal + FROM expression + WHERE (expression.type = 'xstr'::text); + + +ALTER TABLE expr_xstr OWNER TO evergreen; + +-- +-- Name: expr_xsubq; Type: VIEW; Schema: query; Owner: evergreen +-- + +CREATE VIEW expr_xsubq AS + SELECT expression.id, + expression.parenthesize, + expression.parent_expr, + expression.seq_no, + expression.subquery, + expression.negate + FROM expression + WHERE (expression.type = 'xsubq'::text); + + +ALTER TABLE expr_xsubq OWNER TO evergreen; + +-- +-- Name: expression_id_seq; Type: SEQUENCE; Schema: query; Owner: evergreen +-- + +CREATE SEQUENCE expression_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE expression_id_seq OWNER TO evergreen; + +-- +-- Name: expression_id_seq; Type: SEQUENCE OWNED BY; Schema: query; Owner: evergreen +-- + +ALTER SEQUENCE expression_id_seq OWNED BY expression.id; + + +-- +-- Name: from_relation; Type: TABLE; Schema: query; Owner: evergreen +-- + +CREATE TABLE from_relation ( + id integer NOT NULL, + type text NOT NULL, + table_name text, + class_name text, + subquery integer, + function_call integer, + table_alias text, + parent_relation integer, + seq_no integer DEFAULT 1 NOT NULL, + join_type text, + on_clause integer, + CONSTRAINT good_join_type CHECK (((join_type IS NULL) OR (join_type = ANY (ARRAY['INNER'::text, 'LEFT'::text, 'RIGHT'::text, 'FULL'::text])))), + CONSTRAINT join_or_core CHECK ((((parent_relation IS NULL) AND (join_type IS NULL) AND (on_clause IS NULL)) OR ((parent_relation IS NOT NULL) AND (join_type IS NOT NULL) AND (on_clause IS NOT NULL)))), + CONSTRAINT relation_type CHECK ((type = ANY (ARRAY['RELATION'::text, 'SUBQUERY'::text, 'FUNCTION'::text]))) +); + + +ALTER TABLE from_relation OWNER TO evergreen; + +-- +-- Name: from_relation_id_seq; Type: SEQUENCE; Schema: query; Owner: evergreen +-- + +CREATE SEQUENCE from_relation_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE from_relation_id_seq OWNER TO evergreen; + +-- +-- Name: from_relation_id_seq; Type: SEQUENCE OWNED BY; Schema: query; Owner: evergreen +-- + +ALTER SEQUENCE from_relation_id_seq OWNED BY from_relation.id; + + +-- +-- Name: function_param_def; Type: TABLE; Schema: query; Owner: evergreen +-- + +CREATE TABLE function_param_def ( + id integer NOT NULL, + function_id integer NOT NULL, + seq_no integer NOT NULL, + datatype integer NOT NULL, + CONSTRAINT qfpd_pos_seq_no CHECK ((seq_no > 0)) +); + + +ALTER TABLE function_param_def OWNER TO evergreen; + +-- +-- Name: function_param_def_id_seq; Type: SEQUENCE; Schema: query; Owner: evergreen +-- + +CREATE SEQUENCE function_param_def_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE function_param_def_id_seq OWNER TO evergreen; + +-- +-- Name: function_param_def_id_seq; Type: SEQUENCE OWNED BY; Schema: query; Owner: evergreen +-- + +ALTER SEQUENCE function_param_def_id_seq OWNED BY function_param_def.id; + + +-- +-- Name: function_sig; Type: TABLE; Schema: query; Owner: evergreen +-- + +CREATE TABLE function_sig ( + id integer NOT NULL, + function_name text NOT NULL, + return_type integer, + is_aggregate boolean DEFAULT false NOT NULL, + CONSTRAINT qfd_rtn_or_aggr CHECK (((return_type IS NULL) OR (is_aggregate = false))) +); + + +ALTER TABLE function_sig OWNER TO evergreen; + +-- +-- Name: function_sig_id_seq; Type: SEQUENCE; Schema: query; Owner: evergreen +-- + +CREATE SEQUENCE function_sig_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE function_sig_id_seq OWNER TO evergreen; + +-- +-- Name: function_sig_id_seq; Type: SEQUENCE OWNED BY; Schema: query; Owner: evergreen +-- + +ALTER SEQUENCE function_sig_id_seq OWNED BY function_sig.id; + + +-- +-- Name: order_by_item; Type: TABLE; Schema: query; Owner: evergreen +-- + +CREATE TABLE order_by_item ( + id integer NOT NULL, + stored_query integer NOT NULL, + seq_no integer NOT NULL, + expression integer NOT NULL +); + + +ALTER TABLE order_by_item OWNER TO evergreen; + +-- +-- Name: order_by_item_id_seq; Type: SEQUENCE; Schema: query; Owner: evergreen +-- + +CREATE SEQUENCE order_by_item_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE order_by_item_id_seq OWNER TO evergreen; + +-- +-- Name: order_by_item_id_seq; Type: SEQUENCE OWNED BY; Schema: query; Owner: evergreen +-- + +ALTER SEQUENCE order_by_item_id_seq OWNED BY order_by_item.id; + + +-- +-- Name: query_sequence; Type: TABLE; Schema: query; Owner: evergreen +-- + +CREATE TABLE query_sequence ( + id integer NOT NULL, + parent_query integer NOT NULL, + seq_no integer NOT NULL, + child_query integer NOT NULL +); + + +ALTER TABLE query_sequence OWNER TO evergreen; + +-- +-- Name: query_sequence_id_seq; Type: SEQUENCE; Schema: query; Owner: evergreen +-- + +CREATE SEQUENCE query_sequence_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE query_sequence_id_seq OWNER TO evergreen; + +-- +-- Name: query_sequence_id_seq; Type: SEQUENCE OWNED BY; Schema: query; Owner: evergreen +-- + +ALTER SEQUENCE query_sequence_id_seq OWNED BY query_sequence.id; + + +-- +-- Name: record_column; Type: TABLE; Schema: query; Owner: evergreen +-- + +CREATE TABLE record_column ( + id integer NOT NULL, + from_relation integer NOT NULL, + seq_no integer NOT NULL, + column_name text NOT NULL, + column_type integer NOT NULL +); + + +ALTER TABLE record_column OWNER TO evergreen; + +-- +-- Name: record_column_id_seq; Type: SEQUENCE; Schema: query; Owner: evergreen +-- + +CREATE SEQUENCE record_column_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE record_column_id_seq OWNER TO evergreen; + +-- +-- Name: record_column_id_seq; Type: SEQUENCE OWNED BY; Schema: query; Owner: evergreen +-- + +ALTER SEQUENCE record_column_id_seq OWNED BY record_column.id; + + +-- +-- Name: select_item; Type: TABLE; Schema: query; Owner: evergreen +-- + +CREATE TABLE select_item ( + id integer NOT NULL, + stored_query integer NOT NULL, + seq_no integer NOT NULL, + expression integer NOT NULL, + column_alias text, + grouped_by boolean DEFAULT false NOT NULL +); + + +ALTER TABLE select_item OWNER TO evergreen; + +-- +-- Name: select_item_id_seq; Type: SEQUENCE; Schema: query; Owner: evergreen +-- + +CREATE SEQUENCE select_item_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE select_item_id_seq OWNER TO evergreen; + +-- +-- Name: select_item_id_seq; Type: SEQUENCE OWNED BY; Schema: query; Owner: evergreen +-- + +ALTER SEQUENCE select_item_id_seq OWNED BY select_item.id; + + +-- +-- Name: stored_query; Type: TABLE; Schema: query; Owner: evergreen +-- + +CREATE TABLE stored_query ( + id integer NOT NULL, + type text NOT NULL, + use_all boolean DEFAULT false NOT NULL, + use_distinct boolean DEFAULT false NOT NULL, + from_clause integer, + where_clause integer, + having_clause integer, + limit_count integer, + offset_count integer, + CONSTRAINT query_type CHECK ((type = ANY (ARRAY['SELECT'::text, 'UNION'::text, 'INTERSECT'::text, 'EXCEPT'::text]))) +); + + +ALTER TABLE stored_query OWNER TO evergreen; + +-- +-- Name: stored_query_id_seq; Type: SEQUENCE; Schema: query; Owner: evergreen +-- + +CREATE SEQUENCE stored_query_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE stored_query_id_seq OWNER TO evergreen; + +-- +-- Name: stored_query_id_seq; Type: SEQUENCE OWNED BY; Schema: query; Owner: evergreen +-- + +ALTER SEQUENCE stored_query_id_seq OWNED BY stored_query.id; + + +-- +-- Name: subfield; Type: TABLE; Schema: query; Owner: evergreen +-- + +CREATE TABLE subfield ( + id integer NOT NULL, + composite_type integer NOT NULL, + seq_no integer NOT NULL, + subfield_type integer NOT NULL, + CONSTRAINT qsf_pos_seq_no CHECK ((seq_no > 0)) +); + + +ALTER TABLE subfield OWNER TO evergreen; + +-- +-- Name: subfield_id_seq; Type: SEQUENCE; Schema: query; Owner: evergreen +-- + +CREATE SEQUENCE subfield_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE subfield_id_seq OWNER TO evergreen; + +-- +-- Name: subfield_id_seq; Type: SEQUENCE OWNED BY; Schema: query; Owner: evergreen +-- + +ALTER SEQUENCE subfield_id_seq OWNED BY subfield.id; + + +SET search_path = reporter, pg_catalog; + +-- +-- Name: circ_type; Type: VIEW; Schema: reporter; Owner: evergreen +-- + +CREATE VIEW circ_type AS + SELECT circulation.id, + CASE + WHEN (circulation.opac_renewal OR circulation.phone_renewal OR circulation.desk_renewal) THEN 'RENEWAL'::text + ELSE 'CHECKOUT'::text + END AS type + FROM action.circulation; + + +ALTER TABLE circ_type OWNER TO evergreen; + +-- +-- Name: report; Type: TABLE; Schema: reporter; Owner: evergreen +-- + +CREATE TABLE report ( + id integer NOT NULL, + owner integer NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL, + name text DEFAULT ''::text NOT NULL, + description text DEFAULT ''::text NOT NULL, + template integer NOT NULL, + data text NOT NULL, + folder integer NOT NULL, + recur boolean DEFAULT false NOT NULL, + recurrence interval +); + + +ALTER TABLE report OWNER TO evergreen; + +-- +-- Name: schedule; Type: TABLE; Schema: reporter; Owner: evergreen +-- + +CREATE TABLE schedule ( + id integer NOT NULL, + report integer NOT NULL, + folder integer NOT NULL, + runner integer NOT NULL, + run_time timestamp with time zone DEFAULT now() NOT NULL, + start_time timestamp with time zone, + complete_time timestamp with time zone, + email text, + excel_format boolean DEFAULT true NOT NULL, + html_format boolean DEFAULT true NOT NULL, + csv_format boolean DEFAULT true NOT NULL, + chart_pie boolean DEFAULT false NOT NULL, + chart_bar boolean DEFAULT false NOT NULL, + chart_line boolean DEFAULT false NOT NULL, + error_code integer, + error_text text +); + + +ALTER TABLE schedule OWNER TO evergreen; + +-- +-- Name: currently_running; Type: VIEW; Schema: reporter; Owner: evergreen +-- + +CREATE VIEW currently_running AS + SELECT s.id, + c.barcode AS runner_barcode, + r.name, + s.run_time, + (s.run_time - now()) AS scheduled_wait_time + FROM (((schedule s + JOIN report r ON ((r.id = s.report))) + JOIN actor.usr u ON ((s.runner = u.id))) + JOIN actor.card c ON ((c.id = u.card))) + WHERE ((s.start_time IS NOT NULL) AND (s.complete_time IS NULL)); + + +ALTER TABLE currently_running OWNER TO evergreen; + +-- +-- Name: demographic; Type: VIEW; Schema: reporter; Owner: evergreen +-- + +CREATE VIEW demographic AS + SELECT u.id, + u.dob, + CASE + WHEN (u.dob IS NULL) THEN 'Adult'::text + WHEN (age((u.dob)::timestamp with time zone) > '18 years'::interval) THEN 'Adult'::text + ELSE 'Juvenile'::text + END AS general_division + FROM actor.usr u; + + +ALTER TABLE demographic OWNER TO evergreen; + +SET search_path = serial, pg_catalog; + +-- +-- Name: issuance; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE issuance ( + id integer NOT NULL, + creator integer NOT NULL, + editor integer NOT NULL, + create_date timestamp with time zone DEFAULT now() NOT NULL, + edit_date timestamp with time zone DEFAULT now() NOT NULL, + subscription integer NOT NULL, + label text, + date_published timestamp with time zone, + caption_and_pattern integer, + holding_code text, + holding_type text, + holding_link_id integer, + CONSTRAINT issuance_holding_code_check CHECK (((holding_code IS NULL) OR evergreen.could_be_serial_holding_code(holding_code))), + CONSTRAINT issuance_holding_code_check1 CHECK (((holding_code IS NULL) OR evergreen.is_json(holding_code))), + CONSTRAINT valid_holding_type CHECK (((holding_type IS NULL) OR (holding_type = ANY (ARRAY['basic'::text, 'supplement'::text, 'index'::text])))) +); + + +ALTER TABLE issuance OWNER TO evergreen; + +-- +-- Name: subscription; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE subscription ( + id integer NOT NULL, + owning_lib integer DEFAULT 1 NOT NULL, + start_date timestamp with time zone NOT NULL, + end_date timestamp with time zone, + record_entry bigint, + expected_date_offset interval +); + + +ALTER TABLE subscription OWNER TO evergreen; + +SET search_path = reporter, pg_catalog; + +-- +-- Name: hold_request_record; Type: VIEW; Schema: reporter; Owner: evergreen +-- + +CREATE VIEW hold_request_record AS + SELECT ahr.id, + ahr.target, + ahr.hold_type, + CASE + WHEN (ahr.hold_type = 'T'::text) THEN ahr.target + WHEN (ahr.hold_type = 'I'::text) THEN ( SELECT ssub.record_entry + FROM (serial.subscription ssub + JOIN serial.issuance si ON ((si.subscription = ssub.id))) + WHERE (si.id = ahr.target)) + WHEN (ahr.hold_type = 'V'::text) THEN ( SELECT cn.record + FROM asset.call_number cn + WHERE (cn.id = ahr.target)) + WHEN (ahr.hold_type = ANY (ARRAY['C'::text, 'R'::text, 'F'::text])) THEN ( SELECT cn.record + FROM (asset.call_number cn + JOIN asset.copy cp ON ((cn.id = cp.call_number))) + WHERE (cp.id = ahr.target)) + WHEN (ahr.hold_type = 'M'::text) THEN ( SELECT mr.master_record + FROM metabib.metarecord mr + WHERE (mr.id = ahr.target)) + WHEN (ahr.hold_type = 'P'::text) THEN ( SELECT bmp.record + FROM biblio.monograph_part bmp + WHERE (bmp.id = ahr.target)) + ELSE NULL::bigint + END AS bib_record + FROM action.hold_request ahr; + + +ALTER TABLE hold_request_record OWNER TO evergreen; + +-- +-- Name: materialized_simple_record; Type: TABLE; Schema: reporter; Owner: evergreen +-- + +CREATE TABLE materialized_simple_record ( + id bigint NOT NULL, + fingerprint text, + quality integer, + tcn_source text, + tcn_value text, + title text, + author text, + publisher text, + pubdate text, + isbn text[], + issn text[] +); + + +ALTER TABLE materialized_simple_record OWNER TO evergreen; + +-- +-- Name: old_super_simple_record; Type: VIEW; Schema: reporter; Owner: evergreen +-- + +CREATE VIEW old_super_simple_record AS + SELECT r.id, + r.fingerprint, + r.quality, + r.tcn_source, + r.tcn_value, + public.first(title.value) AS title, + public.first(author.value) AS author, + string_agg(DISTINCT publisher.value, ', '::text) AS publisher, + string_agg(DISTINCT "substring"(pubdate.value, '\d+'::text), ', '::text) AS pubdate, + CASE + WHEN (array_agg(DISTINCT replace("substring"(isbn.value, '^\S+'::text), '-'::text, ''::text)) = '{NULL}'::text[]) THEN NULL::text[] + ELSE array_agg(DISTINCT replace("substring"(isbn.value, '^\S+'::text), '-'::text, ''::text)) + END AS isbn, + CASE + WHEN (array_agg(DISTINCT regexp_replace(issn.value, '^\S*(\d{4})[-\s](\d{3,4}x?)'::text, '\1 \2'::text)) = '{NULL}'::text[]) THEN NULL::text[] + ELSE array_agg(DISTINCT regexp_replace(issn.value, '^\S*(\d{4})[-\s](\d{3,4}x?)'::text, '\1 \2'::text)) + END AS issn + FROM ((((((biblio.record_entry r + LEFT JOIN metabib.full_rec title ON (((r.id = title.record) AND (title.tag = '245'::bpchar) AND (title.subfield = 'a'::text)))) + LEFT JOIN metabib.full_rec author ON (((r.id = author.record) AND (author.tag = ANY (ARRAY['100'::bpchar, '110'::bpchar, '111'::bpchar])) AND (author.subfield = 'a'::text)))) + LEFT JOIN metabib.full_rec publisher ON (((r.id = publisher.record) AND ((publisher.tag = '260'::bpchar) OR ((publisher.tag = '264'::bpchar) AND (publisher.ind2 = '1'::text))) AND (publisher.subfield = 'b'::text)))) + LEFT JOIN metabib.full_rec pubdate ON (((r.id = pubdate.record) AND ((pubdate.tag = '260'::bpchar) OR ((pubdate.tag = '264'::bpchar) AND (pubdate.ind2 = '1'::text))) AND (pubdate.subfield = 'c'::text)))) + LEFT JOIN metabib.full_rec isbn ON (((r.id = isbn.record) AND (isbn.tag = ANY (ARRAY['024'::bpchar, '020'::bpchar])) AND (isbn.subfield = ANY (ARRAY['a'::text, 'z'::text]))))) + LEFT JOIN metabib.full_rec issn ON (((r.id = issn.record) AND (issn.tag = '022'::bpchar) AND (issn.subfield = 'a'::text)))) + GROUP BY r.id, r.fingerprint, r.quality, r.tcn_source, r.tcn_value; + + +ALTER TABLE old_super_simple_record OWNER TO evergreen; + +-- +-- Name: output_folder; Type: TABLE; Schema: reporter; Owner: evergreen +-- + +CREATE TABLE output_folder ( + id integer NOT NULL, + parent integer, + owner integer NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL, + name text NOT NULL, + shared boolean DEFAULT false NOT NULL, + share_with integer +); + + +ALTER TABLE output_folder OWNER TO evergreen; + +-- +-- Name: output_folder_id_seq; Type: SEQUENCE; Schema: reporter; Owner: evergreen +-- + +CREATE SEQUENCE output_folder_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE output_folder_id_seq OWNER TO evergreen; + +-- +-- Name: output_folder_id_seq; Type: SEQUENCE OWNED BY; Schema: reporter; Owner: evergreen +-- + +ALTER SEQUENCE output_folder_id_seq OWNED BY output_folder.id; + + +-- +-- Name: overdue_circs; Type: VIEW; Schema: reporter; Owner: evergreen +-- + +CREATE VIEW overdue_circs AS + SELECT circulation.id, + circulation.usr, + circulation.xact_start, + circulation.xact_finish, + circulation.unrecovered, + circulation.target_copy, + circulation.circ_lib, + circulation.circ_staff, + circulation.checkin_staff, + circulation.checkin_lib, + circulation.renewal_remaining, + circulation.grace_period, + circulation.due_date, + circulation.stop_fines_time, + circulation.checkin_time, + circulation.create_time, + circulation.duration, + circulation.fine_interval, + circulation.recurring_fine, + circulation.max_fine, + circulation.phone_renewal, + circulation.desk_renewal, + circulation.opac_renewal, + circulation.duration_rule, + circulation.recurring_fine_rule, + circulation.max_fine_rule, + circulation.stop_fines, + circulation.workstation, + circulation.checkin_workstation, + circulation.copy_location, + circulation.checkin_scan_time, + circulation.parent_circ + FROM action.circulation + WHERE ((circulation.checkin_time IS NULL) AND ((circulation.stop_fines <> ALL (ARRAY['LOST'::text, 'CLAIMSRETURNED'::text])) OR (circulation.stop_fines IS NULL)) AND (circulation.due_date < now())); + + +ALTER TABLE overdue_circs OWNER TO evergreen; + +-- +-- Name: overdue_reports; Type: VIEW; Schema: reporter; Owner: evergreen +-- + +CREATE VIEW overdue_reports AS + SELECT s.id, + c.barcode AS runner_barcode, + r.name, + s.run_time, + (s.run_time - now()) AS scheduled_wait_time + FROM (((schedule s + JOIN report r ON ((r.id = s.report))) + JOIN actor.usr u ON ((s.runner = u.id))) + JOIN actor.card c ON ((c.id = u.card))) + WHERE ((s.start_time IS NULL) AND (s.run_time < now())); + + +ALTER TABLE overdue_reports OWNER TO evergreen; + +-- +-- Name: pending_reports; Type: VIEW; Schema: reporter; Owner: evergreen +-- + +CREATE VIEW pending_reports AS + SELECT s.id, + c.barcode AS runner_barcode, + r.name, + s.run_time, + (s.run_time - now()) AS scheduled_wait_time + FROM (((schedule s + JOIN report r ON ((r.id = s.report))) + JOIN actor.usr u ON ((s.runner = u.id))) + JOIN actor.card c ON ((c.id = u.card))) + WHERE (s.start_time IS NULL); + + +ALTER TABLE pending_reports OWNER TO evergreen; + +-- +-- Name: report_folder; Type: TABLE; Schema: reporter; Owner: evergreen +-- + +CREATE TABLE report_folder ( + id integer NOT NULL, + parent integer, + owner integer NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL, + name text NOT NULL, + shared boolean DEFAULT false NOT NULL, + share_with integer +); + + +ALTER TABLE report_folder OWNER TO evergreen; + +-- +-- Name: report_folder_id_seq; Type: SEQUENCE; Schema: reporter; Owner: evergreen +-- + +CREATE SEQUENCE report_folder_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE report_folder_id_seq OWNER TO evergreen; + +-- +-- Name: report_folder_id_seq; Type: SEQUENCE OWNED BY; Schema: reporter; Owner: evergreen +-- + +ALTER SEQUENCE report_folder_id_seq OWNED BY report_folder.id; + + +-- +-- Name: report_id_seq; Type: SEQUENCE; Schema: reporter; Owner: evergreen +-- + +CREATE SEQUENCE report_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE report_id_seq OWNER TO evergreen; + +-- +-- Name: report_id_seq; Type: SEQUENCE OWNED BY; Schema: reporter; Owner: evergreen +-- + +ALTER SEQUENCE report_id_seq OWNED BY report.id; + + +-- +-- Name: schedule_id_seq; Type: SEQUENCE; Schema: reporter; Owner: evergreen +-- + +CREATE SEQUENCE schedule_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE schedule_id_seq OWNER TO evergreen; + +-- +-- Name: schedule_id_seq; Type: SEQUENCE OWNED BY; Schema: reporter; Owner: evergreen +-- + +ALTER SEQUENCE schedule_id_seq OWNED BY schedule.id; + + +-- +-- Name: simple_record; Type: VIEW; Schema: reporter; Owner: evergreen +-- + +CREATE VIEW simple_record AS + SELECT r.id, + s.metarecord, + r.fingerprint, + r.quality, + r.tcn_source, + r.tcn_value, + title.value AS title, + uniform_title.value AS uniform_title, + author.value AS author, + publisher.value AS publisher, + "substring"(pubdate.value, '\d+'::text) AS pubdate, + series_title.value AS series_title, + series_statement.value AS series_statement, + summary.value AS summary, + array_agg(DISTINCT replace("substring"(isbn.value, '^\S+'::text), '-'::text, ''::text)) AS isbn, + array_agg(DISTINCT regexp_replace(issn.value, '^\S*(\d{4})[-\s](\d{3,4}x?)'::text, '\1 \2'::text)) AS issn, + ARRAY( SELECT DISTINCT full_rec.value + FROM metabib.full_rec + WHERE ((full_rec.tag = '650'::bpchar) AND (full_rec.subfield = 'a'::text) AND (full_rec.record = r.id))) AS topic_subject, + ARRAY( SELECT DISTINCT full_rec.value + FROM metabib.full_rec + WHERE ((full_rec.tag = '651'::bpchar) AND (full_rec.subfield = 'a'::text) AND (full_rec.record = r.id))) AS geographic_subject, + ARRAY( SELECT DISTINCT full_rec.value + FROM metabib.full_rec + WHERE ((full_rec.tag = '655'::bpchar) AND (full_rec.subfield = 'a'::text) AND (full_rec.record = r.id))) AS genre, + ARRAY( SELECT DISTINCT full_rec.value + FROM metabib.full_rec + WHERE ((full_rec.tag = '600'::bpchar) AND (full_rec.subfield = 'a'::text) AND (full_rec.record = r.id))) AS name_subject, + ARRAY( SELECT DISTINCT full_rec.value + FROM metabib.full_rec + WHERE ((full_rec.tag = '610'::bpchar) AND (full_rec.subfield = 'a'::text) AND (full_rec.record = r.id))) AS corporate_subject, + ARRAY( SELECT full_rec.value + FROM metabib.full_rec + WHERE ((full_rec.tag = '856'::bpchar) AND (full_rec.subfield = ANY (ARRAY['3'::text, 'y'::text, 'u'::text])) AND (full_rec.record = r.id)) + ORDER BY + CASE + WHEN (full_rec.subfield = ANY (ARRAY['3'::text, 'y'::text])) THEN 0 + ELSE 1 + END) AS external_uri + FROM (((((((((((biblio.record_entry r + JOIN metabib.metarecord_source_map s ON ((s.source = r.id))) + LEFT JOIN metabib.full_rec uniform_title ON (((r.id = uniform_title.record) AND (uniform_title.tag = '240'::bpchar) AND (uniform_title.subfield = 'a'::text)))) + LEFT JOIN metabib.full_rec title ON (((r.id = title.record) AND (title.tag = '245'::bpchar) AND (title.subfield = 'a'::text)))) + LEFT JOIN metabib.full_rec author ON (((r.id = author.record) AND (author.tag = '100'::bpchar) AND (author.subfield = 'a'::text)))) + LEFT JOIN metabib.full_rec publisher ON (((r.id = publisher.record) AND ((publisher.tag = '260'::bpchar) OR ((publisher.tag = '264'::bpchar) AND (publisher.ind2 = '1'::text))) AND (publisher.subfield = 'b'::text)))) + LEFT JOIN metabib.full_rec pubdate ON (((r.id = pubdate.record) AND ((pubdate.tag = '260'::bpchar) OR ((publisher.tag = '264'::bpchar) AND (publisher.ind2 = '1'::text))) AND (pubdate.subfield = 'c'::text)))) + LEFT JOIN metabib.full_rec isbn ON (((r.id = isbn.record) AND (isbn.tag = ANY (ARRAY['024'::bpchar, '020'::bpchar])) AND (isbn.subfield = ANY (ARRAY['a'::text, 'z'::text]))))) + LEFT JOIN metabib.full_rec issn ON (((r.id = issn.record) AND (issn.tag = '022'::bpchar) AND (issn.subfield = 'a'::text)))) + LEFT JOIN metabib.full_rec series_title ON (((r.id = series_title.record) AND (series_title.tag = ANY (ARRAY['830'::bpchar, '440'::bpchar])) AND (series_title.subfield = 'a'::text)))) + LEFT JOIN metabib.full_rec series_statement ON (((r.id = series_statement.record) AND (series_statement.tag = '490'::bpchar) AND (series_statement.subfield = 'a'::text)))) + LEFT JOIN metabib.full_rec summary ON (((r.id = summary.record) AND (summary.tag = '520'::bpchar) AND (summary.subfield = 'a'::text)))) + GROUP BY r.id, s.metarecord, r.fingerprint, r.quality, r.tcn_source, r.tcn_value, title.value, uniform_title.value, author.value, publisher.value, ("substring"(pubdate.value, '\d+'::text)), series_title.value, series_statement.value, summary.value; + + +ALTER TABLE simple_record OWNER TO evergreen; + +-- +-- Name: super_simple_record; Type: VIEW; Schema: reporter; Owner: evergreen +-- + +CREATE VIEW super_simple_record AS + SELECT materialized_simple_record.id, + materialized_simple_record.fingerprint, + materialized_simple_record.quality, + materialized_simple_record.tcn_source, + materialized_simple_record.tcn_value, + materialized_simple_record.title, + materialized_simple_record.author, + materialized_simple_record.publisher, + materialized_simple_record.pubdate, + materialized_simple_record.isbn, + materialized_simple_record.issn + FROM materialized_simple_record; + + +ALTER TABLE super_simple_record OWNER TO evergreen; + +-- +-- Name: template; Type: TABLE; Schema: reporter; Owner: evergreen +-- + +CREATE TABLE template ( + id integer NOT NULL, + owner integer NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL, + name text NOT NULL, + description text NOT NULL, + data text NOT NULL, + folder integer NOT NULL +); + + +ALTER TABLE template OWNER TO evergreen; + +-- +-- Name: template_folder; Type: TABLE; Schema: reporter; Owner: evergreen +-- + +CREATE TABLE template_folder ( + id integer NOT NULL, + parent integer, + owner integer NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL, + name text NOT NULL, + shared boolean DEFAULT false NOT NULL, + share_with integer +); + + +ALTER TABLE template_folder OWNER TO evergreen; + +-- +-- Name: template_folder_id_seq; Type: SEQUENCE; Schema: reporter; Owner: evergreen +-- + +CREATE SEQUENCE template_folder_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE template_folder_id_seq OWNER TO evergreen; + +-- +-- Name: template_folder_id_seq; Type: SEQUENCE OWNED BY; Schema: reporter; Owner: evergreen +-- + +ALTER SEQUENCE template_folder_id_seq OWNED BY template_folder.id; + + +-- +-- Name: template_id_seq; Type: SEQUENCE; Schema: reporter; Owner: evergreen +-- + +CREATE SEQUENCE template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE template_id_seq OWNER TO evergreen; + +-- +-- Name: template_id_seq; Type: SEQUENCE OWNED BY; Schema: reporter; Owner: evergreen +-- + +ALTER SEQUENCE template_id_seq OWNED BY template.id; + + +-- +-- Name: xact_billing_totals; Type: VIEW; Schema: reporter; Owner: evergreen +-- + +CREATE VIEW xact_billing_totals AS + SELECT b.xact, + sum( + CASE + WHEN b.voided THEN (0)::numeric + ELSE b.amount + END) AS unvoided, + sum( + CASE + WHEN b.voided THEN b.amount + ELSE (0)::numeric + END) AS voided, + sum(b.amount) AS total + FROM money.billing b + GROUP BY b.xact; + + +ALTER TABLE xact_billing_totals OWNER TO evergreen; + +-- +-- Name: xact_paid_totals; Type: VIEW; Schema: reporter; Owner: evergreen +-- + +CREATE VIEW xact_paid_totals AS + SELECT b.xact, + sum( + CASE + WHEN b.voided THEN (0)::numeric + ELSE b.amount + END) AS unvoided, + sum( + CASE + WHEN b.voided THEN b.amount + ELSE (0)::numeric + END) AS voided, + sum(b.amount) AS total + FROM money.payment b + GROUP BY b.xact; + + +ALTER TABLE xact_paid_totals OWNER TO evergreen; + +SET search_path = search, pg_catalog; + +-- +-- Name: relevance_adjustment; Type: TABLE; Schema: search; Owner: evergreen +-- + +CREATE TABLE relevance_adjustment ( + id integer NOT NULL, + active boolean DEFAULT true NOT NULL, + field integer NOT NULL, + bump_type text NOT NULL, + multiplier numeric DEFAULT 1.0 NOT NULL, + CONSTRAINT relevance_adjustment_bump_type_check CHECK ((bump_type = ANY (ARRAY['word_order'::text, 'first_word'::text, 'full_match'::text]))) +); + + +ALTER TABLE relevance_adjustment OWNER TO evergreen; + +-- +-- Name: relevance_adjustment_id_seq; Type: SEQUENCE; Schema: search; Owner: evergreen +-- + +CREATE SEQUENCE relevance_adjustment_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE relevance_adjustment_id_seq OWNER TO evergreen; + +-- +-- Name: relevance_adjustment_id_seq; Type: SEQUENCE OWNED BY; Schema: search; Owner: evergreen +-- + +ALTER SEQUENCE relevance_adjustment_id_seq OWNED BY relevance_adjustment.id; + + +SET search_path = serial, pg_catalog; + +-- +-- Name: basic_summary; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE basic_summary ( + id integer NOT NULL, + distribution integer NOT NULL, + generated_coverage text NOT NULL, + textual_holdings text, + show_generated boolean DEFAULT true NOT NULL +); + + +ALTER TABLE basic_summary OWNER TO evergreen; + +-- +-- Name: index_summary; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE index_summary ( + id integer NOT NULL, + distribution integer NOT NULL, + generated_coverage text NOT NULL, + textual_holdings text, + show_generated boolean DEFAULT true NOT NULL +); + + +ALTER TABLE index_summary OWNER TO evergreen; + +-- +-- Name: supplement_summary; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE supplement_summary ( + id integer NOT NULL, + distribution integer NOT NULL, + generated_coverage text NOT NULL, + textual_holdings text, + show_generated boolean DEFAULT true NOT NULL +); + + +ALTER TABLE supplement_summary OWNER TO evergreen; + +-- +-- Name: any_summary; Type: VIEW; Schema: serial; Owner: evergreen +-- + +CREATE VIEW any_summary AS + SELECT 'basic'::text AS summary_type, + basic_summary.id, + basic_summary.distribution, + basic_summary.generated_coverage, + basic_summary.textual_holdings, + basic_summary.show_generated + FROM basic_summary +UNION + SELECT 'index'::text AS summary_type, + index_summary.id, + index_summary.distribution, + index_summary.generated_coverage, + index_summary.textual_holdings, + index_summary.show_generated + FROM index_summary +UNION + SELECT 'supplement'::text AS summary_type, + supplement_summary.id, + supplement_summary.distribution, + supplement_summary.generated_coverage, + supplement_summary.textual_holdings, + supplement_summary.show_generated + FROM supplement_summary; + + +ALTER TABLE any_summary OWNER TO evergreen; + +-- +-- Name: basic_summary_id_seq; Type: SEQUENCE; Schema: serial; Owner: evergreen +-- + +CREATE SEQUENCE basic_summary_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE basic_summary_id_seq OWNER TO evergreen; + +-- +-- Name: basic_summary_id_seq; Type: SEQUENCE OWNED BY; Schema: serial; Owner: evergreen +-- + +ALTER SEQUENCE basic_summary_id_seq OWNED BY basic_summary.id; + + +-- +-- Name: caption_and_pattern; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE caption_and_pattern ( + id integer NOT NULL, + subscription integer NOT NULL, + type text NOT NULL, + create_date timestamp with time zone DEFAULT now() NOT NULL, + start_date timestamp with time zone DEFAULT now() NOT NULL, + end_date timestamp with time zone, + active boolean DEFAULT false NOT NULL, + pattern_code text NOT NULL, + enum_1 text, + enum_2 text, + enum_3 text, + enum_4 text, + enum_5 text, + enum_6 text, + chron_1 text, + chron_2 text, + chron_3 text, + chron_4 text, + chron_5 text, + CONSTRAINT cap_type CHECK ((type = ANY (ARRAY['basic'::text, 'supplement'::text, 'index'::text]))) +); + + +ALTER TABLE caption_and_pattern OWNER TO evergreen; + +-- +-- Name: caption_and_pattern_id_seq; Type: SEQUENCE; Schema: serial; Owner: evergreen +-- + +CREATE SEQUENCE caption_and_pattern_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE caption_and_pattern_id_seq OWNER TO evergreen; + +-- +-- Name: caption_and_pattern_id_seq; Type: SEQUENCE OWNED BY; Schema: serial; Owner: evergreen +-- + +ALTER SEQUENCE caption_and_pattern_id_seq OWNED BY caption_and_pattern.id; + + +-- +-- Name: distribution; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE distribution ( + id integer NOT NULL, + record_entry bigint, + summary_method text, + subscription integer NOT NULL, + holding_lib integer NOT NULL, + label text NOT NULL, + display_grouping text DEFAULT 'chron'::text NOT NULL, + receive_call_number bigint, + receive_unit_template integer, + bind_call_number bigint, + bind_unit_template integer, + unit_label_prefix text, + unit_label_suffix text, + CONSTRAINT distribution_display_grouping_check CHECK ((display_grouping = ANY (ARRAY['enum'::text, 'chron'::text]))), + CONSTRAINT sdist_summary_method_check CHECK (((summary_method IS NULL) OR (summary_method = ANY (ARRAY['add_to_sre'::text, 'merge_with_sre'::text, 'use_sre_only'::text, 'use_sdist_only'::text])))) +); + + +ALTER TABLE distribution OWNER TO evergreen; + +-- +-- Name: distribution_id_seq; Type: SEQUENCE; Schema: serial; Owner: evergreen +-- + +CREATE SEQUENCE distribution_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE distribution_id_seq OWNER TO evergreen; + +-- +-- Name: distribution_id_seq; Type: SEQUENCE OWNED BY; Schema: serial; Owner: evergreen +-- + +ALTER SEQUENCE distribution_id_seq OWNED BY distribution.id; + + +-- +-- Name: distribution_note; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE distribution_note ( + id integer NOT NULL, + distribution integer NOT NULL, + creator integer NOT NULL, + create_date timestamp with time zone DEFAULT now(), + pub boolean DEFAULT false NOT NULL, + alert boolean DEFAULT false NOT NULL, + title text NOT NULL, + value text NOT NULL +); + + +ALTER TABLE distribution_note OWNER TO evergreen; + +-- +-- Name: distribution_note_id_seq; Type: SEQUENCE; Schema: serial; Owner: evergreen +-- + +CREATE SEQUENCE distribution_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE distribution_note_id_seq OWNER TO evergreen; + +-- +-- Name: distribution_note_id_seq; Type: SEQUENCE OWNED BY; Schema: serial; Owner: evergreen +-- + +ALTER SEQUENCE distribution_note_id_seq OWNED BY distribution_note.id; + + +-- +-- Name: index_summary_id_seq; Type: SEQUENCE; Schema: serial; Owner: evergreen +-- + +CREATE SEQUENCE index_summary_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE index_summary_id_seq OWNER TO evergreen; + +-- +-- Name: index_summary_id_seq; Type: SEQUENCE OWNED BY; Schema: serial; Owner: evergreen +-- + +ALTER SEQUENCE index_summary_id_seq OWNED BY index_summary.id; + + +-- +-- Name: issuance_id_seq; Type: SEQUENCE; Schema: serial; Owner: evergreen +-- + +CREATE SEQUENCE issuance_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE issuance_id_seq OWNER TO evergreen; + +-- +-- Name: issuance_id_seq; Type: SEQUENCE OWNED BY; Schema: serial; Owner: evergreen +-- + +ALTER SEQUENCE issuance_id_seq OWNED BY issuance.id; + + +-- +-- Name: item; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE item ( + id integer NOT NULL, + creator integer NOT NULL, + editor integer NOT NULL, + create_date timestamp with time zone DEFAULT now() NOT NULL, + edit_date timestamp with time zone DEFAULT now() NOT NULL, + issuance integer NOT NULL, + stream integer NOT NULL, + unit integer, + uri integer, + date_expected timestamp with time zone, + date_received timestamp with time zone, + status text DEFAULT 'Expected'::text, + shadowed boolean DEFAULT false NOT NULL, + CONSTRAINT valid_status CHECK ((status = ANY (ARRAY['Bindery'::text, 'Bound'::text, 'Claimed'::text, 'Discarded'::text, 'Expected'::text, 'Not Held'::text, 'Not Published'::text, 'Received'::text]))) +); + + +ALTER TABLE item OWNER TO evergreen; + +-- +-- Name: item_id_seq; Type: SEQUENCE; Schema: serial; Owner: evergreen +-- + +CREATE SEQUENCE item_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE item_id_seq OWNER TO evergreen; + +-- +-- Name: item_id_seq; Type: SEQUENCE OWNED BY; Schema: serial; Owner: evergreen +-- + +ALTER SEQUENCE item_id_seq OWNED BY item.id; + + +-- +-- Name: item_note; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE item_note ( + id integer NOT NULL, + item integer NOT NULL, + creator integer NOT NULL, + create_date timestamp with time zone DEFAULT now(), + pub boolean DEFAULT false NOT NULL, + alert boolean DEFAULT false NOT NULL, + title text NOT NULL, + value text NOT NULL +); + + +ALTER TABLE item_note OWNER TO evergreen; + +-- +-- Name: item_note_id_seq; Type: SEQUENCE; Schema: serial; Owner: evergreen +-- + +CREATE SEQUENCE item_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE item_note_id_seq OWNER TO evergreen; + +-- +-- Name: item_note_id_seq; Type: SEQUENCE OWNED BY; Schema: serial; Owner: evergreen +-- + +ALTER SEQUENCE item_note_id_seq OWNED BY item_note.id; + + +-- +-- Name: materialized_holding_code; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE materialized_holding_code ( + id bigint NOT NULL, + issuance integer NOT NULL, + subfield character(1), + value text +); + + +ALTER TABLE materialized_holding_code OWNER TO evergreen; + +-- +-- Name: materialized_holding_code_id_seq; Type: SEQUENCE; Schema: serial; Owner: evergreen +-- + +CREATE SEQUENCE materialized_holding_code_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE materialized_holding_code_id_seq OWNER TO evergreen; + +-- +-- Name: materialized_holding_code_id_seq; Type: SEQUENCE OWNED BY; Schema: serial; Owner: evergreen +-- + +ALTER SEQUENCE materialized_holding_code_id_seq OWNED BY materialized_holding_code.id; + + +-- +-- Name: record_entry; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE record_entry ( + id bigint NOT NULL, + record bigint, + owning_lib integer DEFAULT 1 NOT NULL, + creator integer DEFAULT 1 NOT NULL, + editor integer DEFAULT 1 NOT NULL, + source integer, + create_date timestamp with time zone DEFAULT now() NOT NULL, + edit_date timestamp with time zone DEFAULT now() NOT NULL, + active boolean DEFAULT true NOT NULL, + deleted boolean DEFAULT false NOT NULL, + marc text, + last_xact_id text NOT NULL +); + + +ALTER TABLE record_entry OWNER TO evergreen; + +-- +-- Name: record_entry_id_seq; Type: SEQUENCE; Schema: serial; Owner: evergreen +-- + +CREATE SEQUENCE record_entry_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE record_entry_id_seq OWNER TO evergreen; + +-- +-- Name: record_entry_id_seq; Type: SEQUENCE OWNED BY; Schema: serial; Owner: evergreen +-- + +ALTER SEQUENCE record_entry_id_seq OWNED BY record_entry.id; + + +-- +-- Name: routing_list_user; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE routing_list_user ( + id integer NOT NULL, + stream integer NOT NULL, + pos integer DEFAULT 1 NOT NULL, + reader integer, + department text, + note text, + CONSTRAINT reader_or_dept CHECK ((((reader IS NOT NULL) AND (department IS NULL)) OR ((reader IS NULL) AND (department IS NOT NULL)))) +); + + +ALTER TABLE routing_list_user OWNER TO evergreen; + +-- +-- Name: routing_list_user_id_seq; Type: SEQUENCE; Schema: serial; Owner: evergreen +-- + +CREATE SEQUENCE routing_list_user_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE routing_list_user_id_seq OWNER TO evergreen; + +-- +-- Name: routing_list_user_id_seq; Type: SEQUENCE OWNED BY; Schema: serial; Owner: evergreen +-- + +ALTER SEQUENCE routing_list_user_id_seq OWNED BY routing_list_user.id; + + +-- +-- Name: stream; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE stream ( + id integer NOT NULL, + distribution integer NOT NULL, + routing_label text +); + + +ALTER TABLE stream OWNER TO evergreen; + +-- +-- Name: stream_id_seq; Type: SEQUENCE; Schema: serial; Owner: evergreen +-- + +CREATE SEQUENCE stream_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE stream_id_seq OWNER TO evergreen; + +-- +-- Name: stream_id_seq; Type: SEQUENCE OWNED BY; Schema: serial; Owner: evergreen +-- + +ALTER SEQUENCE stream_id_seq OWNED BY stream.id; + + +-- +-- Name: subscription_id_seq; Type: SEQUENCE; Schema: serial; Owner: evergreen +-- + +CREATE SEQUENCE subscription_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE subscription_id_seq OWNER TO evergreen; + +-- +-- Name: subscription_id_seq; Type: SEQUENCE OWNED BY; Schema: serial; Owner: evergreen +-- + +ALTER SEQUENCE subscription_id_seq OWNED BY subscription.id; + + +-- +-- Name: subscription_note; Type: TABLE; Schema: serial; Owner: evergreen +-- + +CREATE TABLE subscription_note ( + id integer NOT NULL, + subscription integer NOT NULL, + creator integer NOT NULL, + create_date timestamp with time zone DEFAULT now(), + pub boolean DEFAULT false NOT NULL, + alert boolean DEFAULT false NOT NULL, + title text NOT NULL, + value text NOT NULL +); + + +ALTER TABLE subscription_note OWNER TO evergreen; + +-- +-- Name: subscription_note_id_seq; Type: SEQUENCE; Schema: serial; Owner: evergreen +-- + +CREATE SEQUENCE subscription_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE subscription_note_id_seq OWNER TO evergreen; + +-- +-- Name: subscription_note_id_seq; Type: SEQUENCE OWNED BY; Schema: serial; Owner: evergreen +-- + +ALTER SEQUENCE subscription_note_id_seq OWNED BY subscription_note.id; + + +-- +-- Name: supplement_summary_id_seq; Type: SEQUENCE; Schema: serial; Owner: evergreen +-- + +CREATE SEQUENCE supplement_summary_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE supplement_summary_id_seq OWNER TO evergreen; + +-- +-- Name: supplement_summary_id_seq; Type: SEQUENCE OWNED BY; Schema: serial; Owner: evergreen +-- + +ALTER SEQUENCE supplement_summary_id_seq OWNED BY supplement_summary.id; + + +SET search_path = staging, pg_catalog; + +-- +-- Name: mailing_address_stage; Type: TABLE; Schema: staging; Owner: evergreen +-- + +CREATE TABLE mailing_address_stage ( + row_id bigint NOT NULL, + row_date timestamp with time zone DEFAULT now(), + usrname text NOT NULL, + street1 text, + street2 text, + city text DEFAULT ''::text NOT NULL, + county text, + state text, + country text DEFAULT 'US'::text NOT NULL, + post_code text NOT NULL, + complete boolean DEFAULT false +); + + +ALTER TABLE mailing_address_stage OWNER TO evergreen; + +-- +-- Name: mailing_address_stage_row_id_seq; Type: SEQUENCE; Schema: staging; Owner: evergreen +-- + +CREATE SEQUENCE mailing_address_stage_row_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE mailing_address_stage_row_id_seq OWNER TO evergreen; + +-- +-- Name: mailing_address_stage_row_id_seq; Type: SEQUENCE OWNED BY; Schema: staging; Owner: evergreen +-- + +ALTER SEQUENCE mailing_address_stage_row_id_seq OWNED BY mailing_address_stage.row_id; + + +-- +-- Name: billing_address_stage; Type: TABLE; Schema: staging; Owner: evergreen +-- + +CREATE TABLE billing_address_stage ( + row_id bigint DEFAULT nextval('mailing_address_stage_row_id_seq'::regclass) NOT NULL, + row_date timestamp with time zone DEFAULT now(), + usrname text NOT NULL, + street1 text, + street2 text, + city text DEFAULT ''::text NOT NULL, + county text, + state text, + country text DEFAULT 'US'::text NOT NULL, + post_code text NOT NULL, + complete boolean DEFAULT false +); + + +ALTER TABLE billing_address_stage OWNER TO evergreen; + +-- +-- Name: card_stage; Type: TABLE; Schema: staging; Owner: evergreen +-- + +CREATE TABLE card_stage ( + row_id bigint NOT NULL, + row_date timestamp with time zone DEFAULT now(), + usrname text NOT NULL, + barcode text NOT NULL, + complete boolean DEFAULT false +); + + +ALTER TABLE card_stage OWNER TO evergreen; + +-- +-- Name: card_stage_row_id_seq; Type: SEQUENCE; Schema: staging; Owner: evergreen +-- + +CREATE SEQUENCE card_stage_row_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE card_stage_row_id_seq OWNER TO evergreen; + +-- +-- Name: card_stage_row_id_seq; Type: SEQUENCE OWNED BY; Schema: staging; Owner: evergreen +-- + +ALTER SEQUENCE card_stage_row_id_seq OWNED BY card_stage.row_id; + + +-- +-- Name: statcat_stage; Type: TABLE; Schema: staging; Owner: evergreen +-- + +CREATE TABLE statcat_stage ( + row_id bigint NOT NULL, + row_date timestamp with time zone DEFAULT now(), + usrname text NOT NULL, + statcat text NOT NULL, + value text NOT NULL, + complete boolean DEFAULT false +); + + +ALTER TABLE statcat_stage OWNER TO evergreen; + +-- +-- Name: statcat_stage_row_id_seq; Type: SEQUENCE; Schema: staging; Owner: evergreen +-- + +CREATE SEQUENCE statcat_stage_row_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE statcat_stage_row_id_seq OWNER TO evergreen; + +-- +-- Name: statcat_stage_row_id_seq; Type: SEQUENCE OWNED BY; Schema: staging; Owner: evergreen +-- + +ALTER SEQUENCE statcat_stage_row_id_seq OWNED BY statcat_stage.row_id; + + +-- +-- Name: user_stage; Type: TABLE; Schema: staging; Owner: evergreen +-- + +CREATE TABLE user_stage ( + row_id bigint NOT NULL, + row_date timestamp with time zone DEFAULT now(), + usrname text NOT NULL, + profile text, + email text, + passwd text, + ident_type integer DEFAULT 3, + first_given_name text, + second_given_name text, + family_name text, + day_phone text, + evening_phone text, + home_ou integer DEFAULT 2, + dob text, + complete boolean DEFAULT false, + requesting_usr integer +); + + +ALTER TABLE user_stage OWNER TO evergreen; + +-- +-- Name: user_stage_row_id_seq; Type: SEQUENCE; Schema: staging; Owner: evergreen +-- + +CREATE SEQUENCE user_stage_row_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE user_stage_row_id_seq OWNER TO evergreen; + +-- +-- Name: user_stage_row_id_seq; Type: SEQUENCE OWNED BY; Schema: staging; Owner: evergreen +-- + +ALTER SEQUENCE user_stage_row_id_seq OWNED BY user_stage.row_id; + + +SET search_path = unapi, pg_catalog; + +-- +-- Name: bre_output_layout; Type: TABLE; Schema: unapi; Owner: evergreen +-- + +CREATE TABLE bre_output_layout ( + name text NOT NULL, + transform text, + mime_type text NOT NULL, + feed_top text NOT NULL, + holdings_element text, + title_element text, + description_element text, + creator_element text, + update_ts_element text +); + + +ALTER TABLE bre_output_layout OWNER TO evergreen; + +SET search_path = url_verify, pg_catalog; + +-- +-- Name: session; Type: TABLE; Schema: url_verify; Owner: evergreen +-- + +CREATE TABLE session ( + id integer NOT NULL, + name text NOT NULL, + owning_lib integer NOT NULL, + creator integer NOT NULL, + container integer NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL, + search text NOT NULL +); + + +ALTER TABLE session OWNER TO evergreen; + +-- +-- Name: session_id_seq; Type: SEQUENCE; Schema: url_verify; Owner: evergreen +-- + +CREATE SEQUENCE session_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE session_id_seq OWNER TO evergreen; + +-- +-- Name: session_id_seq; Type: SEQUENCE OWNED BY; Schema: url_verify; Owner: evergreen +-- + +ALTER SEQUENCE session_id_seq OWNED BY session.id; + + +-- +-- Name: url_id_seq; Type: SEQUENCE; Schema: url_verify; Owner: evergreen +-- + +CREATE SEQUENCE url_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE url_id_seq OWNER TO evergreen; + +-- +-- Name: url_id_seq; Type: SEQUENCE OWNED BY; Schema: url_verify; Owner: evergreen +-- + +ALTER SEQUENCE url_id_seq OWNED BY url.id; + + +-- +-- Name: url_selector; Type: TABLE; Schema: url_verify; Owner: evergreen +-- + +CREATE TABLE url_selector ( + id integer NOT NULL, + xpath text NOT NULL, + session integer NOT NULL +); + + +ALTER TABLE url_selector OWNER TO evergreen; + +-- +-- Name: url_selector_id_seq; Type: SEQUENCE; Schema: url_verify; Owner: evergreen +-- + +CREATE SEQUENCE url_selector_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE url_selector_id_seq OWNER TO evergreen; + +-- +-- Name: url_selector_id_seq; Type: SEQUENCE OWNED BY; Schema: url_verify; Owner: evergreen +-- + +ALTER SEQUENCE url_selector_id_seq OWNED BY url_selector.id; + + +-- +-- Name: url_verification; Type: TABLE; Schema: url_verify; Owner: evergreen +-- + +CREATE TABLE url_verification ( + id integer NOT NULL, + url integer NOT NULL, + attempt integer NOT NULL, + req_time timestamp with time zone DEFAULT now() NOT NULL, + res_time timestamp with time zone, + res_code integer, + res_text text, + redirect_to integer, + CONSTRAINT url_verification_res_code_check CHECK (((res_code >= 100) AND (res_code <= 999))) +); + + +ALTER TABLE url_verification OWNER TO evergreen; + +-- +-- Name: url_verification_id_seq; Type: SEQUENCE; Schema: url_verify; Owner: evergreen +-- + +CREATE SEQUENCE url_verification_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE url_verification_id_seq OWNER TO evergreen; + +-- +-- Name: url_verification_id_seq; Type: SEQUENCE OWNED BY; Schema: url_verify; Owner: evergreen +-- + +ALTER SEQUENCE url_verification_id_seq OWNED BY url_verification.id; + + +-- +-- Name: verification_attempt; Type: TABLE; Schema: url_verify; Owner: evergreen +-- + +CREATE TABLE verification_attempt ( + id integer NOT NULL, + usr integer NOT NULL, + session integer NOT NULL, + start_time timestamp with time zone DEFAULT now() NOT NULL, + finish_time timestamp with time zone +); + + +ALTER TABLE verification_attempt OWNER TO evergreen; + +-- +-- Name: verification_attempt_id_seq; Type: SEQUENCE; Schema: url_verify; Owner: evergreen +-- + +CREATE SEQUENCE verification_attempt_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE verification_attempt_id_seq OWNER TO evergreen; + +-- +-- Name: verification_attempt_id_seq; Type: SEQUENCE OWNED BY; Schema: url_verify; Owner: evergreen +-- + +ALTER SEQUENCE verification_attempt_id_seq OWNED BY verification_attempt.id; + + +SET search_path = vandelay, pg_catalog; + +-- +-- Name: authority_attr_definition; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE authority_attr_definition ( + id integer NOT NULL, + code text NOT NULL, + description text, + xpath text NOT NULL, + remove text DEFAULT ''::text NOT NULL +); + + +ALTER TABLE authority_attr_definition OWNER TO evergreen; + +-- +-- Name: authority_attr_definition_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE authority_attr_definition_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE authority_attr_definition_id_seq OWNER TO evergreen; + +-- +-- Name: authority_attr_definition_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE authority_attr_definition_id_seq OWNED BY authority_attr_definition.id; + + +-- +-- Name: authority_match; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE authority_match ( + id bigint NOT NULL, + queued_record bigint, + eg_record bigint, + quality integer DEFAULT 0 NOT NULL, + match_score integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE authority_match OWNER TO evergreen; + +-- +-- Name: authority_match_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE authority_match_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE authority_match_id_seq OWNER TO evergreen; + +-- +-- Name: authority_match_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE authority_match_id_seq OWNED BY authority_match.id; + + +-- +-- Name: queue; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE queue ( + id bigint NOT NULL, + owner integer NOT NULL, + name text NOT NULL, + complete boolean DEFAULT false NOT NULL, + match_set integer +); + + +ALTER TABLE queue OWNER TO evergreen; + +-- +-- Name: authority_queue; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE authority_queue ( + queue_type authority_queue_queue_type DEFAULT 'authority'::authority_queue_queue_type NOT NULL +) +INHERITS (queue); + + +ALTER TABLE authority_queue OWNER TO evergreen; + +-- +-- Name: bib_attr_definition; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE bib_attr_definition ( + id integer NOT NULL, + code text NOT NULL, + description text, + xpath text NOT NULL, + remove text DEFAULT ''::text NOT NULL +); + + +ALTER TABLE bib_attr_definition OWNER TO evergreen; + +-- +-- Name: bib_attr_definition_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE bib_attr_definition_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE bib_attr_definition_id_seq OWNER TO evergreen; + +-- +-- Name: bib_attr_definition_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE bib_attr_definition_id_seq OWNED BY bib_attr_definition.id; + + +-- +-- Name: bib_match; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE bib_match ( + id bigint NOT NULL, + queued_record bigint, + eg_record bigint, + quality integer DEFAULT 1 NOT NULL, + match_score integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE bib_match OWNER TO evergreen; + +-- +-- Name: bib_match_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE bib_match_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE bib_match_id_seq OWNER TO evergreen; + +-- +-- Name: bib_match_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE bib_match_id_seq OWNED BY bib_match.id; + + +-- +-- Name: bib_queue; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE bib_queue ( + queue_type bib_queue_queue_type DEFAULT 'bib'::bib_queue_queue_type NOT NULL, + item_attr_def bigint, + match_bucket integer +) +INHERITS (queue); + + +ALTER TABLE bib_queue OWNER TO evergreen; + +-- +-- Name: import_bib_trash_fields; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE import_bib_trash_fields ( + id bigint NOT NULL, + grp integer NOT NULL, + field text NOT NULL +); + + +ALTER TABLE import_bib_trash_fields OWNER TO evergreen; + +-- +-- Name: import_bib_trash_fields_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE import_bib_trash_fields_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE import_bib_trash_fields_id_seq OWNER TO evergreen; + +-- +-- Name: import_bib_trash_fields_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE import_bib_trash_fields_id_seq OWNED BY import_bib_trash_fields.id; + + +-- +-- Name: import_bib_trash_group; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE import_bib_trash_group ( + id integer NOT NULL, + owner integer NOT NULL, + label text NOT NULL, + always_apply boolean DEFAULT false NOT NULL +); + + +ALTER TABLE import_bib_trash_group OWNER TO evergreen; + +-- +-- Name: import_bib_trash_group_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE import_bib_trash_group_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE import_bib_trash_group_id_seq OWNER TO evergreen; + +-- +-- Name: import_bib_trash_group_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE import_bib_trash_group_id_seq OWNED BY import_bib_trash_group.id; + + +-- +-- Name: import_error; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE import_error ( + code text NOT NULL, + description text NOT NULL +); + + +ALTER TABLE import_error OWNER TO evergreen; + +-- +-- Name: import_item_attr_definition; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE import_item_attr_definition ( + id bigint NOT NULL, + owner integer NOT NULL, + name text NOT NULL, + tag text NOT NULL, + keep boolean DEFAULT false NOT NULL, + owning_lib text, + circ_lib text, + call_number text, + copy_number text, + status text, + location text, + circulate text, + deposit text, + deposit_amount text, + ref text, + holdable text, + price text, + barcode text, + circ_modifier text, + circ_as_type text, + alert_message text, + opac_visible text, + pub_note_title text, + pub_note text, + priv_note_title text, + priv_note text, + internal_id text, + stat_cat_data text, + parts_data text +); + + +ALTER TABLE import_item_attr_definition OWNER TO evergreen; + +-- +-- Name: import_item_attr_definition_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE import_item_attr_definition_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE import_item_attr_definition_id_seq OWNER TO evergreen; + +-- +-- Name: import_item_attr_definition_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE import_item_attr_definition_id_seq OWNED BY import_item_attr_definition.id; + + +-- +-- Name: import_item_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE import_item_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE import_item_id_seq OWNER TO evergreen; + +-- +-- Name: import_item_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE import_item_id_seq OWNED BY import_item.id; + + +-- +-- Name: match_set; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE match_set ( + id integer NOT NULL, + name text NOT NULL, + owner integer NOT NULL, + mtype text DEFAULT 'biblio'::text NOT NULL +); + + +ALTER TABLE match_set OWNER TO evergreen; + +-- +-- Name: match_set_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE match_set_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE match_set_id_seq OWNER TO evergreen; + +-- +-- Name: match_set_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE match_set_id_seq OWNED BY match_set.id; + + +-- +-- Name: match_set_point_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE match_set_point_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE match_set_point_id_seq OWNER TO evergreen; + +-- +-- Name: match_set_point_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE match_set_point_id_seq OWNED BY match_set_point.id; + + +-- +-- Name: match_set_quality; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE match_set_quality ( + id integer NOT NULL, + match_set integer NOT NULL, + svf text, + tag text, + subfield text, + value text NOT NULL, + quality integer DEFAULT 1 NOT NULL, + CONSTRAINT vmsq_need_a_subfield_with_a_tag CHECK ((((tag IS NOT NULL) AND (subfield IS NOT NULL)) OR (tag IS NULL))), + CONSTRAINT vmsq_need_a_tag_or_a_ff CHECK ((((tag IS NOT NULL) AND (svf IS NULL)) OR ((tag IS NULL) AND (svf IS NOT NULL)))) +); + + +ALTER TABLE match_set_quality OWNER TO evergreen; + +-- +-- Name: match_set_quality_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE match_set_quality_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE match_set_quality_id_seq OWNER TO evergreen; + +-- +-- Name: match_set_quality_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE match_set_quality_id_seq OWNED BY match_set_quality.id; + + +-- +-- Name: merge_profile; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE merge_profile ( + id bigint NOT NULL, + owner integer NOT NULL, + name text NOT NULL, + add_spec text, + replace_spec text, + strip_spec text, + preserve_spec text, + update_bib_source boolean DEFAULT false NOT NULL, + lwm_ratio numeric, + CONSTRAINT add_replace_strip_or_preserve CHECK (((preserve_spec IS NOT NULL) OR (replace_spec IS NOT NULL) OR ((preserve_spec IS NULL) AND (replace_spec IS NULL)))) +); + + +ALTER TABLE merge_profile OWNER TO evergreen; + +-- +-- Name: merge_profile_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE merge_profile_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE merge_profile_id_seq OWNER TO evergreen; + +-- +-- Name: merge_profile_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE merge_profile_id_seq OWNED BY merge_profile.id; + + +-- +-- Name: queue_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE queue_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE queue_id_seq OWNER TO evergreen; + +-- +-- Name: queue_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE queue_id_seq OWNED BY queue.id; + + +-- +-- Name: queued_record; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE queued_record ( + id bigint NOT NULL, + create_time timestamp with time zone DEFAULT now() NOT NULL, + import_time timestamp with time zone, + purpose text DEFAULT 'import'::text NOT NULL, + marc text NOT NULL, + quality integer DEFAULT 0 NOT NULL, + CONSTRAINT queued_record_purpose_check CHECK ((purpose = ANY (ARRAY['import'::text, 'overlay'::text]))) +); + + +ALTER TABLE queued_record OWNER TO evergreen; + +-- +-- Name: queued_authority_record; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE queued_authority_record ( + queue integer NOT NULL, + imported_as integer, + import_error text, + error_detail text +) +INHERITS (queued_record); + + +ALTER TABLE queued_authority_record OWNER TO evergreen; + +-- +-- Name: queued_authority_record_attr; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE queued_authority_record_attr ( + id bigint NOT NULL, + record bigint NOT NULL, + field integer NOT NULL, + attr_value text NOT NULL +); + + +ALTER TABLE queued_authority_record_attr OWNER TO evergreen; + +-- +-- Name: queued_authority_record_attr_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE queued_authority_record_attr_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE queued_authority_record_attr_id_seq OWNER TO evergreen; + +-- +-- Name: queued_authority_record_attr_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE queued_authority_record_attr_id_seq OWNED BY queued_authority_record_attr.id; + + +-- +-- Name: queued_bib_record; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE queued_bib_record ( + queue integer NOT NULL, + bib_source integer, + imported_as bigint, + import_error text, + error_detail text +) +INHERITS (queued_record); + + +ALTER TABLE queued_bib_record OWNER TO evergreen; + +-- +-- Name: queued_bib_record_attr; Type: TABLE; Schema: vandelay; Owner: evergreen +-- + +CREATE TABLE queued_bib_record_attr ( + id bigint NOT NULL, + record bigint NOT NULL, + field integer NOT NULL, + attr_value text NOT NULL +); + + +ALTER TABLE queued_bib_record_attr OWNER TO evergreen; + +-- +-- Name: queued_bib_record_attr_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE queued_bib_record_attr_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE queued_bib_record_attr_id_seq OWNER TO evergreen; + +-- +-- Name: queued_bib_record_attr_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE queued_bib_record_attr_id_seq OWNED BY queued_bib_record_attr.id; + + +-- +-- Name: queued_record_id_seq; Type: SEQUENCE; Schema: vandelay; Owner: evergreen +-- + +CREATE SEQUENCE queued_record_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE queued_record_id_seq OWNER TO evergreen; + +-- +-- Name: queued_record_id_seq; Type: SEQUENCE OWNED BY; Schema: vandelay; Owner: evergreen +-- + +ALTER SEQUENCE queued_record_id_seq OWNED BY queued_record.id; + + +SET search_path = acq, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY cancel_reason ALTER COLUMN id SET DEFAULT nextval('cancel_reason_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim ALTER COLUMN id SET DEFAULT nextval('claim_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_event ALTER COLUMN id SET DEFAULT nextval('claim_event_id_seq'::regclass); + + +-- +-- Name: claim; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_event ALTER COLUMN claim SET DEFAULT nextval('claim_event_claim_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_event_type ALTER COLUMN id SET DEFAULT nextval('claim_event_type_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_policy ALTER COLUMN id SET DEFAULT nextval('claim_policy_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_policy_action ALTER COLUMN id SET DEFAULT nextval('claim_policy_action_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_type ALTER COLUMN id SET DEFAULT nextval('claim_type_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula ALTER COLUMN id SET DEFAULT nextval('distribution_formula_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula_application ALTER COLUMN id SET DEFAULT nextval('distribution_formula_application_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula_entry ALTER COLUMN id SET DEFAULT nextval('distribution_formula_entry_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY edi_account ALTER COLUMN id SET DEFAULT nextval('config.remote_account_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY edi_message ALTER COLUMN id SET DEFAULT nextval('edi_message_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY exchange_rate ALTER COLUMN id SET DEFAULT nextval('exchange_rate_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fiscal_calendar ALTER COLUMN id SET DEFAULT nextval('fiscal_calendar_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fiscal_year ALTER COLUMN id SET DEFAULT nextval('fiscal_year_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund ALTER COLUMN id SET DEFAULT nextval('fund_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_allocation ALTER COLUMN id SET DEFAULT nextval('fund_allocation_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_allocation_percent ALTER COLUMN id SET DEFAULT nextval('fund_allocation_percent_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_debit ALTER COLUMN id SET DEFAULT nextval('fund_debit_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_tag ALTER COLUMN id SET DEFAULT nextval('fund_tag_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_tag_map ALTER COLUMN id SET DEFAULT nextval('fund_tag_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_transfer ALTER COLUMN id SET DEFAULT nextval('fund_transfer_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY funding_source ALTER COLUMN id SET DEFAULT nextval('funding_source_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY funding_source_credit ALTER COLUMN id SET DEFAULT nextval('funding_source_credit_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice ALTER COLUMN id SET DEFAULT nextval('invoice_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_entry ALTER COLUMN id SET DEFAULT nextval('invoice_entry_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_item ALTER COLUMN id SET DEFAULT nextval('invoice_item_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem ALTER COLUMN id SET DEFAULT nextval('lineitem_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_alert_text ALTER COLUMN id SET DEFAULT nextval('lineitem_alert_text_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_attr ALTER COLUMN id SET DEFAULT nextval('lineitem_attr_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_attr_definition ALTER COLUMN id SET DEFAULT nextval('lineitem_attr_definition_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_detail ALTER COLUMN id SET DEFAULT nextval('lineitem_detail_id_seq'::regclass); + + +-- +-- Name: remove; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_generated_attr_definition ALTER COLUMN remove SET DEFAULT ''::text; + + +-- +-- Name: ident; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_generated_attr_definition ALTER COLUMN ident SET DEFAULT false; + + +-- +-- Name: remove; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_local_attr_definition ALTER COLUMN remove SET DEFAULT ''::text; + + +-- +-- Name: ident; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_local_attr_definition ALTER COLUMN ident SET DEFAULT false; + + +-- +-- Name: remove; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_marc_attr_definition ALTER COLUMN remove SET DEFAULT ''::text; + + +-- +-- Name: ident; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_marc_attr_definition ALTER COLUMN ident SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_note ALTER COLUMN id SET DEFAULT nextval('lineitem_note_id_seq'::regclass); + + +-- +-- Name: remove; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_provider_attr_definition ALTER COLUMN remove SET DEFAULT ''::text; + + +-- +-- Name: ident; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_provider_attr_definition ALTER COLUMN ident SET DEFAULT false; + + +-- +-- Name: remove; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_usr_attr_definition ALTER COLUMN remove SET DEFAULT ''::text; + + +-- +-- Name: ident; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_usr_attr_definition ALTER COLUMN ident SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY picklist ALTER COLUMN id SET DEFAULT nextval('picklist_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY po_item ALTER COLUMN id SET DEFAULT nextval('po_item_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY po_note ALTER COLUMN id SET DEFAULT nextval('po_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider ALTER COLUMN id SET DEFAULT nextval('provider_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_address ALTER COLUMN id SET DEFAULT nextval('provider_address_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_contact ALTER COLUMN id SET DEFAULT nextval('provider_contact_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_contact_address ALTER COLUMN id SET DEFAULT nextval('provider_contact_address_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_holding_subfield_map ALTER COLUMN id SET DEFAULT nextval('provider_holding_subfield_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_note ALTER COLUMN id SET DEFAULT nextval('provider_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY purchase_order ALTER COLUMN id SET DEFAULT nextval('purchase_order_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY serial_claim ALTER COLUMN id SET DEFAULT nextval('serial_claim_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY serial_claim_event ALTER COLUMN id SET DEFAULT nextval('serial_claim_event_id_seq'::regclass); + + +-- +-- Name: claim; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY serial_claim_event ALTER COLUMN claim SET DEFAULT nextval('serial_claim_event_claim_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY user_request ALTER COLUMN id SET DEFAULT nextval('user_request_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY user_request_type ALTER COLUMN id SET DEFAULT nextval('user_request_type_id_seq'::regclass); + + +SET search_path = action, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY archive_actor_stat_cat ALTER COLUMN id SET DEFAULT nextval('archive_actor_stat_cat_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY archive_asset_stat_cat ALTER COLUMN id SET DEFAULT nextval('archive_asset_stat_cat_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY circulation ALTER COLUMN id SET DEFAULT nextval('money.billable_xact_id_seq'::regclass); + + +-- +-- Name: xact_start; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY circulation ALTER COLUMN xact_start SET DEFAULT now(); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY fieldset ALTER COLUMN id SET DEFAULT nextval('fieldset_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY fieldset_col_val ALTER COLUMN id SET DEFAULT nextval('fieldset_col_val_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_copy_map ALTER COLUMN id SET DEFAULT nextval('hold_copy_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_notification ALTER COLUMN id SET DEFAULT nextval('hold_notification_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request ALTER COLUMN id SET DEFAULT nextval('hold_request_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request_cancel_cause ALTER COLUMN id SET DEFAULT nextval('hold_request_cancel_cause_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request_note ALTER COLUMN id SET DEFAULT nextval('hold_request_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_transit_copy ALTER COLUMN id SET DEFAULT nextval('transit_copy_id_seq'::regclass); + + +-- +-- Name: persistant_transfer; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_transit_copy ALTER COLUMN persistant_transfer SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY in_house_use ALTER COLUMN id SET DEFAULT nextval('in_house_use_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY non_cat_in_house_use ALTER COLUMN id SET DEFAULT nextval('non_cat_in_house_use_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY non_cataloged_circulation ALTER COLUMN id SET DEFAULT nextval('non_cataloged_circulation_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY reservation_transit_copy ALTER COLUMN id SET DEFAULT nextval('transit_copy_id_seq'::regclass); + + +-- +-- Name: persistant_transfer; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY reservation_transit_copy ALTER COLUMN persistant_transfer SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY survey ALTER COLUMN id SET DEFAULT nextval('survey_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY survey_answer ALTER COLUMN id SET DEFAULT nextval('survey_answer_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY survey_question ALTER COLUMN id SET DEFAULT nextval('survey_question_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY survey_response ALTER COLUMN id SET DEFAULT nextval('survey_response_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY transit_copy ALTER COLUMN id SET DEFAULT nextval('transit_copy_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY unfulfilled_hold_list ALTER COLUMN id SET DEFAULT nextval('unfulfilled_hold_list_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY usr_circ_history ALTER COLUMN id SET DEFAULT nextval('usr_circ_history_id_seq'::regclass); + + +SET search_path = action_trigger, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY environment ALTER COLUMN id SET DEFAULT nextval('environment_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event ALTER COLUMN id SET DEFAULT nextval('event_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_definition ALTER COLUMN id SET DEFAULT nextval('event_definition_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_output ALTER COLUMN id SET DEFAULT nextval('event_output_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_params ALTER COLUMN id SET DEFAULT nextval('event_params_id_seq'::regclass); + + +SET search_path = actor, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY address_alert ALTER COLUMN id SET DEFAULT nextval('address_alert_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY card ALTER COLUMN id SET DEFAULT nextval('card_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_address ALTER COLUMN id SET DEFAULT nextval('org_address_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_lasso ALTER COLUMN id SET DEFAULT nextval('org_lasso_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_lasso_map ALTER COLUMN id SET DEFAULT nextval('org_lasso_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit ALTER COLUMN id SET DEFAULT nextval('org_unit_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_closed ALTER COLUMN id SET DEFAULT nextval('org_unit_closed_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_custom_tree ALTER COLUMN id SET DEFAULT nextval('org_unit_custom_tree_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_custom_tree_node ALTER COLUMN id SET DEFAULT nextval('org_unit_custom_tree_node_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_proximity ALTER COLUMN id SET DEFAULT nextval('org_unit_proximity_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_proximity_adjustment ALTER COLUMN id SET DEFAULT nextval('org_unit_proximity_adjustment_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_setting ALTER COLUMN id SET DEFAULT nextval('org_unit_setting_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_type ALTER COLUMN id SET DEFAULT nextval('org_unit_type_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY passwd ALTER COLUMN id SET DEFAULT nextval('passwd_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY search_filter_group ALTER COLUMN id SET DEFAULT nextval('search_filter_group_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY search_filter_group_entry ALTER COLUMN id SET DEFAULT nextval('search_filter_group_entry_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY search_query ALTER COLUMN id SET DEFAULT nextval('search_query_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat ALTER COLUMN id SET DEFAULT nextval('stat_cat_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry ALTER COLUMN id SET DEFAULT nextval('stat_cat_entry_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_default ALTER COLUMN id SET DEFAULT nextval('stat_cat_entry_default_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_usr_map ALTER COLUMN id SET DEFAULT nextval('stat_cat_entry_usr_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY toolbar ALTER COLUMN id SET DEFAULT nextval('toolbar_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr ALTER COLUMN id SET DEFAULT nextval('usr_id_seq'::regclass); + + +-- +-- Name: usrgroup; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr ALTER COLUMN usrgroup SET DEFAULT nextval('usr_usrgroup_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_activity ALTER COLUMN id SET DEFAULT nextval('usr_activity_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_address ALTER COLUMN id SET DEFAULT nextval('usr_address_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_message ALTER COLUMN id SET DEFAULT nextval('usr_message_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_note ALTER COLUMN id SET DEFAULT nextval('usr_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_org_unit_opt_in ALTER COLUMN id SET DEFAULT nextval('usr_org_unit_opt_in_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_password_reset ALTER COLUMN id SET DEFAULT nextval('usr_password_reset_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_saved_search ALTER COLUMN id SET DEFAULT nextval('usr_saved_search_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_setting ALTER COLUMN id SET DEFAULT nextval('usr_setting_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_standing_penalty ALTER COLUMN id SET DEFAULT nextval('usr_standing_penalty_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY workstation ALTER COLUMN id SET DEFAULT nextval('workstation_id_seq'::regclass); + + +SET search_path = asset, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number ALTER COLUMN id SET DEFAULT nextval('call_number_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_class ALTER COLUMN id SET DEFAULT nextval('call_number_class_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_note ALTER COLUMN id SET DEFAULT nextval('call_number_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_prefix ALTER COLUMN id SET DEFAULT nextval('call_number_prefix_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_suffix ALTER COLUMN id SET DEFAULT nextval('call_number_suffix_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy ALTER COLUMN id SET DEFAULT nextval('copy_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location ALTER COLUMN id SET DEFAULT nextval('copy_location_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location_group ALTER COLUMN id SET DEFAULT nextval('copy_location_group_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location_group_map ALTER COLUMN id SET DEFAULT nextval('copy_location_group_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location_order ALTER COLUMN id SET DEFAULT nextval('copy_location_order_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_note ALTER COLUMN id SET DEFAULT nextval('copy_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_part_map ALTER COLUMN id SET DEFAULT nextval('copy_part_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_template ALTER COLUMN id SET DEFAULT nextval('copy_template_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY opac_visible_copies ALTER COLUMN id SET DEFAULT nextval('opac_visible_copies_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat ALTER COLUMN id SET DEFAULT nextval('stat_cat_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry ALTER COLUMN id SET DEFAULT nextval('stat_cat_entry_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_copy_map ALTER COLUMN id SET DEFAULT nextval('stat_cat_entry_copy_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_transparency_map ALTER COLUMN id SET DEFAULT nextval('stat_cat_entry_transparency_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY uri ALTER COLUMN id SET DEFAULT nextval('uri_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY uri_call_number_map ALTER COLUMN id SET DEFAULT nextval('uri_call_number_map_id_seq'::regclass); + + +SET search_path = authority, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY authority_linking ALTER COLUMN id SET DEFAULT nextval('authority_linking_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY bib_linking ALTER COLUMN id SET DEFAULT nextval('bib_linking_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY browse_axis_authority_field_map ALTER COLUMN id SET DEFAULT nextval('browse_axis_authority_field_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY control_set ALTER COLUMN id SET DEFAULT nextval('control_set_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY control_set_authority_field ALTER COLUMN id SET DEFAULT nextval('control_set_authority_field_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY control_set_bib_field ALTER COLUMN id SET DEFAULT nextval('control_set_bib_field_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY control_set_bib_field_metabib_field_map ALTER COLUMN id SET DEFAULT nextval('control_set_bib_field_metabib_field_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY full_rec ALTER COLUMN id SET DEFAULT nextval('full_rec_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY rec_descriptor ALTER COLUMN id SET DEFAULT nextval('rec_descriptor_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY record_entry ALTER COLUMN id SET DEFAULT nextval('record_entry_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY record_note ALTER COLUMN id SET DEFAULT nextval('record_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY simple_heading ALTER COLUMN id SET DEFAULT nextval('simple_heading_id_seq'::regclass); + + +SET search_path = biblio, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY monograph_part ALTER COLUMN id SET DEFAULT nextval('monograph_part_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY peer_bib_copy_map ALTER COLUMN id SET DEFAULT nextval('peer_bib_copy_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY peer_type ALTER COLUMN id SET DEFAULT nextval('peer_type_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY record_entry ALTER COLUMN id SET DEFAULT nextval('record_entry_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY record_note ALTER COLUMN id SET DEFAULT nextval('record_note_id_seq'::regclass); + + +SET search_path = booking, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY reservation ALTER COLUMN id SET DEFAULT nextval('money.billable_xact_id_seq'::regclass); + + +-- +-- Name: xact_start; Type: DEFAULT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY reservation ALTER COLUMN xact_start SET DEFAULT now(); + + +-- +-- Name: id; Type: DEFAULT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY reservation_attr_value_map ALTER COLUMN id SET DEFAULT nextval('reservation_attr_value_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource ALTER COLUMN id SET DEFAULT nextval('resource_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr ALTER COLUMN id SET DEFAULT nextval('resource_attr_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr_map ALTER COLUMN id SET DEFAULT nextval('resource_attr_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr_value ALTER COLUMN id SET DEFAULT nextval('resource_attr_value_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_type ALTER COLUMN id SET DEFAULT nextval('resource_type_id_seq'::regclass); + + +SET search_path = config, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY barcode_completion ALTER COLUMN id SET DEFAULT nextval('barcode_completion_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY best_hold_order ALTER COLUMN id SET DEFAULT nextval('best_hold_order_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY bib_source ALTER COLUMN id SET DEFAULT nextval('bib_source_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_fingerprint ALTER COLUMN id SET DEFAULT nextval('biblio_fingerprint_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY billing_type ALTER COLUMN id SET DEFAULT nextval('billing_type_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_group ALTER COLUMN id SET DEFAULT nextval('circ_limit_group_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set ALTER COLUMN id SET DEFAULT nextval('circ_limit_set_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set_circ_mod_map ALTER COLUMN id SET DEFAULT nextval('circ_limit_set_circ_mod_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set_copy_loc_map ALTER COLUMN id SET DEFAULT nextval('circ_limit_set_copy_loc_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set_group_map ALTER COLUMN id SET DEFAULT nextval('circ_limit_set_group_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_limit_set_map ALTER COLUMN id SET DEFAULT nextval('circ_matrix_limit_set_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_matchpoint ALTER COLUMN id SET DEFAULT nextval('circ_matrix_matchpoint_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_weights ALTER COLUMN id SET DEFAULT nextval('circ_matrix_weights_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY coded_value_map ALTER COLUMN id SET DEFAULT nextval('coded_value_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY copy_status ALTER COLUMN id SET DEFAULT nextval('copy_status_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY filter_dialog_filter_set ALTER COLUMN id SET DEFAULT nextval('filter_dialog_filter_set_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY floating_group ALTER COLUMN id SET DEFAULT nextval('floating_group_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY floating_group_member ALTER COLUMN id SET DEFAULT nextval('floating_group_member_id_seq'::regclass); + + +-- +-- Name: enabled; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY global_flag ALTER COLUMN enabled SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hard_due_date ALTER COLUMN id SET DEFAULT nextval('hard_due_date_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hard_due_date_values ALTER COLUMN id SET DEFAULT nextval('hard_due_date_values_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hold_matrix_matchpoint ALTER COLUMN id SET DEFAULT nextval('hold_matrix_matchpoint_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hold_matrix_weights ALTER COLUMN id SET DEFAULT nextval('hold_matrix_weights_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY i18n_core ALTER COLUMN id SET DEFAULT nextval('i18n_core_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY identification_type ALTER COLUMN id SET DEFAULT nextval('identification_type_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY idl_field_doc ALTER COLUMN id SET DEFAULT nextval('idl_field_doc_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY index_normalizer ALTER COLUMN id SET DEFAULT nextval('index_normalizer_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc21_ff_pos_map ALTER COLUMN id SET DEFAULT nextval('marc21_ff_pos_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc21_physical_characteristic_subfield_map ALTER COLUMN id SET DEFAULT nextval('marc21_physical_characteristic_subfield_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc21_physical_characteristic_value_map ALTER COLUMN id SET DEFAULT nextval('marc21_physical_characteristic_value_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc_field ALTER COLUMN id SET DEFAULT nextval('marc_field_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc_format ALTER COLUMN id SET DEFAULT nextval('marc_format_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc_subfield ALTER COLUMN id SET DEFAULT nextval('marc_subfield_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_class_ts_map ALTER COLUMN id SET DEFAULT nextval('metabib_class_ts_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_field ALTER COLUMN id SET DEFAULT nextval('metabib_field_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_field_index_norm_map ALTER COLUMN id SET DEFAULT nextval('metabib_field_index_norm_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_field_ts_map ALTER COLUMN id SET DEFAULT nextval('metabib_field_ts_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY net_access_level ALTER COLUMN id SET DEFAULT nextval('net_access_level_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY non_cataloged_type ALTER COLUMN id SET DEFAULT nextval('non_cataloged_type_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_setting_type_log ALTER COLUMN id SET DEFAULT nextval('org_unit_setting_type_log_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY record_attr_index_norm_map ALTER COLUMN id SET DEFAULT nextval('record_attr_index_norm_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY remote_account ALTER COLUMN id SET DEFAULT nextval('remote_account_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY rule_age_hold_protect ALTER COLUMN id SET DEFAULT nextval('rule_age_hold_protect_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY rule_circ_duration ALTER COLUMN id SET DEFAULT nextval('rule_circ_duration_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY rule_max_fine ALTER COLUMN id SET DEFAULT nextval('rule_max_fine_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY rule_recurring_fine ALTER COLUMN id SET DEFAULT nextval('rule_recurring_fine_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY sms_carrier ALTER COLUMN id SET DEFAULT nextval('sms_carrier_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY standing ALTER COLUMN id SET DEFAULT nextval('standing_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY standing_penalty ALTER COLUMN id SET DEFAULT nextval('standing_penalty_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY usr_activity_type ALTER COLUMN id SET DEFAULT nextval('usr_activity_type_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY weight_assoc ALTER COLUMN id SET DEFAULT nextval('weight_assoc_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_attr ALTER COLUMN id SET DEFAULT nextval('z3950_attr_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_index_field_map ALTER COLUMN id SET DEFAULT nextval('z3950_index_field_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_source_credentials ALTER COLUMN id SET DEFAULT nextval('z3950_source_credentials_id_seq'::regclass); + + +SET search_path = container, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket ALTER COLUMN id SET DEFAULT nextval('biblio_record_entry_bucket_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket_item ALTER COLUMN id SET DEFAULT nextval('biblio_record_entry_bucket_item_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket_item_note ALTER COLUMN id SET DEFAULT nextval('biblio_record_entry_bucket_item_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket_note ALTER COLUMN id SET DEFAULT nextval('biblio_record_entry_bucket_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket ALTER COLUMN id SET DEFAULT nextval('call_number_bucket_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket_item ALTER COLUMN id SET DEFAULT nextval('call_number_bucket_item_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket_item_note ALTER COLUMN id SET DEFAULT nextval('call_number_bucket_item_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket_note ALTER COLUMN id SET DEFAULT nextval('call_number_bucket_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket ALTER COLUMN id SET DEFAULT nextval('copy_bucket_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket_item ALTER COLUMN id SET DEFAULT nextval('copy_bucket_item_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket_item_note ALTER COLUMN id SET DEFAULT nextval('copy_bucket_item_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket_note ALTER COLUMN id SET DEFAULT nextval('copy_bucket_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket ALTER COLUMN id SET DEFAULT nextval('user_bucket_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket_item ALTER COLUMN id SET DEFAULT nextval('user_bucket_item_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket_item_note ALTER COLUMN id SET DEFAULT nextval('user_bucket_item_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket_note ALTER COLUMN id SET DEFAULT nextval('user_bucket_note_id_seq'::regclass); + + +SET search_path = metabib, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY author_field_entry ALTER COLUMN id SET DEFAULT nextval('author_field_entry_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY browse_entry ALTER COLUMN id SET DEFAULT nextval('browse_entry_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY browse_entry_def_map ALTER COLUMN id SET DEFAULT nextval('browse_entry_def_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY browse_entry_simple_heading_map ALTER COLUMN id SET DEFAULT nextval('browse_entry_simple_heading_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY facet_entry ALTER COLUMN id SET DEFAULT nextval('facet_entry_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY identifier_field_entry ALTER COLUMN id SET DEFAULT nextval('identifier_field_entry_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY keyword_field_entry ALTER COLUMN id SET DEFAULT nextval('keyword_field_entry_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY metarecord ALTER COLUMN id SET DEFAULT nextval('metarecord_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY metarecord_source_map ALTER COLUMN id SET DEFAULT nextval('metarecord_source_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY record_sorter ALTER COLUMN id SET DEFAULT nextval('record_sorter_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY series_field_entry ALTER COLUMN id SET DEFAULT nextval('series_field_entry_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY subject_field_entry ALTER COLUMN id SET DEFAULT nextval('subject_field_entry_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY title_field_entry ALTER COLUMN id SET DEFAULT nextval('title_field_entry_id_seq'::regclass); + + +SET search_path = money, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY account_adjustment ALTER COLUMN id SET DEFAULT nextval('payment_id_seq'::regclass); + + +-- +-- Name: payment_ts; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY account_adjustment ALTER COLUMN payment_ts SET DEFAULT now(); + + +-- +-- Name: voided; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY account_adjustment ALTER COLUMN voided SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY billable_xact ALTER COLUMN id SET DEFAULT nextval('billable_xact_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY billing ALTER COLUMN id SET DEFAULT nextval('billing_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY bnm_desk_payment ALTER COLUMN id SET DEFAULT nextval('payment_id_seq'::regclass); + + +-- +-- Name: payment_ts; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY bnm_desk_payment ALTER COLUMN payment_ts SET DEFAULT now(); + + +-- +-- Name: voided; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY bnm_desk_payment ALTER COLUMN voided SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY bnm_payment ALTER COLUMN id SET DEFAULT nextval('payment_id_seq'::regclass); + + +-- +-- Name: payment_ts; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY bnm_payment ALTER COLUMN payment_ts SET DEFAULT now(); + + +-- +-- Name: voided; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY bnm_payment ALTER COLUMN voided SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY cash_payment ALTER COLUMN id SET DEFAULT nextval('payment_id_seq'::regclass); + + +-- +-- Name: payment_ts; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY cash_payment ALTER COLUMN payment_ts SET DEFAULT now(); + + +-- +-- Name: voided; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY cash_payment ALTER COLUMN voided SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY check_payment ALTER COLUMN id SET DEFAULT nextval('payment_id_seq'::regclass); + + +-- +-- Name: payment_ts; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY check_payment ALTER COLUMN payment_ts SET DEFAULT now(); + + +-- +-- Name: voided; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY check_payment ALTER COLUMN voided SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY collections_tracker ALTER COLUMN id SET DEFAULT nextval('collections_tracker_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY credit_card_payment ALTER COLUMN id SET DEFAULT nextval('payment_id_seq'::regclass); + + +-- +-- Name: payment_ts; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY credit_card_payment ALTER COLUMN payment_ts SET DEFAULT now(); + + +-- +-- Name: voided; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY credit_card_payment ALTER COLUMN voided SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY credit_payment ALTER COLUMN id SET DEFAULT nextval('payment_id_seq'::regclass); + + +-- +-- Name: payment_ts; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY credit_payment ALTER COLUMN payment_ts SET DEFAULT now(); + + +-- +-- Name: voided; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY credit_payment ALTER COLUMN voided SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY forgive_payment ALTER COLUMN id SET DEFAULT nextval('payment_id_seq'::regclass); + + +-- +-- Name: payment_ts; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY forgive_payment ALTER COLUMN payment_ts SET DEFAULT now(); + + +-- +-- Name: voided; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY forgive_payment ALTER COLUMN voided SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY goods_payment ALTER COLUMN id SET DEFAULT nextval('payment_id_seq'::regclass); + + +-- +-- Name: payment_ts; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY goods_payment ALTER COLUMN payment_ts SET DEFAULT now(); + + +-- +-- Name: voided; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY goods_payment ALTER COLUMN voided SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY grocery ALTER COLUMN id SET DEFAULT nextval('billable_xact_id_seq'::regclass); + + +-- +-- Name: xact_start; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY grocery ALTER COLUMN xact_start SET DEFAULT now(); + + +-- +-- Name: id; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY payment ALTER COLUMN id SET DEFAULT nextval('payment_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY work_payment ALTER COLUMN id SET DEFAULT nextval('payment_id_seq'::regclass); + + +-- +-- Name: payment_ts; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY work_payment ALTER COLUMN payment_ts SET DEFAULT now(); + + +-- +-- Name: voided; Type: DEFAULT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY work_payment ALTER COLUMN voided SET DEFAULT false; + + +SET search_path = offline, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: offline; Owner: evergreen +-- + +ALTER TABLE ONLY script ALTER COLUMN id SET DEFAULT nextval('script_id_seq'::regclass); + + +SET search_path = permission, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY grp_penalty_threshold ALTER COLUMN id SET DEFAULT nextval('grp_penalty_threshold_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY grp_perm_map ALTER COLUMN id SET DEFAULT nextval('grp_perm_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY grp_tree ALTER COLUMN id SET DEFAULT nextval('grp_tree_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY perm_list ALTER COLUMN id SET DEFAULT nextval('perm_list_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_grp_map ALTER COLUMN id SET DEFAULT nextval('usr_grp_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_object_perm_map ALTER COLUMN id SET DEFAULT nextval('usr_object_perm_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_perm_map ALTER COLUMN id SET DEFAULT nextval('usr_perm_map_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_work_ou_map ALTER COLUMN id SET DEFAULT nextval('usr_work_ou_map_id_seq'::regclass); + + +SET search_path = query, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY case_branch ALTER COLUMN id SET DEFAULT nextval('case_branch_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY datatype ALTER COLUMN id SET DEFAULT nextval('datatype_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY expression ALTER COLUMN id SET DEFAULT nextval('expression_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY from_relation ALTER COLUMN id SET DEFAULT nextval('from_relation_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY function_param_def ALTER COLUMN id SET DEFAULT nextval('function_param_def_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY function_sig ALTER COLUMN id SET DEFAULT nextval('function_sig_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY order_by_item ALTER COLUMN id SET DEFAULT nextval('order_by_item_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY query_sequence ALTER COLUMN id SET DEFAULT nextval('query_sequence_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY record_column ALTER COLUMN id SET DEFAULT nextval('record_column_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY select_item ALTER COLUMN id SET DEFAULT nextval('select_item_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY stored_query ALTER COLUMN id SET DEFAULT nextval('stored_query_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY subfield ALTER COLUMN id SET DEFAULT nextval('subfield_id_seq'::regclass); + + +SET search_path = reporter, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY output_folder ALTER COLUMN id SET DEFAULT nextval('output_folder_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY report ALTER COLUMN id SET DEFAULT nextval('report_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY report_folder ALTER COLUMN id SET DEFAULT nextval('report_folder_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY schedule ALTER COLUMN id SET DEFAULT nextval('schedule_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY template ALTER COLUMN id SET DEFAULT nextval('template_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY template_folder ALTER COLUMN id SET DEFAULT nextval('template_folder_id_seq'::regclass); + + +SET search_path = search, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: search; Owner: evergreen +-- + +ALTER TABLE ONLY relevance_adjustment ALTER COLUMN id SET DEFAULT nextval('relevance_adjustment_id_seq'::regclass); + + +SET search_path = serial, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY basic_summary ALTER COLUMN id SET DEFAULT nextval('basic_summary_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY caption_and_pattern ALTER COLUMN id SET DEFAULT nextval('caption_and_pattern_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY distribution ALTER COLUMN id SET DEFAULT nextval('distribution_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_note ALTER COLUMN id SET DEFAULT nextval('distribution_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY index_summary ALTER COLUMN id SET DEFAULT nextval('index_summary_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY issuance ALTER COLUMN id SET DEFAULT nextval('issuance_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY item ALTER COLUMN id SET DEFAULT nextval('item_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY item_note ALTER COLUMN id SET DEFAULT nextval('item_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY materialized_holding_code ALTER COLUMN id SET DEFAULT nextval('materialized_holding_code_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY record_entry ALTER COLUMN id SET DEFAULT nextval('record_entry_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY routing_list_user ALTER COLUMN id SET DEFAULT nextval('routing_list_user_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY stream ALTER COLUMN id SET DEFAULT nextval('stream_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY subscription ALTER COLUMN id SET DEFAULT nextval('subscription_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY subscription_note ALTER COLUMN id SET DEFAULT nextval('subscription_note_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY supplement_summary ALTER COLUMN id SET DEFAULT nextval('supplement_summary_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit ALTER COLUMN id SET DEFAULT nextval('asset.copy_id_seq'::regclass); + + +-- +-- Name: create_date; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit ALTER COLUMN create_date SET DEFAULT now(); + + +-- +-- Name: edit_date; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit ALTER COLUMN edit_date SET DEFAULT now(); + + +-- +-- Name: status; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit ALTER COLUMN status SET DEFAULT 0; + + +-- +-- Name: location; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit ALTER COLUMN location SET DEFAULT 1; + + +-- +-- Name: circulate; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit ALTER COLUMN circulate SET DEFAULT true; + + +-- +-- Name: deposit; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit ALTER COLUMN deposit SET DEFAULT false; + + +-- +-- Name: ref; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit ALTER COLUMN ref SET DEFAULT false; + + +-- +-- Name: holdable; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit ALTER COLUMN holdable SET DEFAULT true; + + +-- +-- Name: deposit_amount; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit ALTER COLUMN deposit_amount SET DEFAULT 0.00; + + +-- +-- Name: opac_visible; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit ALTER COLUMN opac_visible SET DEFAULT true; + + +-- +-- Name: deleted; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit ALTER COLUMN deleted SET DEFAULT false; + + +-- +-- Name: mint_condition; Type: DEFAULT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit ALTER COLUMN mint_condition SET DEFAULT true; + + +SET search_path = staging, pg_catalog; + +-- +-- Name: row_id; Type: DEFAULT; Schema: staging; Owner: evergreen +-- + +ALTER TABLE ONLY card_stage ALTER COLUMN row_id SET DEFAULT nextval('card_stage_row_id_seq'::regclass); + + +-- +-- Name: row_id; Type: DEFAULT; Schema: staging; Owner: evergreen +-- + +ALTER TABLE ONLY mailing_address_stage ALTER COLUMN row_id SET DEFAULT nextval('mailing_address_stage_row_id_seq'::regclass); + + +-- +-- Name: row_id; Type: DEFAULT; Schema: staging; Owner: evergreen +-- + +ALTER TABLE ONLY statcat_stage ALTER COLUMN row_id SET DEFAULT nextval('statcat_stage_row_id_seq'::regclass); + + +-- +-- Name: row_id; Type: DEFAULT; Schema: staging; Owner: evergreen +-- + +ALTER TABLE ONLY user_stage ALTER COLUMN row_id SET DEFAULT nextval('user_stage_row_id_seq'::regclass); + + +SET search_path = url_verify, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY session ALTER COLUMN id SET DEFAULT nextval('session_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY url ALTER COLUMN id SET DEFAULT nextval('url_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY url_selector ALTER COLUMN id SET DEFAULT nextval('url_selector_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY url_verification ALTER COLUMN id SET DEFAULT nextval('url_verification_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY verification_attempt ALTER COLUMN id SET DEFAULT nextval('verification_attempt_id_seq'::regclass); + + +SET search_path = vandelay, pg_catalog; + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY authority_attr_definition ALTER COLUMN id SET DEFAULT nextval('authority_attr_definition_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY authority_match ALTER COLUMN id SET DEFAULT nextval('authority_match_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY authority_queue ALTER COLUMN id SET DEFAULT nextval('queue_id_seq'::regclass); + + +-- +-- Name: complete; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY authority_queue ALTER COLUMN complete SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY bib_attr_definition ALTER COLUMN id SET DEFAULT nextval('bib_attr_definition_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY bib_match ALTER COLUMN id SET DEFAULT nextval('bib_match_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY bib_queue ALTER COLUMN id SET DEFAULT nextval('queue_id_seq'::regclass); + + +-- +-- Name: complete; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY bib_queue ALTER COLUMN complete SET DEFAULT false; + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_bib_trash_fields ALTER COLUMN id SET DEFAULT nextval('import_bib_trash_fields_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_bib_trash_group ALTER COLUMN id SET DEFAULT nextval('import_bib_trash_group_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_item ALTER COLUMN id SET DEFAULT nextval('import_item_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_item_attr_definition ALTER COLUMN id SET DEFAULT nextval('import_item_attr_definition_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY match_set ALTER COLUMN id SET DEFAULT nextval('match_set_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY match_set_point ALTER COLUMN id SET DEFAULT nextval('match_set_point_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY match_set_quality ALTER COLUMN id SET DEFAULT nextval('match_set_quality_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY merge_profile ALTER COLUMN id SET DEFAULT nextval('merge_profile_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queue ALTER COLUMN id SET DEFAULT nextval('queue_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_authority_record ALTER COLUMN id SET DEFAULT nextval('queued_record_id_seq'::regclass); + + +-- +-- Name: create_time; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_authority_record ALTER COLUMN create_time SET DEFAULT now(); + + +-- +-- Name: purpose; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_authority_record ALTER COLUMN purpose SET DEFAULT 'import'::text; + + +-- +-- Name: quality; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_authority_record ALTER COLUMN quality SET DEFAULT 0; + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_authority_record_attr ALTER COLUMN id SET DEFAULT nextval('queued_authority_record_attr_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_bib_record ALTER COLUMN id SET DEFAULT nextval('queued_record_id_seq'::regclass); + + +-- +-- Name: create_time; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_bib_record ALTER COLUMN create_time SET DEFAULT now(); + + +-- +-- Name: purpose; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_bib_record ALTER COLUMN purpose SET DEFAULT 'import'::text; + + +-- +-- Name: quality; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_bib_record ALTER COLUMN quality SET DEFAULT 0; + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_bib_record_attr ALTER COLUMN id SET DEFAULT nextval('queued_bib_record_attr_id_seq'::regclass); + + +-- +-- Name: id; Type: DEFAULT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_record ALTER COLUMN id SET DEFAULT nextval('queued_record_id_seq'::regclass); + + +SET search_path = acq, pg_catalog; + +-- +-- Name: acq_cancel_reason_one_per_org_unit; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY cancel_reason + ADD CONSTRAINT acq_cancel_reason_one_per_org_unit UNIQUE (org_unit, label); + + +-- +-- Name: acq_fy_logical_key; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fiscal_year + ADD CONSTRAINT acq_fy_logical_key UNIQUE (calendar, year); + + +-- +-- Name: acq_fy_physical_key; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fiscal_year + ADD CONSTRAINT acq_fy_physical_key UNIQUE (calendar, year_begin); + + +-- +-- Name: acq_lineitem_history_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY acq_lineitem_history + ADD CONSTRAINT acq_lineitem_history_pkey PRIMARY KEY (audit_id); + + +-- +-- Name: acq_purchase_order_history_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY acq_purchase_order_history + ADD CONSTRAINT acq_purchase_order_history_pkey PRIMARY KEY (audit_id); + + +-- +-- Name: acqdf_name_once_per_owner; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula + ADD CONSTRAINT acqdf_name_once_per_owner UNIQUE (name, owner); + + +-- +-- Name: acqdfe_lib_once_per_formula; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula_entry + ADD CONSTRAINT acqdfe_lib_once_per_formula UNIQUE (formula, "position"); + + +-- +-- Name: acqft_tag_once_per_owner; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_tag + ADD CONSTRAINT acqft_tag_once_per_owner UNIQUE (name, owner); + + +-- +-- Name: acqftm_fund_once_per_tag; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_tag_map + ADD CONSTRAINT acqftm_fund_once_per_tag UNIQUE (fund, tag); + + +-- +-- Name: action_sequence; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_policy_action + ADD CONSTRAINT action_sequence UNIQUE (claim_policy, action_interval); + + +-- +-- Name: alert_one_code_per_org; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_alert_text + ADD CONSTRAINT alert_one_code_per_org UNIQUE (code, owning_lib); + + +-- +-- Name: cancel_reason_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY cancel_reason + ADD CONSTRAINT cancel_reason_pkey PRIMARY KEY (id); + + +-- +-- Name: claim_event_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_event + ADD CONSTRAINT claim_event_pkey PRIMARY KEY (id); + + +-- +-- Name: claim_event_type_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_event_type + ADD CONSTRAINT claim_event_type_pkey PRIMARY KEY (id); + + +-- +-- Name: claim_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim + ADD CONSTRAINT claim_pkey PRIMARY KEY (id); + + +-- +-- Name: claim_policy_action_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_policy_action + ADD CONSTRAINT claim_policy_action_pkey PRIMARY KEY (id); + + +-- +-- Name: claim_policy_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_policy + ADD CONSTRAINT claim_policy_pkey PRIMARY KEY (id); + + +-- +-- Name: claim_type_once_per_org; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_type + ADD CONSTRAINT claim_type_once_per_org UNIQUE (org_unit, code); + + +-- +-- Name: claim_type_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_type + ADD CONSTRAINT claim_type_pkey PRIMARY KEY (id); + + +-- +-- Name: code_once_per_org_year; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund + ADD CONSTRAINT code_once_per_org_year UNIQUE (org, code, year); + + +-- +-- Name: code_once_per_owner; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider + ADD CONSTRAINT code_once_per_owner UNIQUE (code, owner); + + +-- +-- Name: currency_type_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY currency_type + ADD CONSTRAINT currency_type_pkey PRIMARY KEY (code); + + +-- +-- Name: debit_attribution_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY debit_attribution + ADD CONSTRAINT debit_attribution_pkey PRIMARY KEY (id); + + +-- +-- Name: distribution_formula_application_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula_application + ADD CONSTRAINT distribution_formula_application_pkey PRIMARY KEY (id); + + +-- +-- Name: distribution_formula_entry_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula_entry + ADD CONSTRAINT distribution_formula_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: distribution_formula_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula + ADD CONSTRAINT distribution_formula_pkey PRIMARY KEY (id); + + +-- +-- Name: edi_account_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY edi_account + ADD CONSTRAINT edi_account_pkey PRIMARY KEY (id); + + +-- +-- Name: edi_message_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY edi_message + ADD CONSTRAINT edi_message_pkey PRIMARY KEY (id); + + +-- +-- Name: event_type_once_per_org; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_event_type + ADD CONSTRAINT event_type_once_per_org UNIQUE (org_unit, code); + + +-- +-- Name: exchange_rate_from_to_once; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY exchange_rate + ADD CONSTRAINT exchange_rate_from_to_once UNIQUE (from_currency, to_currency); + + +-- +-- Name: exchange_rate_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY exchange_rate + ADD CONSTRAINT exchange_rate_pkey PRIMARY KEY (id); + + +-- +-- Name: fiscal_calendar_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fiscal_calendar + ADD CONSTRAINT fiscal_calendar_pkey PRIMARY KEY (id); + + +-- +-- Name: fiscal_year_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fiscal_year + ADD CONSTRAINT fiscal_year_pkey PRIMARY KEY (id); + + +-- +-- Name: fund_allocation_percent_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_allocation_percent + ADD CONSTRAINT fund_allocation_percent_pkey PRIMARY KEY (id); + + +-- +-- Name: fund_allocation_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_allocation + ADD CONSTRAINT fund_allocation_pkey PRIMARY KEY (id); + + +-- +-- Name: fund_debit_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_debit + ADD CONSTRAINT fund_debit_pkey PRIMARY KEY (id); + + +-- +-- Name: fund_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund + ADD CONSTRAINT fund_pkey PRIMARY KEY (id); + + +-- +-- Name: fund_tag_map_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_tag_map + ADD CONSTRAINT fund_tag_map_pkey PRIMARY KEY (id); + + +-- +-- Name: fund_tag_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_tag + ADD CONSTRAINT fund_tag_pkey PRIMARY KEY (id); + + +-- +-- Name: fund_transfer_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_transfer + ADD CONSTRAINT fund_transfer_pkey PRIMARY KEY (id); + + +-- +-- Name: funding_source_code_key; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY funding_source + ADD CONSTRAINT funding_source_code_key UNIQUE (code); + + +-- +-- Name: funding_source_credit_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY funding_source_credit + ADD CONSTRAINT funding_source_credit_pkey PRIMARY KEY (id); + + +-- +-- Name: funding_source_name_once_per_owner; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY funding_source + ADD CONSTRAINT funding_source_name_once_per_owner UNIQUE (name, owner); + + +-- +-- Name: funding_source_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY funding_source + ADD CONSTRAINT funding_source_pkey PRIMARY KEY (id); + + +-- +-- Name: inv_ident_once_per_provider; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice + ADD CONSTRAINT inv_ident_once_per_provider UNIQUE (provider, inv_ident); + + +-- +-- Name: invoice_entry_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_entry + ADD CONSTRAINT invoice_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: invoice_item_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_item + ADD CONSTRAINT invoice_item_pkey PRIMARY KEY (id); + + +-- +-- Name: invoice_item_type_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_item_type + ADD CONSTRAINT invoice_item_type_pkey PRIMARY KEY (code); + + +-- +-- Name: invoice_method_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_method + ADD CONSTRAINT invoice_method_pkey PRIMARY KEY (code); + + +-- +-- Name: invoice_payment_method_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_payment_method + ADD CONSTRAINT invoice_payment_method_pkey PRIMARY KEY (code); + + +-- +-- Name: invoice_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice + ADD CONSTRAINT invoice_pkey PRIMARY KEY (id); + + +-- +-- Name: lineitem_alert_text_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_alert_text + ADD CONSTRAINT lineitem_alert_text_pkey PRIMARY KEY (id); + + +-- +-- Name: lineitem_attr_definition_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_attr_definition + ADD CONSTRAINT lineitem_attr_definition_pkey PRIMARY KEY (id); + + +-- +-- Name: lineitem_attr_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_attr + ADD CONSTRAINT lineitem_attr_pkey PRIMARY KEY (id); + + +-- +-- Name: lineitem_detail_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_detail + ADD CONSTRAINT lineitem_detail_pkey PRIMARY KEY (id); + + +-- +-- Name: lineitem_generated_attr_definition_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_generated_attr_definition + ADD CONSTRAINT lineitem_generated_attr_definition_pkey PRIMARY KEY (id); + + +-- +-- Name: lineitem_local_attr_definition_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_local_attr_definition + ADD CONSTRAINT lineitem_local_attr_definition_pkey PRIMARY KEY (id); + + +-- +-- Name: lineitem_marc_attr_definition_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_marc_attr_definition + ADD CONSTRAINT lineitem_marc_attr_definition_pkey PRIMARY KEY (id); + + +-- +-- Name: lineitem_note_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_note + ADD CONSTRAINT lineitem_note_pkey PRIMARY KEY (id); + + +-- +-- Name: lineitem_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem + ADD CONSTRAINT lineitem_pkey PRIMARY KEY (id); + + +-- +-- Name: lineitem_provider_attr_definition_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_provider_attr_definition + ADD CONSTRAINT lineitem_provider_attr_definition_pkey PRIMARY KEY (id); + + +-- +-- Name: lineitem_usr_attr_definition_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_usr_attr_definition + ADD CONSTRAINT lineitem_usr_attr_definition_pkey PRIMARY KEY (id); + + +-- +-- Name: logical_key; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_allocation_percent + ADD CONSTRAINT logical_key UNIQUE (funding_source, org, fund_code); + + +-- +-- Name: name_once_per_org; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_policy + ADD CONSTRAINT name_once_per_org UNIQUE (org_unit, name); + + +-- +-- Name: name_once_per_org_year; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund + ADD CONSTRAINT name_once_per_org_year UNIQUE (org, name, year); + + +-- +-- Name: name_once_per_owner; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY picklist + ADD CONSTRAINT name_once_per_owner UNIQUE (name, owner); + + +-- +-- Name: name_once_per_provider; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_holding_subfield_map + ADD CONSTRAINT name_once_per_provider UNIQUE (provider, name); + + +-- +-- Name: picklist_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY picklist + ADD CONSTRAINT picklist_pkey PRIMARY KEY (id); + + +-- +-- Name: po_item_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY po_item + ADD CONSTRAINT po_item_pkey PRIMARY KEY (id); + + +-- +-- Name: po_note_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY po_note + ADD CONSTRAINT po_note_pkey PRIMARY KEY (id); + + +-- +-- Name: provider_address_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_address + ADD CONSTRAINT provider_address_pkey PRIMARY KEY (id); + + +-- +-- Name: provider_contact_address_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_contact_address + ADD CONSTRAINT provider_contact_address_pkey PRIMARY KEY (id); + + +-- +-- Name: provider_contact_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_contact + ADD CONSTRAINT provider_contact_pkey PRIMARY KEY (id); + + +-- +-- Name: provider_holding_subfield_map_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_holding_subfield_map + ADD CONSTRAINT provider_holding_subfield_map_pkey PRIMARY KEY (id); + + +-- +-- Name: provider_name_once_per_owner; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider + ADD CONSTRAINT provider_name_once_per_owner UNIQUE (name, owner); + + +-- +-- Name: provider_note_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_note + ADD CONSTRAINT provider_note_pkey PRIMARY KEY (id); + + +-- +-- Name: provider_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider + ADD CONSTRAINT provider_pkey PRIMARY KEY (id); + + +-- +-- Name: purchase_order_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY purchase_order + ADD CONSTRAINT purchase_order_pkey PRIMARY KEY (id); + + +-- +-- Name: serial_claim_event_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY serial_claim_event + ADD CONSTRAINT serial_claim_event_pkey PRIMARY KEY (id); + + +-- +-- Name: serial_claim_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY serial_claim + ADD CONSTRAINT serial_claim_pkey PRIMARY KEY (id); + + +-- +-- Name: user_request_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY user_request + ADD CONSTRAINT user_request_pkey PRIMARY KEY (id); + + +-- +-- Name: user_request_type_label_key; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY user_request_type + ADD CONSTRAINT user_request_type_label_key UNIQUE (label); + + +-- +-- Name: user_request_type_pkey; Type: CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY user_request_type + ADD CONSTRAINT user_request_type_pkey PRIMARY KEY (id); + + +SET search_path = action, pg_catalog; + +-- +-- Name: aged_circulation_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY aged_circulation + ADD CONSTRAINT aged_circulation_pkey PRIMARY KEY (id); + + +-- +-- Name: aged_hold_request_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY aged_hold_request + ADD CONSTRAINT aged_hold_request_pkey PRIMARY KEY (id); + + +-- +-- Name: archive_actor_stat_cat_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY archive_actor_stat_cat + ADD CONSTRAINT archive_actor_stat_cat_pkey PRIMARY KEY (id); + + +-- +-- Name: archive_asset_stat_cat_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY archive_asset_stat_cat + ADD CONSTRAINT archive_asset_stat_cat_pkey PRIMARY KEY (id); + + +-- +-- Name: circulation_limit_group_map_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY circulation_limit_group_map + ADD CONSTRAINT circulation_limit_group_map_pkey PRIMARY KEY (circ, limit_group); + + +-- +-- Name: circulation_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY circulation + ADD CONSTRAINT circulation_pkey PRIMARY KEY (id); + + +-- +-- Name: copy_once_per_hold; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_copy_map + ADD CONSTRAINT copy_once_per_hold UNIQUE (hold, target_copy); + + +-- +-- Name: fieldset_col_once_per_set; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY fieldset_col_val + ADD CONSTRAINT fieldset_col_once_per_set UNIQUE (fieldset, col); + + +-- +-- Name: fieldset_col_val_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY fieldset_col_val + ADD CONSTRAINT fieldset_col_val_pkey PRIMARY KEY (id); + + +-- +-- Name: fieldset_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY fieldset + ADD CONSTRAINT fieldset_pkey PRIMARY KEY (id); + + +-- +-- Name: hold_copy_map_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_copy_map + ADD CONSTRAINT hold_copy_map_pkey PRIMARY KEY (id); + + +-- +-- Name: hold_notification_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_notification + ADD CONSTRAINT hold_notification_pkey PRIMARY KEY (id); + + +-- +-- Name: hold_request_cancel_cause_label_key; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request_cancel_cause + ADD CONSTRAINT hold_request_cancel_cause_label_key UNIQUE (label); + + +-- +-- Name: hold_request_cancel_cause_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request_cancel_cause + ADD CONSTRAINT hold_request_cancel_cause_pkey PRIMARY KEY (id); + + +-- +-- Name: hold_request_note_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request_note + ADD CONSTRAINT hold_request_note_pkey PRIMARY KEY (id); + + +-- +-- Name: hold_request_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request + ADD CONSTRAINT hold_request_pkey PRIMARY KEY (id); + + +-- +-- Name: hold_transit_copy_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_transit_copy + ADD CONSTRAINT hold_transit_copy_pkey PRIMARY KEY (id); + + +-- +-- Name: in_house_use_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY in_house_use + ADD CONSTRAINT in_house_use_pkey PRIMARY KEY (id); + + +-- +-- Name: lib_name_unique; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY fieldset + ADD CONSTRAINT lib_name_unique UNIQUE (owning_lib, name); + + +-- +-- Name: non_cat_in_house_use_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY non_cat_in_house_use + ADD CONSTRAINT non_cat_in_house_use_pkey PRIMARY KEY (id); + + +-- +-- Name: non_cataloged_circulation_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY non_cataloged_circulation + ADD CONSTRAINT non_cataloged_circulation_pkey PRIMARY KEY (id); + + +-- +-- Name: reservation_transit_copy_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY reservation_transit_copy + ADD CONSTRAINT reservation_transit_copy_pkey PRIMARY KEY (id); + + +-- +-- Name: survey_answer_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY survey_answer + ADD CONSTRAINT survey_answer_pkey PRIMARY KEY (id); + + +-- +-- Name: survey_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY survey + ADD CONSTRAINT survey_pkey PRIMARY KEY (id); + + +-- +-- Name: survey_question_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY survey_question + ADD CONSTRAINT survey_question_pkey PRIMARY KEY (id); + + +-- +-- Name: survey_response_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY survey_response + ADD CONSTRAINT survey_response_pkey PRIMARY KEY (id); + + +-- +-- Name: transit_copy_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY transit_copy + ADD CONSTRAINT transit_copy_pkey PRIMARY KEY (id); + + +-- +-- Name: unfulfilled_hold_list_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY unfulfilled_hold_list + ADD CONSTRAINT unfulfilled_hold_list_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_circ_history_pkey; Type: CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY usr_circ_history + ADD CONSTRAINT usr_circ_history_pkey PRIMARY KEY (id); + + +SET search_path = action_trigger, pg_catalog; + +-- +-- Name: cleanup_pkey; Type: CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY cleanup + ADD CONSTRAINT cleanup_pkey PRIMARY KEY (module); + + +-- +-- Name: collector_pkey; Type: CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY collector + ADD CONSTRAINT collector_pkey PRIMARY KEY (module); + + +-- +-- Name: env_event_label_once; Type: CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY environment + ADD CONSTRAINT env_event_label_once UNIQUE (event_def, label); + + +-- +-- Name: environment_pkey; Type: CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY environment + ADD CONSTRAINT environment_pkey PRIMARY KEY (id); + + +-- +-- Name: ev_def_name_owner_once; Type: CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_definition + ADD CONSTRAINT ev_def_name_owner_once UNIQUE (owner, name); + + +-- +-- Name: ev_def_owner_hook_val_react_clean_delay_once; Type: CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_definition + ADD CONSTRAINT ev_def_owner_hook_val_react_clean_delay_once UNIQUE (owner, hook, validator, reactor, delay, delay_field); + + +-- +-- Name: event_definition_pkey; Type: CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_definition + ADD CONSTRAINT event_definition_pkey PRIMARY KEY (id); + + +-- +-- Name: event_output_pkey; Type: CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_output + ADD CONSTRAINT event_output_pkey PRIMARY KEY (id); + + +-- +-- Name: event_params_event_def_param_once; Type: CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_params + ADD CONSTRAINT event_params_event_def_param_once UNIQUE (event_def, param); + + +-- +-- Name: event_params_pkey; Type: CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_params + ADD CONSTRAINT event_params_pkey PRIMARY KEY (id); + + +-- +-- Name: event_pkey; Type: CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event + ADD CONSTRAINT event_pkey PRIMARY KEY (id); + + +-- +-- Name: hook_pkey; Type: CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY hook + ADD CONSTRAINT hook_pkey PRIMARY KEY (key); + + +-- +-- Name: reactor_pkey; Type: CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY reactor + ADD CONSTRAINT reactor_pkey PRIMARY KEY (module); + + +-- +-- Name: validator_pkey; Type: CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY validator + ADD CONSTRAINT validator_pkey PRIMARY KEY (module); + + +SET search_path = actor, pg_catalog; + +-- +-- Name: address_alert_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY address_alert + ADD CONSTRAINT address_alert_pkey PRIMARY KEY (id); + + +-- +-- Name: aouctn_once_per_org; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_custom_tree_node + ADD CONSTRAINT aouctn_once_per_org UNIQUE (tree, org_unit); + + +-- +-- Name: asfg_code_once_per_org; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY search_filter_group + ADD CONSTRAINT asfg_code_once_per_org UNIQUE (owner, code); + + +-- +-- Name: asfg_label_once_per_org; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY search_filter_group + ADD CONSTRAINT asfg_label_once_per_org UNIQUE (owner, label); + + +-- +-- Name: asfge_query_once_per_group; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY search_filter_group_entry + ADD CONSTRAINT asfge_query_once_per_group UNIQUE (grp, query); + + +-- +-- Name: card_barcode_key; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY card + ADD CONSTRAINT card_barcode_key UNIQUE (barcode); + + +-- +-- Name: card_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY card + ADD CONSTRAINT card_pkey PRIMARY KEY (id); + + +-- +-- Name: hours_of_operation_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY hours_of_operation + ADD CONSTRAINT hours_of_operation_pkey PRIMARY KEY (id); + + +-- +-- Name: name_once_per_user; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_saved_search + ADD CONSTRAINT name_once_per_user UNIQUE (owner, name); + + +-- +-- Name: org_address_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_address + ADD CONSTRAINT org_address_pkey PRIMARY KEY (id); + + +-- +-- Name: org_lasso_map_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_lasso_map + ADD CONSTRAINT org_lasso_map_pkey PRIMARY KEY (id); + + +-- +-- Name: org_lasso_name_key; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_lasso + ADD CONSTRAINT org_lasso_name_key UNIQUE (name); + + +-- +-- Name: org_lasso_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_lasso + ADD CONSTRAINT org_lasso_pkey PRIMARY KEY (id); + + +-- +-- Name: org_unit_closed_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_closed + ADD CONSTRAINT org_unit_closed_pkey PRIMARY KEY (id); + + +-- +-- Name: org_unit_custom_tree_node_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_custom_tree_node + ADD CONSTRAINT org_unit_custom_tree_node_pkey PRIMARY KEY (id); + + +-- +-- Name: org_unit_custom_tree_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_custom_tree + ADD CONSTRAINT org_unit_custom_tree_pkey PRIMARY KEY (id); + + +-- +-- Name: org_unit_custom_tree_purpose_key; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_custom_tree + ADD CONSTRAINT org_unit_custom_tree_purpose_key UNIQUE (purpose); + + +-- +-- Name: org_unit_name_key; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit + ADD CONSTRAINT org_unit_name_key UNIQUE (name); + + +-- +-- Name: org_unit_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit + ADD CONSTRAINT org_unit_pkey PRIMARY KEY (id); + + +-- +-- Name: org_unit_proximity_adjustment_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_proximity_adjustment + ADD CONSTRAINT org_unit_proximity_adjustment_pkey PRIMARY KEY (id); + + +-- +-- Name: org_unit_proximity_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_proximity + ADD CONSTRAINT org_unit_proximity_pkey PRIMARY KEY (id); + + +-- +-- Name: org_unit_setting_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_setting + ADD CONSTRAINT org_unit_setting_pkey PRIMARY KEY (id); + + +-- +-- Name: org_unit_shortname_key; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit + ADD CONSTRAINT org_unit_shortname_key UNIQUE (shortname); + + +-- +-- Name: org_unit_type_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_type + ADD CONSTRAINT org_unit_type_pkey PRIMARY KEY (id); + + +-- +-- Name: ou_once_per_key; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_setting + ADD CONSTRAINT ou_once_per_key UNIQUE (org_unit, name); + + +-- +-- Name: passwd_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY passwd + ADD CONSTRAINT passwd_pkey PRIMARY KEY (id); + + +-- +-- Name: passwd_type_name_key; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY passwd_type + ADD CONSTRAINT passwd_type_name_key UNIQUE (name); + + +-- +-- Name: passwd_type_once_per_user; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY passwd + ADD CONSTRAINT passwd_type_once_per_user UNIQUE (usr, passwd_type); + + +-- +-- Name: passwd_type_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY passwd_type + ADD CONSTRAINT passwd_type_pkey PRIMARY KEY (code); + + +-- +-- Name: sc_once_per_owner; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat + ADD CONSTRAINT sc_once_per_owner UNIQUE (owner, name); + + +-- +-- Name: sc_once_per_usr; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_usr_map + ADD CONSTRAINT sc_once_per_usr UNIQUE (target_usr, stat_cat); + + +-- +-- Name: sce_once_per_owner; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry + ADD CONSTRAINT sce_once_per_owner UNIQUE (stat_cat, owner, value); + + +-- +-- Name: sced_once_per_owner; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_default + ADD CONSTRAINT sced_once_per_owner UNIQUE (stat_cat, owner); + + +-- +-- Name: search_filter_group_entry_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY search_filter_group_entry + ADD CONSTRAINT search_filter_group_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: search_filter_group_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY search_filter_group + ADD CONSTRAINT search_filter_group_pkey PRIMARY KEY (id); + + +-- +-- Name: search_query_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY search_query + ADD CONSTRAINT search_query_pkey PRIMARY KEY (id); + + +-- +-- Name: stat_cat_entry_default_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_default + ADD CONSTRAINT stat_cat_entry_default_pkey PRIMARY KEY (id); + + +-- +-- Name: stat_cat_entry_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry + ADD CONSTRAINT stat_cat_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: stat_cat_entry_usr_map_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_usr_map + ADD CONSTRAINT stat_cat_entry_usr_map_pkey PRIMARY KEY (id); + + +-- +-- Name: stat_cat_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat + ADD CONSTRAINT stat_cat_pkey PRIMARY KEY (id); + + +-- +-- Name: stat_cat_sip_fields_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_sip_fields + ADD CONSTRAINT stat_cat_sip_fields_pkey PRIMARY KEY (field); + + +-- +-- Name: toolbar_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY toolbar + ADD CONSTRAINT toolbar_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_activity_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_activity + ADD CONSTRAINT usr_activity_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_address_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_address + ADD CONSTRAINT usr_address_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_card_key; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr + ADD CONSTRAINT usr_card_key UNIQUE (card); + + +-- +-- Name: usr_message_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_message + ADD CONSTRAINT usr_message_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_note_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_note + ADD CONSTRAINT usr_note_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_once_per_key; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_setting + ADD CONSTRAINT usr_once_per_key UNIQUE (usr, name); + + +-- +-- Name: usr_opt_in_once_per_org_unit; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_org_unit_opt_in + ADD CONSTRAINT usr_opt_in_once_per_org_unit UNIQUE (usr, org_unit); + + +-- +-- Name: usr_org_unit_opt_in_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_org_unit_opt_in + ADD CONSTRAINT usr_org_unit_opt_in_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_password_reset_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_password_reset + ADD CONSTRAINT usr_password_reset_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr + ADD CONSTRAINT usr_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_saved_search_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_saved_search + ADD CONSTRAINT usr_saved_search_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_setting_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_setting + ADD CONSTRAINT usr_setting_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_standing_penalty_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_standing_penalty + ADD CONSTRAINT usr_standing_penalty_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_usrname_key; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr + ADD CONSTRAINT usr_usrname_key UNIQUE (usrname); + + +-- +-- Name: workstation_name_key; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY workstation + ADD CONSTRAINT workstation_name_key UNIQUE (name); + + +-- +-- Name: workstation_pkey; Type: CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY workstation + ADD CONSTRAINT workstation_pkey PRIMARY KEY (id); + + +SET search_path = asset, pg_catalog; + +-- +-- Name: acplo_once_per_org; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location_order + ADD CONSTRAINT acplo_once_per_org UNIQUE (location, org); + + +-- +-- Name: call_number_class_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_class + ADD CONSTRAINT call_number_class_pkey PRIMARY KEY (id); + + +-- +-- Name: call_number_note_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_note + ADD CONSTRAINT call_number_note_pkey PRIMARY KEY (id); + + +-- +-- Name: call_number_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number + ADD CONSTRAINT call_number_pkey PRIMARY KEY (id); + + +-- +-- Name: call_number_prefix_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_prefix + ADD CONSTRAINT call_number_prefix_pkey PRIMARY KEY (id); + + +-- +-- Name: call_number_suffix_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_suffix + ADD CONSTRAINT call_number_suffix_pkey PRIMARY KEY (id); + + +-- +-- Name: copy_location_group_map_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location_group_map + ADD CONSTRAINT copy_location_group_map_pkey PRIMARY KEY (id); + + +-- +-- Name: copy_location_group_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location_group + ADD CONSTRAINT copy_location_group_pkey PRIMARY KEY (id); + + +-- +-- Name: copy_location_order_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location_order + ADD CONSTRAINT copy_location_order_pkey PRIMARY KEY (id); + + +-- +-- Name: copy_location_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location + ADD CONSTRAINT copy_location_pkey PRIMARY KEY (id); + + +-- +-- Name: copy_note_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_note + ADD CONSTRAINT copy_note_pkey PRIMARY KEY (id); + + +-- +-- Name: copy_part_map_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_part_map + ADD CONSTRAINT copy_part_map_pkey PRIMARY KEY (id); + + +-- +-- Name: copy_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy + ADD CONSTRAINT copy_pkey PRIMARY KEY (id); + + +-- +-- Name: copy_template_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_template + ADD CONSTRAINT copy_template_pkey PRIMARY KEY (id); + + +-- +-- Name: lgroup_once_per_group; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location_group_map + ADD CONSTRAINT lgroup_once_per_group UNIQUE (lgroup, location); + + +-- +-- Name: lgroup_once_per_owner; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location_group + ADD CONSTRAINT lgroup_once_per_owner UNIQUE (owner, name); + + +-- +-- Name: opac_visible_copies_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY opac_visible_copies + ADD CONSTRAINT opac_visible_copies_pkey PRIMARY KEY (id); + + +-- +-- Name: sc_once_per_owner; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat + ADD CONSTRAINT sc_once_per_owner UNIQUE (owner, name); + + +-- +-- Name: sce_once_per_copy; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_copy_map + ADD CONSTRAINT sce_once_per_copy UNIQUE (owning_copy, stat_cat); + + +-- +-- Name: sce_once_per_owner; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry + ADD CONSTRAINT sce_once_per_owner UNIQUE (stat_cat, owner, value); + + +-- +-- Name: scte_once_per_trans; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_transparency_map + ADD CONSTRAINT scte_once_per_trans UNIQUE (owning_transparency, stat_cat); + + +-- +-- Name: stat_cat_entry_copy_map_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_copy_map + ADD CONSTRAINT stat_cat_entry_copy_map_pkey PRIMARY KEY (id); + + +-- +-- Name: stat_cat_entry_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry + ADD CONSTRAINT stat_cat_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: stat_cat_entry_transparency_map_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_transparency_map + ADD CONSTRAINT stat_cat_entry_transparency_map_pkey PRIMARY KEY (id); + + +-- +-- Name: stat_cat_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat + ADD CONSTRAINT stat_cat_pkey PRIMARY KEY (id); + + +-- +-- Name: stat_cat_sip_fields_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_sip_fields + ADD CONSTRAINT stat_cat_sip_fields_pkey PRIMARY KEY (field); + + +-- +-- Name: uri_call_number_map_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY uri_call_number_map + ADD CONSTRAINT uri_call_number_map_pkey PRIMARY KEY (id); + + +-- +-- Name: uri_cn_once; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY uri_call_number_map + ADD CONSTRAINT uri_cn_once UNIQUE (uri, call_number); + + +-- +-- Name: uri_pkey; Type: CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY uri + ADD CONSTRAINT uri_pkey PRIMARY KEY (id); + + +SET search_path = auditor, pg_catalog; + +-- +-- Name: acq_invoice_entry_history_pkey; Type: CONSTRAINT; Schema: auditor; Owner: evergreen +-- + +ALTER TABLE ONLY acq_invoice_entry_history + ADD CONSTRAINT acq_invoice_entry_history_pkey PRIMARY KEY (audit_id); + + +-- +-- Name: acq_invoice_history_pkey; Type: CONSTRAINT; Schema: auditor; Owner: evergreen +-- + +ALTER TABLE ONLY acq_invoice_history + ADD CONSTRAINT acq_invoice_history_pkey PRIMARY KEY (audit_id); + + +-- +-- Name: acq_invoice_item_history_pkey; Type: CONSTRAINT; Schema: auditor; Owner: evergreen +-- + +ALTER TABLE ONLY acq_invoice_item_history + ADD CONSTRAINT acq_invoice_item_history_pkey PRIMARY KEY (audit_id); + + +-- +-- Name: actor_org_unit_history_pkey; Type: CONSTRAINT; Schema: auditor; Owner: evergreen +-- + +ALTER TABLE ONLY actor_org_unit_history + ADD CONSTRAINT actor_org_unit_history_pkey PRIMARY KEY (audit_id); + + +-- +-- Name: actor_usr_address_history_pkey; Type: CONSTRAINT; Schema: auditor; Owner: evergreen +-- + +ALTER TABLE ONLY actor_usr_address_history + ADD CONSTRAINT actor_usr_address_history_pkey PRIMARY KEY (audit_id); + + +-- +-- Name: actor_usr_history_pkey; Type: CONSTRAINT; Schema: auditor; Owner: evergreen +-- + +ALTER TABLE ONLY actor_usr_history + ADD CONSTRAINT actor_usr_history_pkey PRIMARY KEY (audit_id); + + +-- +-- Name: asset_call_number_history_pkey; Type: CONSTRAINT; Schema: auditor; Owner: evergreen +-- + +ALTER TABLE ONLY asset_call_number_history + ADD CONSTRAINT asset_call_number_history_pkey PRIMARY KEY (audit_id); + + +-- +-- Name: asset_copy_history_pkey; Type: CONSTRAINT; Schema: auditor; Owner: evergreen +-- + +ALTER TABLE ONLY asset_copy_history + ADD CONSTRAINT asset_copy_history_pkey PRIMARY KEY (audit_id); + + +-- +-- Name: biblio_record_entry_history_pkey; Type: CONSTRAINT; Schema: auditor; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_history + ADD CONSTRAINT biblio_record_entry_history_pkey PRIMARY KEY (audit_id); + + +-- +-- Name: serial_unit_history_pkey; Type: CONSTRAINT; Schema: auditor; Owner: evergreen +-- + +ALTER TABLE ONLY serial_unit_history + ADD CONSTRAINT serial_unit_history_pkey PRIMARY KEY (audit_id); + + +SET search_path = authority, pg_catalog; + +-- +-- Name: a_bf_mf_map_once; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY control_set_bib_field_metabib_field_map + ADD CONSTRAINT a_bf_mf_map_once UNIQUE (bib_field, metabib_field); + + +-- +-- Name: authority_linking_pkey; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY authority_linking + ADD CONSTRAINT authority_linking_pkey PRIMARY KEY (id); + + +-- +-- Name: bib_linking_pkey; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY bib_linking + ADD CONSTRAINT bib_linking_pkey PRIMARY KEY (id); + + +-- +-- Name: browse_axis_authority_field_map_pkey; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY browse_axis_authority_field_map + ADD CONSTRAINT browse_axis_authority_field_map_pkey PRIMARY KEY (id); + + +-- +-- Name: browse_axis_name_key; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY browse_axis + ADD CONSTRAINT browse_axis_name_key UNIQUE (name); + + +-- +-- Name: browse_axis_pkey; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY browse_axis + ADD CONSTRAINT browse_axis_pkey PRIMARY KEY (code); + + +-- +-- Name: control_set_authority_field_pkey; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY control_set_authority_field + ADD CONSTRAINT control_set_authority_field_pkey PRIMARY KEY (id); + + +-- +-- Name: control_set_bib_field_metabib_field_map_pkey; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY control_set_bib_field_metabib_field_map + ADD CONSTRAINT control_set_bib_field_metabib_field_map_pkey PRIMARY KEY (id); + + +-- +-- Name: control_set_bib_field_pkey; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY control_set_bib_field + ADD CONSTRAINT control_set_bib_field_pkey PRIMARY KEY (id); + + +-- +-- Name: control_set_name_key; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY control_set + ADD CONSTRAINT control_set_name_key UNIQUE (name); + + +-- +-- Name: control_set_pkey; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY control_set + ADD CONSTRAINT control_set_pkey PRIMARY KEY (id); + + +-- +-- Name: full_rec_pkey; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY full_rec + ADD CONSTRAINT full_rec_pkey PRIMARY KEY (id); + + +-- +-- Name: rec_descriptor_pkey; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY rec_descriptor + ADD CONSTRAINT rec_descriptor_pkey PRIMARY KEY (id); + + +-- +-- Name: record_entry_pkey; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY record_entry + ADD CONSTRAINT record_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: record_note_pkey; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY record_note + ADD CONSTRAINT record_note_pkey PRIMARY KEY (id); + + +-- +-- Name: simple_heading_pkey; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY simple_heading + ADD CONSTRAINT simple_heading_pkey PRIMARY KEY (id); + + +-- +-- Name: thesaurus_name_key; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY thesaurus + ADD CONSTRAINT thesaurus_name_key UNIQUE (name); + + +-- +-- Name: thesaurus_pkey; Type: CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY thesaurus + ADD CONSTRAINT thesaurus_pkey PRIMARY KEY (code); + + +SET search_path = biblio, pg_catalog; + +-- +-- Name: monograph_part_pkey; Type: CONSTRAINT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY monograph_part + ADD CONSTRAINT monograph_part_pkey PRIMARY KEY (id); + + +-- +-- Name: peer_bib_copy_map_pkey; Type: CONSTRAINT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY peer_bib_copy_map + ADD CONSTRAINT peer_bib_copy_map_pkey PRIMARY KEY (id); + + +-- +-- Name: peer_type_name_key; Type: CONSTRAINT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY peer_type + ADD CONSTRAINT peer_type_name_key UNIQUE (name); + + +-- +-- Name: peer_type_pkey; Type: CONSTRAINT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY peer_type + ADD CONSTRAINT peer_type_pkey PRIMARY KEY (id); + + +-- +-- Name: record_entry_pkey; Type: CONSTRAINT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY record_entry + ADD CONSTRAINT record_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: record_note_pkey; Type: CONSTRAINT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY record_note + ADD CONSTRAINT record_note_pkey PRIMARY KEY (id); + + +SET search_path = booking, pg_catalog; + +-- +-- Name: br_unique; Type: CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource + ADD CONSTRAINT br_unique UNIQUE (owner, barcode); + + +-- +-- Name: bra_name_once_per_type; Type: CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr + ADD CONSTRAINT bra_name_once_per_type UNIQUE (resource_type, name); + + +-- +-- Name: bram_one_value_per_attr; Type: CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr_map + ADD CONSTRAINT bram_one_value_per_attr UNIQUE (resource, resource_attr); + + +-- +-- Name: brav_logical_key; Type: CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr_value + ADD CONSTRAINT brav_logical_key UNIQUE (owner, attr, valid_value); + + +-- +-- Name: bravm_logical_key; Type: CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY reservation_attr_value_map + ADD CONSTRAINT bravm_logical_key UNIQUE (reservation, attr_value); + + +-- +-- Name: brt_name_and_record_once_per_owner; Type: CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_type + ADD CONSTRAINT brt_name_and_record_once_per_owner UNIQUE (owner, name, record); + + +-- +-- Name: reservation_attr_value_map_pkey; Type: CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY reservation_attr_value_map + ADD CONSTRAINT reservation_attr_value_map_pkey PRIMARY KEY (id); + + +-- +-- Name: reservation_pkey; Type: CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY reservation + ADD CONSTRAINT reservation_pkey PRIMARY KEY (id); + + +-- +-- Name: resource_attr_map_pkey; Type: CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr_map + ADD CONSTRAINT resource_attr_map_pkey PRIMARY KEY (id); + + +-- +-- Name: resource_attr_pkey; Type: CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr + ADD CONSTRAINT resource_attr_pkey PRIMARY KEY (id); + + +-- +-- Name: resource_attr_value_pkey; Type: CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr_value + ADD CONSTRAINT resource_attr_value_pkey PRIMARY KEY (id); + + +-- +-- Name: resource_pkey; Type: CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource + ADD CONSTRAINT resource_pkey PRIMARY KEY (id); + + +-- +-- Name: resource_type_pkey; Type: CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_type + ADD CONSTRAINT resource_type_pkey PRIMARY KEY (id); + + +SET search_path = config, pg_catalog; + +-- +-- Name: barcode_completion_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY barcode_completion + ADD CONSTRAINT barcode_completion_pkey PRIMARY KEY (id); + + +-- +-- Name: best_hold_order_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY best_hold_order + ADD CONSTRAINT best_hold_order_name_key UNIQUE (name); + + +-- +-- Name: best_hold_order_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY best_hold_order + ADD CONSTRAINT best_hold_order_pkey PRIMARY KEY (id); + + +-- +-- Name: bib_source_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY bib_source + ADD CONSTRAINT bib_source_pkey PRIMARY KEY (id); + + +-- +-- Name: bib_source_source_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY bib_source + ADD CONSTRAINT bib_source_source_key UNIQUE (source); + + +-- +-- Name: biblio_fingerprint_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_fingerprint + ADD CONSTRAINT biblio_fingerprint_pkey PRIMARY KEY (id); + + +-- +-- Name: billing_type_once_per_lib; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY billing_type + ADD CONSTRAINT billing_type_once_per_lib UNIQUE (name, owner); + + +-- +-- Name: billing_type_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY billing_type + ADD CONSTRAINT billing_type_pkey PRIMARY KEY (id); + + +-- +-- Name: cfdfs_name_once_per_lib; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY filter_dialog_filter_set + ADD CONSTRAINT cfdfs_name_once_per_lib UNIQUE (name, owning_lib); + + +-- +-- Name: circ_limit_group_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_group + ADD CONSTRAINT circ_limit_group_name_key UNIQUE (name); + + +-- +-- Name: circ_limit_group_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_group + ADD CONSTRAINT circ_limit_group_pkey PRIMARY KEY (id); + + +-- +-- Name: circ_limit_set_circ_mod_map_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set_circ_mod_map + ADD CONSTRAINT circ_limit_set_circ_mod_map_pkey PRIMARY KEY (id); + + +-- +-- Name: circ_limit_set_copy_loc_map_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set_copy_loc_map + ADD CONSTRAINT circ_limit_set_copy_loc_map_pkey PRIMARY KEY (id); + + +-- +-- Name: circ_limit_set_group_map_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set_group_map + ADD CONSTRAINT circ_limit_set_group_map_pkey PRIMARY KEY (id); + + +-- +-- Name: circ_limit_set_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set + ADD CONSTRAINT circ_limit_set_name_key UNIQUE (name); + + +-- +-- Name: circ_limit_set_once_per_matchpoint; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_limit_set_map + ADD CONSTRAINT circ_limit_set_once_per_matchpoint UNIQUE (matchpoint, limit_set); + + +-- +-- Name: circ_limit_set_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set + ADD CONSTRAINT circ_limit_set_pkey PRIMARY KEY (id); + + +-- +-- Name: circ_matrix_limit_set_map_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_limit_set_map + ADD CONSTRAINT circ_matrix_limit_set_map_pkey PRIMARY KEY (id); + + +-- +-- Name: circ_matrix_matchpoint_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_matchpoint + ADD CONSTRAINT circ_matrix_matchpoint_pkey PRIMARY KEY (id); + + +-- +-- Name: circ_matrix_weights_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_weights + ADD CONSTRAINT circ_matrix_weights_name_key UNIQUE (name); + + +-- +-- Name: circ_matrix_weights_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_weights + ADD CONSTRAINT circ_matrix_weights_pkey PRIMARY KEY (id); + + +-- +-- Name: circ_modifier_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_modifier + ADD CONSTRAINT circ_modifier_name_key UNIQUE (name); + + +-- +-- Name: circ_modifier_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_modifier + ADD CONSTRAINT circ_modifier_pkey PRIMARY KEY (code); + + +-- +-- Name: cl_once_per_set; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set_copy_loc_map + ADD CONSTRAINT cl_once_per_set UNIQUE (limit_set, copy_loc); + + +-- +-- Name: clg_once_per_set; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set_group_map + ADD CONSTRAINT clg_once_per_set UNIQUE (limit_set, limit_group); + + +-- +-- Name: cm_once_per_set; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set_circ_mod_map + ADD CONSTRAINT cm_once_per_set UNIQUE (limit_set, circ_mod); + + +-- +-- Name: coded_value_map_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY coded_value_map + ADD CONSTRAINT coded_value_map_pkey PRIMARY KEY (id); + + +-- +-- Name: composite_attr_entry_definition_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY composite_attr_entry_definition + ADD CONSTRAINT composite_attr_entry_definition_pkey PRIMARY KEY (coded_value); + + +-- +-- Name: copy_status_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY copy_status + ADD CONSTRAINT copy_status_name_key UNIQUE (name); + + +-- +-- Name: copy_status_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY copy_status + ADD CONSTRAINT copy_status_pkey PRIMARY KEY (id); + + +-- +-- Name: czsc_source_once_per_lib; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_source_credentials + ADD CONSTRAINT czsc_source_once_per_lib UNIQUE (source, owner); + + +-- +-- Name: db_patch_dependencies_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY db_patch_dependencies + ADD CONSTRAINT db_patch_dependencies_pkey PRIMARY KEY (db_patch); + + +-- +-- Name: filter_dialog_filter_set_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY filter_dialog_filter_set + ADD CONSTRAINT filter_dialog_filter_set_pkey PRIMARY KEY (id); + + +-- +-- Name: filter_dialog_interface_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY filter_dialog_interface + ADD CONSTRAINT filter_dialog_interface_pkey PRIMARY KEY (key); + + +-- +-- Name: floating_group_member_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY floating_group_member + ADD CONSTRAINT floating_group_member_pkey PRIMARY KEY (id); + + +-- +-- Name: floating_group_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY floating_group + ADD CONSTRAINT floating_group_name_key UNIQUE (name); + + +-- +-- Name: floating_group_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY floating_group + ADD CONSTRAINT floating_group_pkey PRIMARY KEY (id); + + +-- +-- Name: global_flag_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY global_flag + ADD CONSTRAINT global_flag_pkey PRIMARY KEY (name); + + +-- +-- Name: hard_due_date_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hard_due_date + ADD CONSTRAINT hard_due_date_name_key UNIQUE (name); + + +-- +-- Name: hard_due_date_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hard_due_date + ADD CONSTRAINT hard_due_date_pkey PRIMARY KEY (id); + + +-- +-- Name: hard_due_date_values_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hard_due_date_values + ADD CONSTRAINT hard_due_date_values_pkey PRIMARY KEY (id); + + +-- +-- Name: hold_matrix_matchpoint_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hold_matrix_matchpoint + ADD CONSTRAINT hold_matrix_matchpoint_pkey PRIMARY KEY (id); + + +-- +-- Name: hold_matrix_weights_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hold_matrix_weights + ADD CONSTRAINT hold_matrix_weights_name_key UNIQUE (name); + + +-- +-- Name: hold_matrix_weights_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hold_matrix_weights + ADD CONSTRAINT hold_matrix_weights_pkey PRIMARY KEY (id); + + +-- +-- Name: i18n_core_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY i18n_core + ADD CONSTRAINT i18n_core_pkey PRIMARY KEY (id); + + +-- +-- Name: i18n_locale_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY i18n_locale + ADD CONSTRAINT i18n_locale_name_key UNIQUE (name); + + +-- +-- Name: i18n_locale_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY i18n_locale + ADD CONSTRAINT i18n_locale_pkey PRIMARY KEY (code); + + +-- +-- Name: identification_type_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY identification_type + ADD CONSTRAINT identification_type_name_key UNIQUE (name); + + +-- +-- Name: identification_type_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY identification_type + ADD CONSTRAINT identification_type_pkey PRIMARY KEY (id); + + +-- +-- Name: idl_field_doc_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY idl_field_doc + ADD CONSTRAINT idl_field_doc_pkey PRIMARY KEY (id); + + +-- +-- Name: index_normalizer_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY index_normalizer + ADD CONSTRAINT index_normalizer_name_key UNIQUE (name); + + +-- +-- Name: index_normalizer_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY index_normalizer + ADD CONSTRAINT index_normalizer_pkey PRIMARY KEY (id); + + +-- +-- Name: internal_flag_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY internal_flag + ADD CONSTRAINT internal_flag_pkey PRIMARY KEY (name); + + +-- +-- Name: marc21_ff_pos_map_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc21_ff_pos_map + ADD CONSTRAINT marc21_ff_pos_map_pkey PRIMARY KEY (id); + + +-- +-- Name: marc21_physical_characteristic_subfield_map_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc21_physical_characteristic_subfield_map + ADD CONSTRAINT marc21_physical_characteristic_subfield_map_pkey PRIMARY KEY (id); + + +-- +-- Name: marc21_physical_characteristic_type_map_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc21_physical_characteristic_type_map + ADD CONSTRAINT marc21_physical_characteristic_type_map_pkey PRIMARY KEY (ptype_key); + + +-- +-- Name: marc21_physical_characteristic_value_map_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc21_physical_characteristic_value_map + ADD CONSTRAINT marc21_physical_characteristic_value_map_pkey PRIMARY KEY (id); + + +-- +-- Name: marc21_rec_type_map_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc21_rec_type_map + ADD CONSTRAINT marc21_rec_type_map_pkey PRIMARY KEY (code); + + +-- +-- Name: marc_field_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc_field + ADD CONSTRAINT marc_field_pkey PRIMARY KEY (id); + + +-- +-- Name: marc_format_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc_format + ADD CONSTRAINT marc_format_pkey PRIMARY KEY (id); + + +-- +-- Name: marc_subfield_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc_subfield + ADD CONSTRAINT marc_subfield_pkey PRIMARY KEY (id); + + +-- +-- Name: metabib_class_label_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_class + ADD CONSTRAINT metabib_class_label_key UNIQUE (label); + + +-- +-- Name: metabib_class_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_class + ADD CONSTRAINT metabib_class_pkey PRIMARY KEY (name); + + +-- +-- Name: metabib_class_ts_map_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_class_ts_map + ADD CONSTRAINT metabib_class_ts_map_pkey PRIMARY KEY (id); + + +-- +-- Name: metabib_field_index_norm_map_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_field_index_norm_map + ADD CONSTRAINT metabib_field_index_norm_map_pkey PRIMARY KEY (id); + + +-- +-- Name: metabib_field_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_field + ADD CONSTRAINT metabib_field_pkey PRIMARY KEY (id); + + +-- +-- Name: metabib_field_ts_map_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_field_ts_map + ADD CONSTRAINT metabib_field_ts_map_pkey PRIMARY KEY (id); + + +-- +-- Name: metabib_search_alias_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_search_alias + ADD CONSTRAINT metabib_search_alias_pkey PRIMARY KEY (alias); + + +-- +-- Name: net_access_level_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY net_access_level + ADD CONSTRAINT net_access_level_name_key UNIQUE (name); + + +-- +-- Name: net_access_level_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY net_access_level + ADD CONSTRAINT net_access_level_pkey PRIMARY KEY (id); + + +-- +-- Name: non_cataloged_type_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY non_cataloged_type + ADD CONSTRAINT non_cataloged_type_pkey PRIMARY KEY (id); + + +-- +-- Name: noncat_once_per_lib; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY non_cataloged_type + ADD CONSTRAINT noncat_once_per_lib UNIQUE (owning_lib, name); + + +-- +-- Name: org_unit_setting_type_label_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_setting_type + ADD CONSTRAINT org_unit_setting_type_label_key UNIQUE (label); + + +-- +-- Name: org_unit_setting_type_log_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_setting_type_log + ADD CONSTRAINT org_unit_setting_type_log_pkey PRIMARY KEY (id); + + +-- +-- Name: org_unit_setting_type_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_setting_type + ADD CONSTRAINT org_unit_setting_type_pkey PRIMARY KEY (name); + + +-- +-- Name: record_attr_definition_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY record_attr_definition + ADD CONSTRAINT record_attr_definition_pkey PRIMARY KEY (name); + + +-- +-- Name: record_attr_index_norm_map_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY record_attr_index_norm_map + ADD CONSTRAINT record_attr_index_norm_map_pkey PRIMARY KEY (id); + + +-- +-- Name: remote_account_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY remote_account + ADD CONSTRAINT remote_account_pkey PRIMARY KEY (id); + + +-- +-- Name: rule_age_hold_protect_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY rule_age_hold_protect + ADD CONSTRAINT rule_age_hold_protect_name_key UNIQUE (name); + + +-- +-- Name: rule_age_hold_protect_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY rule_age_hold_protect + ADD CONSTRAINT rule_age_hold_protect_pkey PRIMARY KEY (id); + + +-- +-- Name: rule_circ_duration_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY rule_circ_duration + ADD CONSTRAINT rule_circ_duration_name_key UNIQUE (name); + + +-- +-- Name: rule_circ_duration_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY rule_circ_duration + ADD CONSTRAINT rule_circ_duration_pkey PRIMARY KEY (id); + + +-- +-- Name: rule_max_fine_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY rule_max_fine + ADD CONSTRAINT rule_max_fine_name_key UNIQUE (name); + + +-- +-- Name: rule_max_fine_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY rule_max_fine + ADD CONSTRAINT rule_max_fine_pkey PRIMARY KEY (id); + + +-- +-- Name: rule_recurring_fine_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY rule_recurring_fine + ADD CONSTRAINT rule_recurring_fine_name_key UNIQUE (name); + + +-- +-- Name: rule_recurring_fine_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY rule_recurring_fine + ADD CONSTRAINT rule_recurring_fine_pkey PRIMARY KEY (id); + + +-- +-- Name: settings_group_label_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY settings_group + ADD CONSTRAINT settings_group_label_key UNIQUE (label); + + +-- +-- Name: settings_group_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY settings_group + ADD CONSTRAINT settings_group_pkey PRIMARY KEY (name); + + +-- +-- Name: sms_carrier_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY sms_carrier + ADD CONSTRAINT sms_carrier_pkey PRIMARY KEY (id); + + +-- +-- Name: standing_penalty_name_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY standing_penalty + ADD CONSTRAINT standing_penalty_name_key UNIQUE (name); + + +-- +-- Name: standing_penalty_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY standing_penalty + ADD CONSTRAINT standing_penalty_pkey PRIMARY KEY (id); + + +-- +-- Name: standing_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY standing + ADD CONSTRAINT standing_pkey PRIMARY KEY (id); + + +-- +-- Name: standing_value_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY standing + ADD CONSTRAINT standing_value_key UNIQUE (value); + + +-- +-- Name: ts_config_list_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY ts_config_list + ADD CONSTRAINT ts_config_list_pkey PRIMARY KEY (id); + + +-- +-- Name: upgrade_log_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY upgrade_log + ADD CONSTRAINT upgrade_log_pkey PRIMARY KEY (version); + + +-- +-- Name: usr_activity_type_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY usr_activity_type + ADD CONSTRAINT usr_activity_type_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_setting_type_label_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY usr_setting_type + ADD CONSTRAINT usr_setting_type_label_key UNIQUE (label); + + +-- +-- Name: usr_setting_type_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY usr_setting_type + ADD CONSTRAINT usr_setting_type_pkey PRIMARY KEY (name); + + +-- +-- Name: weight_assoc_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY weight_assoc + ADD CONSTRAINT weight_assoc_pkey PRIMARY KEY (id); + + +-- +-- Name: xml_transform_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY xml_transform + ADD CONSTRAINT xml_transform_pkey PRIMARY KEY (name); + + +-- +-- Name: z3950_attr_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_attr + ADD CONSTRAINT z3950_attr_pkey PRIMARY KEY (id); + + +-- +-- Name: z3950_index_field_map_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_index_field_map + ADD CONSTRAINT z3950_index_field_map_pkey PRIMARY KEY (id); + + +-- +-- Name: z3950_source_credentials_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_source_credentials + ADD CONSTRAINT z3950_source_credentials_pkey PRIMARY KEY (id); + + +-- +-- Name: z3950_source_label_key; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_source + ADD CONSTRAINT z3950_source_label_key UNIQUE (label); + + +-- +-- Name: z3950_source_pkey; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_source + ADD CONSTRAINT z3950_source_pkey PRIMARY KEY (name); + + +-- +-- Name: z_code_format_once_per_source; Type: CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_attr + ADD CONSTRAINT z_code_format_once_per_source UNIQUE (code, format, source); + + +SET search_path = container, pg_catalog; + +-- +-- Name: biblio_record_entry_bucket_item_note_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket_item_note + ADD CONSTRAINT biblio_record_entry_bucket_item_note_pkey PRIMARY KEY (id); + + +-- +-- Name: biblio_record_entry_bucket_item_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket_item + ADD CONSTRAINT biblio_record_entry_bucket_item_pkey PRIMARY KEY (id); + + +-- +-- Name: biblio_record_entry_bucket_note_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket_note + ADD CONSTRAINT biblio_record_entry_bucket_note_pkey PRIMARY KEY (id); + + +-- +-- Name: biblio_record_entry_bucket_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket + ADD CONSTRAINT biblio_record_entry_bucket_pkey PRIMARY KEY (id); + + +-- +-- Name: biblio_record_entry_bucket_type_label_key; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket_type + ADD CONSTRAINT biblio_record_entry_bucket_type_label_key UNIQUE (label); + + +-- +-- Name: biblio_record_entry_bucket_type_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket_type + ADD CONSTRAINT biblio_record_entry_bucket_type_pkey PRIMARY KEY (code); + + +-- +-- Name: breb_name_once_per_owner; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket + ADD CONSTRAINT breb_name_once_per_owner UNIQUE (owner, name, btype); + + +-- +-- Name: call_number_bucket_item_note_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket_item_note + ADD CONSTRAINT call_number_bucket_item_note_pkey PRIMARY KEY (id); + + +-- +-- Name: call_number_bucket_item_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket_item + ADD CONSTRAINT call_number_bucket_item_pkey PRIMARY KEY (id); + + +-- +-- Name: call_number_bucket_note_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket_note + ADD CONSTRAINT call_number_bucket_note_pkey PRIMARY KEY (id); + + +-- +-- Name: call_number_bucket_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket + ADD CONSTRAINT call_number_bucket_pkey PRIMARY KEY (id); + + +-- +-- Name: call_number_bucket_type_label_key; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket_type + ADD CONSTRAINT call_number_bucket_type_label_key UNIQUE (label); + + +-- +-- Name: call_number_bucket_type_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket_type + ADD CONSTRAINT call_number_bucket_type_pkey PRIMARY KEY (code); + + +-- +-- Name: cb_name_once_per_owner; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket + ADD CONSTRAINT cb_name_once_per_owner UNIQUE (owner, name, btype); + + +-- +-- Name: cnb_name_once_per_owner; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket + ADD CONSTRAINT cnb_name_once_per_owner UNIQUE (owner, name, btype); + + +-- +-- Name: copy_bucket_item_note_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket_item_note + ADD CONSTRAINT copy_bucket_item_note_pkey PRIMARY KEY (id); + + +-- +-- Name: copy_bucket_item_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket_item + ADD CONSTRAINT copy_bucket_item_pkey PRIMARY KEY (id); + + +-- +-- Name: copy_bucket_note_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket_note + ADD CONSTRAINT copy_bucket_note_pkey PRIMARY KEY (id); + + +-- +-- Name: copy_bucket_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket + ADD CONSTRAINT copy_bucket_pkey PRIMARY KEY (id); + + +-- +-- Name: copy_bucket_type_label_key; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket_type + ADD CONSTRAINT copy_bucket_type_label_key UNIQUE (label); + + +-- +-- Name: copy_bucket_type_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket_type + ADD CONSTRAINT copy_bucket_type_pkey PRIMARY KEY (code); + + +-- +-- Name: ub_name_once_per_owner; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket + ADD CONSTRAINT ub_name_once_per_owner UNIQUE (owner, name, btype); + + +-- +-- Name: user_bucket_item_note_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket_item_note + ADD CONSTRAINT user_bucket_item_note_pkey PRIMARY KEY (id); + + +-- +-- Name: user_bucket_item_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket_item + ADD CONSTRAINT user_bucket_item_pkey PRIMARY KEY (id); + + +-- +-- Name: user_bucket_note_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket_note + ADD CONSTRAINT user_bucket_note_pkey PRIMARY KEY (id); + + +-- +-- Name: user_bucket_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket + ADD CONSTRAINT user_bucket_pkey PRIMARY KEY (id); + + +-- +-- Name: user_bucket_type_label_key; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket_type + ADD CONSTRAINT user_bucket_type_label_key UNIQUE (label); + + +-- +-- Name: user_bucket_type_pkey; Type: CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket_type + ADD CONSTRAINT user_bucket_type_pkey PRIMARY KEY (code); + + +SET search_path = extend_reporter, pg_catalog; + +-- +-- Name: legacy_circ_count_pkey; Type: CONSTRAINT; Schema: extend_reporter; Owner: evergreen +-- + +ALTER TABLE ONLY legacy_circ_count + ADD CONSTRAINT legacy_circ_count_pkey PRIMARY KEY (id); + + +SET search_path = metabib, pg_catalog; + +-- +-- Name: author_field_entry_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY author_field_entry + ADD CONSTRAINT author_field_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: browse_entry_def_map_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY browse_entry_def_map + ADD CONSTRAINT browse_entry_def_map_pkey PRIMARY KEY (id); + + +-- +-- Name: browse_entry_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY browse_entry + ADD CONSTRAINT browse_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: browse_entry_simple_heading_map_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY browse_entry_simple_heading_map + ADD CONSTRAINT browse_entry_simple_heading_map_pkey PRIMARY KEY (id); + + +-- +-- Name: browse_entry_sort_value_value_key; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY browse_entry + ADD CONSTRAINT browse_entry_sort_value_value_key UNIQUE (sort_value, value); + + +-- +-- Name: facet_entry_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY facet_entry + ADD CONSTRAINT facet_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: identifier_field_entry_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY identifier_field_entry + ADD CONSTRAINT identifier_field_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: keyword_field_entry_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY keyword_field_entry + ADD CONSTRAINT keyword_field_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: metarecord_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY metarecord + ADD CONSTRAINT metarecord_pkey PRIMARY KEY (id); + + +-- +-- Name: metarecord_source_map_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY metarecord_source_map + ADD CONSTRAINT metarecord_source_map_pkey PRIMARY KEY (id); + + +-- +-- Name: real_full_rec_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY real_full_rec + ADD CONSTRAINT real_full_rec_pkey PRIMARY KEY (id); + + +-- +-- Name: record_attr_vector_list_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY record_attr_vector_list + ADD CONSTRAINT record_attr_vector_list_pkey PRIMARY KEY (source); + + +-- +-- Name: record_sorter_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY record_sorter + ADD CONSTRAINT record_sorter_pkey PRIMARY KEY (id); + + +-- +-- Name: series_field_entry_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY series_field_entry + ADD CONSTRAINT series_field_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: subject_field_entry_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY subject_field_entry + ADD CONSTRAINT subject_field_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: title_field_entry_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY title_field_entry + ADD CONSTRAINT title_field_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: uncontrolled_record_attr_value_pkey; Type: CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY uncontrolled_record_attr_value + ADD CONSTRAINT uncontrolled_record_attr_value_pkey PRIMARY KEY (id); + + +SET search_path = money, pg_catalog; + +-- +-- Name: account_adjustment_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY account_adjustment + ADD CONSTRAINT account_adjustment_pkey PRIMARY KEY (id); + + +-- +-- Name: billable_xact_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY billable_xact + ADD CONSTRAINT billable_xact_pkey PRIMARY KEY (id); + + +-- +-- Name: billing_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY billing + ADD CONSTRAINT billing_pkey PRIMARY KEY (id); + + +-- +-- Name: bnm_desk_payment_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY bnm_desk_payment + ADD CONSTRAINT bnm_desk_payment_pkey PRIMARY KEY (id); + + +-- +-- Name: bnm_payment_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY bnm_payment + ADD CONSTRAINT bnm_payment_pkey PRIMARY KEY (id); + + +-- +-- Name: cash_payment_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY cash_payment + ADD CONSTRAINT cash_payment_pkey PRIMARY KEY (id); + + +-- +-- Name: check_payment_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY check_payment + ADD CONSTRAINT check_payment_pkey PRIMARY KEY (id); + + +-- +-- Name: collections_tracker_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY collections_tracker + ADD CONSTRAINT collections_tracker_pkey PRIMARY KEY (id); + + +-- +-- Name: credit_card_payment_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY credit_card_payment + ADD CONSTRAINT credit_card_payment_pkey PRIMARY KEY (id); + + +-- +-- Name: credit_payment_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY credit_payment + ADD CONSTRAINT credit_payment_pkey PRIMARY KEY (id); + + +-- +-- Name: forgive_payment_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY forgive_payment + ADD CONSTRAINT forgive_payment_pkey PRIMARY KEY (id); + + +-- +-- Name: goods_payment_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY goods_payment + ADD CONSTRAINT goods_payment_pkey PRIMARY KEY (id); + + +-- +-- Name: grocery_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY grocery + ADD CONSTRAINT grocery_pkey PRIMARY KEY (id); + + +-- +-- Name: materialized_billable_xact_summary_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY materialized_billable_xact_summary + ADD CONSTRAINT materialized_billable_xact_summary_pkey PRIMARY KEY (id); + + +-- +-- Name: payment_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY payment + ADD CONSTRAINT payment_pkey PRIMARY KEY (id); + + +-- +-- Name: work_payment_pkey; Type: CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY work_payment + ADD CONSTRAINT work_payment_pkey PRIMARY KEY (id); + + +SET search_path = offline, pg_catalog; + +-- +-- Name: script_pkey; Type: CONSTRAINT; Schema: offline; Owner: evergreen +-- + +ALTER TABLE ONLY script + ADD CONSTRAINT script_pkey PRIMARY KEY (id); + + +-- +-- Name: session_pkey; Type: CONSTRAINT; Schema: offline; Owner: evergreen +-- + +ALTER TABLE ONLY session + ADD CONSTRAINT session_pkey PRIMARY KEY (key); + + +SET search_path = permission, pg_catalog; + +-- +-- Name: grp_penalty_threshold_pkey; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY grp_penalty_threshold + ADD CONSTRAINT grp_penalty_threshold_pkey PRIMARY KEY (id); + + +-- +-- Name: grp_perm_map_pkey; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY grp_perm_map + ADD CONSTRAINT grp_perm_map_pkey PRIMARY KEY (id); + + +-- +-- Name: grp_tree_name_key; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY grp_tree + ADD CONSTRAINT grp_tree_name_key UNIQUE (name); + + +-- +-- Name: grp_tree_pkey; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY grp_tree + ADD CONSTRAINT grp_tree_pkey PRIMARY KEY (id); + + +-- +-- Name: penalty_grp_once; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY grp_penalty_threshold + ADD CONSTRAINT penalty_grp_once UNIQUE (grp, penalty, org_unit); + + +-- +-- Name: perm_grp_once; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY grp_perm_map + ADD CONSTRAINT perm_grp_once UNIQUE (grp, perm); + + +-- +-- Name: perm_list_code_key; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY perm_list + ADD CONSTRAINT perm_list_code_key UNIQUE (code); + + +-- +-- Name: perm_list_pkey; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY perm_list + ADD CONSTRAINT perm_list_pkey PRIMARY KEY (id); + + +-- +-- Name: perm_usr_obj_once; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_object_perm_map + ADD CONSTRAINT perm_usr_obj_once UNIQUE (usr, perm, object_type, object_id); + + +-- +-- Name: perm_usr_once; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_perm_map + ADD CONSTRAINT perm_usr_once UNIQUE (usr, perm); + + +-- +-- Name: usr_grp_map_pkey; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_grp_map + ADD CONSTRAINT usr_grp_map_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_grp_once; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_grp_map + ADD CONSTRAINT usr_grp_once UNIQUE (usr, grp); + + +-- +-- Name: usr_object_perm_map_pkey; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_object_perm_map + ADD CONSTRAINT usr_object_perm_map_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_perm_map_pkey; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_perm_map + ADD CONSTRAINT usr_perm_map_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_work_ou_map_pkey; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_work_ou_map + ADD CONSTRAINT usr_work_ou_map_pkey PRIMARY KEY (id); + + +-- +-- Name: usr_work_ou_once; Type: CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_work_ou_map + ADD CONSTRAINT usr_work_ou_once UNIQUE (usr, work_ou); + + +SET search_path = query, pg_catalog; + +-- +-- Name: bind_variable_pkey; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY bind_variable + ADD CONSTRAINT bind_variable_pkey PRIMARY KEY (name); + + +-- +-- Name: case_branch_parent_seq; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY case_branch + ADD CONSTRAINT case_branch_parent_seq UNIQUE (parent_expr, seq_no); + + +-- +-- Name: case_branch_pkey; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY case_branch + ADD CONSTRAINT case_branch_pkey PRIMARY KEY (id); + + +-- +-- Name: column_sequence; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY record_column + ADD CONSTRAINT column_sequence UNIQUE (from_relation, seq_no); + + +-- +-- Name: datatype_datatype_name_key; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY datatype + ADD CONSTRAINT datatype_datatype_name_key UNIQUE (datatype_name); + + +-- +-- Name: datatype_pkey; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY datatype + ADD CONSTRAINT datatype_pkey PRIMARY KEY (id); + + +-- +-- Name: expression_pkey; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY expression + ADD CONSTRAINT expression_pkey PRIMARY KEY (id); + + +-- +-- Name: from_relation_pkey; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY from_relation + ADD CONSTRAINT from_relation_pkey PRIMARY KEY (id); + + +-- +-- Name: function_param_def_pkey; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY function_param_def + ADD CONSTRAINT function_param_def_pkey PRIMARY KEY (id); + + +-- +-- Name: function_sig_pkey; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY function_sig + ADD CONSTRAINT function_sig_pkey PRIMARY KEY (id); + + +-- +-- Name: order_by_item_pkey; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY order_by_item + ADD CONSTRAINT order_by_item_pkey PRIMARY KEY (id); + + +-- +-- Name: order_by_sequence; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY order_by_item + ADD CONSTRAINT order_by_sequence UNIQUE (stored_query, seq_no); + + +-- +-- Name: qfpd_function_param_seq; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY function_param_def + ADD CONSTRAINT qfpd_function_param_seq UNIQUE (function_id, seq_no); + + +-- +-- Name: qsf_datatype_seq_no; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY subfield + ADD CONSTRAINT qsf_datatype_seq_no UNIQUE (composite_type, seq_no); + + +-- +-- Name: query_query_seq; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY query_sequence + ADD CONSTRAINT query_query_seq UNIQUE (parent_query, seq_no); + + +-- +-- Name: query_sequence_pkey; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY query_sequence + ADD CONSTRAINT query_sequence_pkey PRIMARY KEY (id); + + +-- +-- Name: record_column_pkey; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY record_column + ADD CONSTRAINT record_column_pkey PRIMARY KEY (id); + + +-- +-- Name: select_item_pkey; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY select_item + ADD CONSTRAINT select_item_pkey PRIMARY KEY (id); + + +-- +-- Name: select_sequence; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY select_item + ADD CONSTRAINT select_sequence UNIQUE (stored_query, seq_no); + + +-- +-- Name: stored_query_pkey; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY stored_query + ADD CONSTRAINT stored_query_pkey PRIMARY KEY (id); + + +-- +-- Name: subfield_pkey; Type: CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY subfield + ADD CONSTRAINT subfield_pkey PRIMARY KEY (id); + + +SET search_path = reporter, pg_catalog; + +-- +-- Name: materialized_simple_record_pkey; Type: CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY materialized_simple_record + ADD CONSTRAINT materialized_simple_record_pkey PRIMARY KEY (id); + + +-- +-- Name: output_folder_pkey; Type: CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY output_folder + ADD CONSTRAINT output_folder_pkey PRIMARY KEY (id); + + +-- +-- Name: report_folder_pkey; Type: CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY report_folder + ADD CONSTRAINT report_folder_pkey PRIMARY KEY (id); + + +-- +-- Name: report_pkey; Type: CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY report + ADD CONSTRAINT report_pkey PRIMARY KEY (id); + + +-- +-- Name: schedule_pkey; Type: CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY schedule + ADD CONSTRAINT schedule_pkey PRIMARY KEY (id); + + +-- +-- Name: template_folder_pkey; Type: CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY template_folder + ADD CONSTRAINT template_folder_pkey PRIMARY KEY (id); + + +-- +-- Name: template_pkey; Type: CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY template + ADD CONSTRAINT template_pkey PRIMARY KEY (id); + + +SET search_path = search, pg_catalog; + +-- +-- Name: relevance_adjustment_pkey; Type: CONSTRAINT; Schema: search; Owner: evergreen +-- + +ALTER TABLE ONLY relevance_adjustment + ADD CONSTRAINT relevance_adjustment_pkey PRIMARY KEY (id); + + +SET search_path = serial, pg_catalog; + +-- +-- Name: basic_summary_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY basic_summary + ADD CONSTRAINT basic_summary_pkey PRIMARY KEY (id); + + +-- +-- Name: caption_and_pattern_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY caption_and_pattern + ADD CONSTRAINT caption_and_pattern_pkey PRIMARY KEY (id); + + +-- +-- Name: distribution_note_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_note + ADD CONSTRAINT distribution_note_pkey PRIMARY KEY (id); + + +-- +-- Name: distribution_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY distribution + ADD CONSTRAINT distribution_pkey PRIMARY KEY (id); + + +-- +-- Name: index_summary_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY index_summary + ADD CONSTRAINT index_summary_pkey PRIMARY KEY (id); + + +-- +-- Name: issuance_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY issuance + ADD CONSTRAINT issuance_pkey PRIMARY KEY (id); + + +-- +-- Name: item_note_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY item_note + ADD CONSTRAINT item_note_pkey PRIMARY KEY (id); + + +-- +-- Name: item_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY item + ADD CONSTRAINT item_pkey PRIMARY KEY (id); + + +-- +-- Name: materialized_holding_code_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY materialized_holding_code + ADD CONSTRAINT materialized_holding_code_pkey PRIMARY KEY (id); + + +-- +-- Name: one_pos_per_routing_list; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY routing_list_user + ADD CONSTRAINT one_pos_per_routing_list UNIQUE (stream, pos); + + +-- +-- Name: record_entry_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY record_entry + ADD CONSTRAINT record_entry_pkey PRIMARY KEY (id); + + +-- +-- Name: routing_list_user_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY routing_list_user + ADD CONSTRAINT routing_list_user_pkey PRIMARY KEY (id); + + +-- +-- Name: stream_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY stream + ADD CONSTRAINT stream_pkey PRIMARY KEY (id); + + +-- +-- Name: subscription_note_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY subscription_note + ADD CONSTRAINT subscription_note_pkey PRIMARY KEY (id); + + +-- +-- Name: subscription_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY subscription + ADD CONSTRAINT subscription_pkey PRIMARY KEY (id); + + +-- +-- Name: supplement_summary_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY supplement_summary + ADD CONSTRAINT supplement_summary_pkey PRIMARY KEY (id); + + +-- +-- Name: unit_pkey; Type: CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit + ADD CONSTRAINT unit_pkey PRIMARY KEY (id); + + +SET search_path = staging, pg_catalog; + +-- +-- Name: billing_address_stage_pkey; Type: CONSTRAINT; Schema: staging; Owner: evergreen +-- + +ALTER TABLE ONLY billing_address_stage + ADD CONSTRAINT billing_address_stage_pkey PRIMARY KEY (row_id); + + +-- +-- Name: card_stage_pkey; Type: CONSTRAINT; Schema: staging; Owner: evergreen +-- + +ALTER TABLE ONLY card_stage + ADD CONSTRAINT card_stage_pkey PRIMARY KEY (row_id); + + +-- +-- Name: mailing_address_stage_pkey; Type: CONSTRAINT; Schema: staging; Owner: evergreen +-- + +ALTER TABLE ONLY mailing_address_stage + ADD CONSTRAINT mailing_address_stage_pkey PRIMARY KEY (row_id); + + +-- +-- Name: statcat_stage_pkey; Type: CONSTRAINT; Schema: staging; Owner: evergreen +-- + +ALTER TABLE ONLY statcat_stage + ADD CONSTRAINT statcat_stage_pkey PRIMARY KEY (row_id); + + +-- +-- Name: user_stage_pkey; Type: CONSTRAINT; Schema: staging; Owner: evergreen +-- + +ALTER TABLE ONLY user_stage + ADD CONSTRAINT user_stage_pkey PRIMARY KEY (row_id); + + +SET search_path = unapi, pg_catalog; + +-- +-- Name: bre_output_layout_pkey; Type: CONSTRAINT; Schema: unapi; Owner: evergreen +-- + +ALTER TABLE ONLY bre_output_layout + ADD CONSTRAINT bre_output_layout_pkey PRIMARY KEY (name); + + +SET search_path = url_verify, pg_catalog; + +-- +-- Name: session_pkey; Type: CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY session + ADD CONSTRAINT session_pkey PRIMARY KEY (id); + + +-- +-- Name: tag_once_per_sess; Type: CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY url_selector + ADD CONSTRAINT tag_once_per_sess UNIQUE (xpath, session); + + +-- +-- Name: url_pkey; Type: CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY url + ADD CONSTRAINT url_pkey PRIMARY KEY (id); + + +-- +-- Name: url_selector_pkey; Type: CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY url_selector + ADD CONSTRAINT url_selector_pkey PRIMARY KEY (id); + + +-- +-- Name: url_verification_pkey; Type: CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY url_verification + ADD CONSTRAINT url_verification_pkey PRIMARY KEY (id); + + +-- +-- Name: uvs_name_once_per_lib; Type: CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY session + ADD CONSTRAINT uvs_name_once_per_lib UNIQUE (name, owning_lib); + + +-- +-- Name: verification_attempt_pkey; Type: CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY verification_attempt + ADD CONSTRAINT verification_attempt_pkey PRIMARY KEY (id); + + +SET search_path = vandelay, pg_catalog; + +-- +-- Name: authority_attr_definition_code_key; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY authority_attr_definition + ADD CONSTRAINT authority_attr_definition_code_key UNIQUE (code); + + +-- +-- Name: authority_attr_definition_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY authority_attr_definition + ADD CONSTRAINT authority_attr_definition_pkey PRIMARY KEY (id); + + +-- +-- Name: authority_match_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY authority_match + ADD CONSTRAINT authority_match_pkey PRIMARY KEY (id); + + +-- +-- Name: authority_queue_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY authority_queue + ADD CONSTRAINT authority_queue_pkey PRIMARY KEY (id); + + +-- +-- Name: bib_attr_definition_code_key; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY bib_attr_definition + ADD CONSTRAINT bib_attr_definition_code_key UNIQUE (code); + + +-- +-- Name: bib_attr_definition_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY bib_attr_definition + ADD CONSTRAINT bib_attr_definition_pkey PRIMARY KEY (id); + + +-- +-- Name: bib_match_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY bib_match + ADD CONSTRAINT bib_match_pkey PRIMARY KEY (id); + + +-- +-- Name: bib_queue_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY bib_queue + ADD CONSTRAINT bib_queue_pkey PRIMARY KEY (id); + + +-- +-- Name: import_bib_trash_fields_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_bib_trash_fields + ADD CONSTRAINT import_bib_trash_fields_pkey PRIMARY KEY (id); + + +-- +-- Name: import_bib_trash_group_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_bib_trash_group + ADD CONSTRAINT import_bib_trash_group_pkey PRIMARY KEY (id); + + +-- +-- Name: import_error_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_error + ADD CONSTRAINT import_error_pkey PRIMARY KEY (code); + + +-- +-- Name: import_item_attr_definition_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_item_attr_definition + ADD CONSTRAINT import_item_attr_definition_pkey PRIMARY KEY (id); + + +-- +-- Name: import_item_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_item + ADD CONSTRAINT import_item_pkey PRIMARY KEY (id); + + +-- +-- Name: match_set_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY match_set + ADD CONSTRAINT match_set_pkey PRIMARY KEY (id); + + +-- +-- Name: match_set_point_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY match_set_point + ADD CONSTRAINT match_set_point_pkey PRIMARY KEY (id); + + +-- +-- Name: match_set_quality_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY match_set_quality + ADD CONSTRAINT match_set_quality_pkey PRIMARY KEY (id); + + +-- +-- Name: merge_profile_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY merge_profile + ADD CONSTRAINT merge_profile_pkey PRIMARY KEY (id); + + +-- +-- Name: name_once_per_owner_mtype; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY match_set + ADD CONSTRAINT name_once_per_owner_mtype UNIQUE (name, owner, mtype); + + +-- +-- Name: queue_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queue + ADD CONSTRAINT queue_pkey PRIMARY KEY (id); + + +-- +-- Name: queued_authority_record_attr_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_authority_record_attr + ADD CONSTRAINT queued_authority_record_attr_pkey PRIMARY KEY (id); + + +-- +-- Name: queued_authority_record_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_authority_record + ADD CONSTRAINT queued_authority_record_pkey PRIMARY KEY (id); + + +-- +-- Name: queued_bib_record_attr_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_bib_record_attr + ADD CONSTRAINT queued_bib_record_attr_pkey PRIMARY KEY (id); + + +-- +-- Name: queued_bib_record_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_bib_record + ADD CONSTRAINT queued_bib_record_pkey PRIMARY KEY (id); + + +-- +-- Name: queued_record_pkey; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_record + ADD CONSTRAINT queued_record_pkey PRIMARY KEY (id); + + +-- +-- Name: vand_authority_queue_name_once_per_owner_const; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY authority_queue + ADD CONSTRAINT vand_authority_queue_name_once_per_owner_const UNIQUE (owner, name, queue_type); + + +-- +-- Name: vand_bib_queue_name_once_per_owner_const; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY bib_queue + ADD CONSTRAINT vand_bib_queue_name_once_per_owner_const UNIQUE (owner, name, queue_type); + + +-- +-- Name: vand_import_bib_trash_fields_once_per; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_bib_trash_fields + ADD CONSTRAINT vand_import_bib_trash_fields_once_per UNIQUE (grp, field); + + +-- +-- Name: vand_import_bib_trash_grp_owner_label; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_bib_trash_group + ADD CONSTRAINT vand_import_bib_trash_grp_owner_label UNIQUE (owner, label); + + +-- +-- Name: vand_import_item_attr_def_idx; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_item_attr_definition + ADD CONSTRAINT vand_import_item_attr_def_idx UNIQUE (owner, name); + + +-- +-- Name: vand_merge_prof_owner_name_idx; Type: CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY merge_profile + ADD CONSTRAINT vand_merge_prof_owner_name_idx UNIQUE (owner, name); + + +SET search_path = acq, pg_catalog; + +-- +-- Name: acq_attribution_credit_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acq_attribution_credit_idx ON debit_attribution USING btree (funding_source_credit); + + +-- +-- Name: acq_attribution_debit_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acq_attribution_debit_idx ON debit_attribution USING btree (fund_debit); + + +-- +-- Name: acq_lineitem_hist_id_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acq_lineitem_hist_id_idx ON acq_lineitem_history USING btree (id); + + +-- +-- Name: acq_lineitem_history_queued_record_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acq_lineitem_history_queued_record_idx ON acq_lineitem_history USING btree (queued_record); + + +-- +-- Name: acq_picklist_creator_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acq_picklist_creator_idx ON picklist USING btree (creator); + + +-- +-- Name: acq_picklist_editor_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acq_picklist_editor_idx ON picklist USING btree (editor); + + +-- +-- Name: acq_picklist_owner_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acq_picklist_owner_idx ON picklist USING btree (owner); + + +-- +-- Name: acq_po_hist_id_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acq_po_hist_id_idx ON acq_purchase_order_history USING btree (id); + + +-- +-- Name: acq_po_note_creator_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acq_po_note_creator_idx ON po_note USING btree (creator); + + +-- +-- Name: acq_po_note_editor_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acq_po_note_editor_idx ON po_note USING btree (editor); + + +-- +-- Name: acq_po_org_name_order_date_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acq_po_org_name_order_date_idx ON purchase_order USING btree (ordering_agency, name, order_date); + + +-- +-- Name: acq_pro_note_creator_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acq_pro_note_creator_idx ON provider_note USING btree (creator); + + +-- +-- Name: acq_pro_note_editor_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acq_pro_note_editor_idx ON provider_note USING btree (editor); + + +-- +-- Name: acq_pro_note_pro_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acq_pro_note_pro_idx ON provider_note USING btree (provider); + + +-- +-- Name: acqdfa_creator_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acqdfa_creator_idx ON distribution_formula_application USING btree (creator); + + +-- +-- Name: acqdfa_df_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acqdfa_df_idx ON distribution_formula_application USING btree (formula); + + +-- +-- Name: acqdfa_li_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acqdfa_li_idx ON distribution_formula_application USING btree (lineitem); + + +-- +-- Name: acqftr_usr_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX acqftr_usr_idx ON fund_transfer USING btree (transfer_user); + + +-- +-- Name: claim_event_claim_date_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX claim_event_claim_date_idx ON claim_event USING btree (claim, event_date); + + +-- +-- Name: claim_lid_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX claim_lid_idx ON claim USING btree (lineitem_detail); + + +-- +-- Name: edi_message_account_status_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX edi_message_account_status_idx ON edi_message USING btree (account, status); + + +-- +-- Name: edi_message_po_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX edi_message_po_idx ON edi_message USING btree (purchase_order); + + +-- +-- Name: fund_alloc_allocator_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX fund_alloc_allocator_idx ON fund_allocation USING btree (allocator); + + +-- +-- Name: fund_debit_invoice_entry_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX fund_debit_invoice_entry_idx ON fund_debit USING btree (invoice_entry); + + +-- +-- Name: ie_inv_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX ie_inv_idx ON invoice_entry USING btree (invoice); + + +-- +-- Name: ie_li_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX ie_li_idx ON invoice_entry USING btree (lineitem); + + +-- +-- Name: ie_po_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX ie_po_idx ON invoice_entry USING btree (purchase_order); + + +-- +-- Name: ii_inv_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX ii_inv_idx ON invoice_item USING btree (invoice); + + +-- +-- Name: ii_po_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX ii_po_idx ON invoice_item USING btree (purchase_order); + + +-- +-- Name: ii_poi_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX ii_poi_idx ON invoice_item USING btree (po_item); + + +-- +-- Name: li_attr_definition_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX li_attr_definition_idx ON lineitem_attr USING btree (definition); + + +-- +-- Name: li_attr_li_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX li_attr_li_idx ON lineitem_attr USING btree (lineitem); + + +-- +-- Name: li_attr_value_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX li_attr_value_idx ON lineitem_attr USING btree (attr_value); + + +-- +-- Name: li_creator_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX li_creator_idx ON lineitem USING btree (creator); + + +-- +-- Name: li_detail_li_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX li_detail_li_idx ON lineitem_detail USING btree (lineitem); + + +-- +-- Name: li_editor_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX li_editor_idx ON lineitem USING btree (editor); + + +-- +-- Name: li_note_creator_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX li_note_creator_idx ON lineitem_note USING btree (creator); + + +-- +-- Name: li_note_editor_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX li_note_editor_idx ON lineitem_note USING btree (editor); + + +-- +-- Name: li_note_li_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX li_note_li_idx ON lineitem_note USING btree (lineitem); + + +-- +-- Name: li_pl_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX li_pl_idx ON lineitem USING btree (picklist); + + +-- +-- Name: li_po_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX li_po_idx ON lineitem USING btree (purchase_order); + + +-- +-- Name: li_queued_record_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX li_queued_record_idx ON lineitem USING btree (queued_record); + + +-- +-- Name: li_selector_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX li_selector_idx ON lineitem USING btree (selector); + + +-- +-- Name: li_usr_attr_def_usr_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX li_usr_attr_def_usr_idx ON lineitem_usr_attr_definition USING btree (usr); + + +-- +-- Name: lineitem_detail_fund_debit_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX lineitem_detail_fund_debit_idx ON lineitem_detail USING btree (fund_debit); + + +-- +-- Name: po_creator_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX po_creator_idx ON purchase_order USING btree (creator); + + +-- +-- Name: po_editor_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX po_editor_idx ON purchase_order USING btree (editor); + + +-- +-- Name: po_note_po_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX po_note_po_idx ON po_note USING btree (purchase_order); + + +-- +-- Name: po_owner_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX po_owner_idx ON purchase_order USING btree (owner); + + +-- +-- Name: po_provider_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX po_provider_idx ON purchase_order USING btree (provider); + + +-- +-- Name: po_state_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX po_state_idx ON purchase_order USING btree (state); + + +-- +-- Name: poi_po_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX poi_po_idx ON po_item USING btree (purchase_order); + + +-- +-- Name: serial_claim_event_claim_date_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX serial_claim_event_claim_date_idx ON serial_claim_event USING btree (claim, event_date); + + +-- +-- Name: serial_claim_lid_idx; Type: INDEX; Schema: acq; Owner: evergreen +-- + +CREATE INDEX serial_claim_lid_idx ON serial_claim USING btree (item); + + +SET search_path = action, pg_catalog; + +-- +-- Name: acm_copy_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX acm_copy_idx ON hold_copy_map USING btree (target_copy); + + +-- +-- Name: action_aged_circulation_target_copy_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX action_aged_circulation_target_copy_idx ON aged_circulation USING btree (target_copy); + + +-- +-- Name: action_circulation_target_copy_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX action_circulation_target_copy_idx ON circulation USING btree (target_copy); + + +-- +-- Name: action_fieldset_sched_time_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX action_fieldset_sched_time_idx ON fieldset USING btree (scheduled_time); + + +-- +-- Name: action_in_house_use_staff_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX action_in_house_use_staff_idx ON in_house_use USING btree (staff); + + +-- +-- Name: action_non_cat_circ_patron_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX action_non_cat_circ_patron_idx ON non_cataloged_circulation USING btree (patron); + + +-- +-- Name: action_non_cat_circ_staff_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX action_non_cat_circ_staff_idx ON non_cataloged_circulation USING btree (staff); + + +-- +-- Name: action_owner_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX action_owner_idx ON fieldset USING btree (owner); + + +-- +-- Name: action_survey_response_usr_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX action_survey_response_usr_idx ON survey_response USING btree (usr); + + +-- +-- Name: active_hold_transit_cp_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX active_hold_transit_cp_idx ON hold_transit_copy USING btree (target_copy); + + +-- +-- Name: active_hold_transit_dest_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX active_hold_transit_dest_idx ON hold_transit_copy USING btree (dest); + + +-- +-- Name: active_hold_transit_source_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX active_hold_transit_source_idx ON hold_transit_copy USING btree (source); + + +-- +-- Name: active_reservation_transit_cp_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX active_reservation_transit_cp_idx ON reservation_transit_copy USING btree (target_copy); + + +-- +-- Name: active_reservation_transit_dest_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX active_reservation_transit_dest_idx ON reservation_transit_copy USING btree (dest); + + +-- +-- Name: active_reservation_transit_source_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX active_reservation_transit_source_idx ON reservation_transit_copy USING btree (source); + + +-- +-- Name: active_transit_cp_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX active_transit_cp_idx ON transit_copy USING btree (target_copy); + + +-- +-- Name: active_transit_dest_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX active_transit_dest_idx ON transit_copy USING btree (dest); + + +-- +-- Name: active_transit_source_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX active_transit_source_idx ON transit_copy USING btree (source); + + +-- +-- Name: aged_circ_circ_lib_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX aged_circ_circ_lib_idx ON aged_circulation USING btree (circ_lib); + + +-- +-- Name: aged_circ_copy_circ_lib_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX aged_circ_copy_circ_lib_idx ON aged_circulation USING btree (copy_circ_lib); + + +-- +-- Name: aged_circ_copy_location_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX aged_circ_copy_location_idx ON aged_circulation USING btree (copy_location); + + +-- +-- Name: aged_circ_copy_owning_lib_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX aged_circ_copy_owning_lib_idx ON aged_circulation USING btree (copy_owning_lib); + + +-- +-- Name: aged_circ_start_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX aged_circ_start_idx ON aged_circulation USING btree (xact_start); + + +-- +-- Name: aged_hold_request_current_copy_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX aged_hold_request_current_copy_idx ON aged_hold_request USING btree (current_copy); + + +-- +-- Name: aged_hold_request_fulfillment_staff_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX aged_hold_request_fulfillment_staff_idx ON aged_hold_request USING btree (fulfillment_staff); + + +-- +-- Name: aged_hold_request_pickup_lib_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX aged_hold_request_pickup_lib_idx ON aged_hold_request USING btree (pickup_lib); + + +-- +-- Name: aged_hold_request_target_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX aged_hold_request_target_idx ON aged_hold_request USING btree (target); + + +-- +-- Name: ahn_hold_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX ahn_hold_idx ON hold_notification USING btree (hold); + + +-- +-- Name: ahn_notify_staff_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX ahn_notify_staff_idx ON hold_notification USING btree (notify_staff); + + +-- +-- Name: ahrn_hold_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX ahrn_hold_idx ON hold_request_note USING btree (hold); + + +-- +-- Name: asv_once_per_owner_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE UNIQUE INDEX asv_once_per_owner_idx ON survey USING btree (owner, name); + + +-- +-- Name: circ_all_usr_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX circ_all_usr_idx ON circulation USING btree (usr); + + +-- +-- Name: circ_checkin_staff_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX circ_checkin_staff_idx ON circulation USING btree (checkin_staff); + + +-- +-- Name: circ_checkin_time; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX circ_checkin_time ON circulation USING btree (checkin_time) WHERE (checkin_time IS NOT NULL); + + +-- +-- Name: circ_circ_lib_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX circ_circ_lib_idx ON circulation USING btree (circ_lib); + + +-- +-- Name: circ_circ_staff_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX circ_circ_staff_idx ON circulation USING btree (circ_staff); + + +-- +-- Name: circ_open_date_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX circ_open_date_idx ON circulation USING btree (xact_start) WHERE (xact_finish IS NULL); + + +-- +-- Name: circ_open_xacts_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX circ_open_xacts_idx ON circulation USING btree (usr) WHERE (xact_finish IS NULL); + + +-- +-- Name: circ_outstanding_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX circ_outstanding_idx ON circulation USING btree (usr) WHERE (checkin_time IS NULL); + + +-- +-- Name: circ_parent_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE UNIQUE INDEX circ_parent_idx ON circulation USING btree (parent_circ) WHERE (parent_circ IS NOT NULL); + + +-- +-- Name: hold_request_capture_protect_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE UNIQUE INDEX hold_request_capture_protect_idx ON hold_request USING btree (current_copy) WHERE ((current_copy IS NOT NULL) AND (capture_time IS NOT NULL) AND (cancel_time IS NULL) AND (fulfillment_time IS NULL)); + + +-- +-- Name: hold_request_current_copy_before_cap_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX hold_request_current_copy_before_cap_idx ON hold_request USING btree (current_copy) WHERE ((capture_time IS NULL) AND (cancel_time IS NULL)); + + +-- +-- Name: hold_request_current_copy_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX hold_request_current_copy_idx ON hold_request USING btree (current_copy); + + +-- +-- Name: hold_request_fulfillment_staff_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX hold_request_fulfillment_staff_idx ON hold_request USING btree (fulfillment_staff); + + +-- +-- Name: hold_request_open_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX hold_request_open_idx ON hold_request USING btree (id) WHERE ((cancel_time IS NULL) AND (fulfillment_time IS NULL)); + + +-- +-- Name: hold_request_pickup_lib_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX hold_request_pickup_lib_idx ON hold_request USING btree (pickup_lib); + + +-- +-- Name: hold_request_prev_check_time_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX hold_request_prev_check_time_idx ON hold_request USING btree (prev_check_time); + + +-- +-- Name: hold_request_requestor_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX hold_request_requestor_idx ON hold_request USING btree (requestor); + + +-- +-- Name: hold_request_target_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX hold_request_target_idx ON hold_request USING btree (target); + + +-- +-- Name: hold_request_usr_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX hold_request_usr_idx ON hold_request USING btree (usr); + + +-- +-- Name: hold_transit_copy_hold_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX hold_transit_copy_hold_idx ON hold_transit_copy USING btree (hold); + + +-- +-- Name: non_cat_in_house_use_staff_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX non_cat_in_house_use_staff_idx ON non_cat_in_house_use USING btree (staff); + + +-- +-- Name: only_one_concurrent_checkout_per_copy; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE UNIQUE INDEX only_one_concurrent_checkout_per_copy ON circulation USING btree (target_copy) WHERE (checkin_time IS NULL); + + +-- +-- Name: uhr_hold_idx; Type: INDEX; Schema: action; Owner: evergreen +-- + +CREATE INDEX uhr_hold_idx ON unfulfilled_hold_list USING btree (hold); + + +SET search_path = action_trigger, pg_catalog; + +-- +-- Name: atev_def_state; Type: INDEX; Schema: action_trigger; Owner: evergreen +-- + +CREATE INDEX atev_def_state ON event USING btree (event_def, state); + + +-- +-- Name: atev_target_def_idx; Type: INDEX; Schema: action_trigger; Owner: evergreen +-- + +CREATE INDEX atev_target_def_idx ON event USING btree (target, event_def); + + +SET search_path = actor, pg_catalog; + +-- +-- Name: actor_card_barcode_evergreen_lowercase_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_card_barcode_evergreen_lowercase_idx ON card USING btree (evergreen.lowercase(barcode)); + + +-- +-- Name: actor_card_usr_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_card_usr_idx ON card USING btree (usr); + + +-- +-- Name: actor_org_address_org_unit_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_org_address_org_unit_idx ON org_address USING btree (org_unit); + + +-- +-- Name: actor_org_unit_billing_address_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_org_unit_billing_address_idx ON org_unit USING btree (billing_address); + + +-- +-- Name: actor_org_unit_holds_address_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_org_unit_holds_address_idx ON org_unit USING btree (holds_address); + + +-- +-- Name: actor_org_unit_ill_address_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_org_unit_ill_address_idx ON org_unit USING btree (ill_address); + + +-- +-- Name: actor_org_unit_mailing_address_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_org_unit_mailing_address_idx ON org_unit USING btree (mailing_address); + + +-- +-- Name: actor_org_unit_ou_type_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_org_unit_ou_type_idx ON org_unit USING btree (ou_type); + + +-- +-- Name: actor_org_unit_parent_ou_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_org_unit_parent_ou_idx ON org_unit USING btree (parent_ou); + + +-- +-- Name: actor_org_unit_setting_usr_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_org_unit_setting_usr_idx ON org_unit_setting USING btree (org_unit); + + +-- +-- Name: actor_org_unit_type_parent_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_org_unit_type_parent_idx ON org_unit_type USING btree (parent); + + +-- +-- Name: actor_stat_cat_entry_usr_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_stat_cat_entry_usr_idx ON stat_cat_entry_usr_map USING btree (target_usr); + + +-- +-- Name: actor_usr_addr_city_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_addr_city_idx ON usr_address USING btree (evergreen.lowercase(city)); + + +-- +-- Name: actor_usr_addr_post_code_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_addr_post_code_idx ON usr_address USING btree (evergreen.lowercase(post_code)); + + +-- +-- Name: actor_usr_addr_state_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_addr_state_idx ON usr_address USING btree (evergreen.lowercase(state)); + + +-- +-- Name: actor_usr_addr_street1_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_addr_street1_idx ON usr_address USING btree (evergreen.lowercase(street1)); + + +-- +-- Name: actor_usr_addr_street2_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_addr_street2_idx ON usr_address USING btree (evergreen.lowercase(street2)); + + +-- +-- Name: actor_usr_addr_usr_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_addr_usr_idx ON usr_address USING btree (usr); + + +-- +-- Name: actor_usr_billing_address_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_billing_address_idx ON usr USING btree (billing_address); + + +-- +-- Name: actor_usr_day_phone_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_day_phone_idx ON usr USING btree (evergreen.lowercase(day_phone)); + + +-- +-- Name: actor_usr_day_phone_idx_numeric; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_day_phone_idx_numeric ON usr USING btree (evergreen.lowercase(regexp_replace(day_phone, '[^0-9]'::text, ''::text, 'g'::text))); + + +-- +-- Name: actor_usr_email_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_email_idx ON usr USING btree (evergreen.lowercase(email)); + + +-- +-- Name: actor_usr_evening_phone_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_evening_phone_idx ON usr USING btree (evergreen.lowercase(evening_phone)); + + +-- +-- Name: actor_usr_evening_phone_idx_numeric; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_evening_phone_idx_numeric ON usr USING btree (evergreen.lowercase(regexp_replace(evening_phone, '[^0-9]'::text, ''::text, 'g'::text))); + + +-- +-- Name: actor_usr_family_name_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_family_name_idx ON usr USING btree (evergreen.lowercase(family_name)); + + +-- +-- Name: actor_usr_first_given_name_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_first_given_name_idx ON usr USING btree (evergreen.lowercase(first_given_name)); + + +-- +-- Name: actor_usr_home_ou_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_home_ou_idx ON usr USING btree (home_ou); + + +-- +-- Name: actor_usr_ident_value2_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_ident_value2_idx ON usr USING btree (evergreen.lowercase(ident_value2)); + + +-- +-- Name: actor_usr_ident_value_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_ident_value_idx ON usr USING btree (evergreen.lowercase(ident_value)); + + +-- +-- Name: actor_usr_mailing_address_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_mailing_address_idx ON usr USING btree (mailing_address); + + +-- +-- Name: actor_usr_note_creator_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_note_creator_idx ON usr_note USING btree (creator); + + +-- +-- Name: actor_usr_note_usr_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_note_usr_idx ON usr_note USING btree (usr); + + +-- +-- Name: actor_usr_other_phone_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_other_phone_idx ON usr USING btree (evergreen.lowercase(other_phone)); + + +-- +-- Name: actor_usr_other_phone_idx_numeric; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_other_phone_idx_numeric ON usr USING btree (evergreen.lowercase(regexp_replace(other_phone, '[^0-9]'::text, ''::text, 'g'::text))); + + +-- +-- Name: actor_usr_password_reset_has_been_reset_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_password_reset_has_been_reset_idx ON usr_password_reset USING btree (has_been_reset); + + +-- +-- Name: actor_usr_password_reset_request_time_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_password_reset_request_time_idx ON usr_password_reset USING btree (request_time); + + +-- +-- Name: actor_usr_password_reset_usr_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_password_reset_usr_idx ON usr_password_reset USING btree (usr); + + +-- +-- Name: actor_usr_password_reset_uuid_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE UNIQUE INDEX actor_usr_password_reset_uuid_idx ON usr_password_reset USING btree (uuid); + + +-- +-- Name: actor_usr_second_given_name_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_second_given_name_idx ON usr USING btree (evergreen.lowercase(second_given_name)); + + +-- +-- Name: actor_usr_setting_usr_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_setting_usr_idx ON usr_setting USING btree (usr); + + +-- +-- Name: actor_usr_standing_penalty_staff_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_standing_penalty_staff_idx ON usr_standing_penalty USING btree (staff); + + +-- +-- Name: actor_usr_standing_penalty_usr_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_standing_penalty_usr_idx ON usr_standing_penalty USING btree (usr); + + +-- +-- Name: actor_usr_usrgroup_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_usrgroup_idx ON usr USING btree (usrgroup); + + +-- +-- Name: actor_usr_usrname_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX actor_usr_usrname_idx ON usr USING btree (evergreen.lowercase(usrname)); + + +-- +-- Name: aum_usr; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX aum_usr ON usr_message USING btree (usr); + + +-- +-- Name: from_prox_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX from_prox_idx ON org_unit_proximity USING btree (from_org); + + +-- +-- Name: label_once_per_org; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE UNIQUE INDEX label_once_per_org ON toolbar USING btree (org, label) WHERE (org IS NOT NULL); + + +-- +-- Name: label_once_per_usr; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE UNIQUE INDEX label_once_per_usr ON toolbar USING btree (usr, label) WHERE (usr IS NOT NULL); + + +-- +-- Name: label_once_per_ws; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE UNIQUE INDEX label_once_per_ws ON toolbar USING btree (ws, label) WHERE (ws IS NOT NULL); + + +-- +-- Name: ou_lasso_lasso_ou_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE UNIQUE INDEX ou_lasso_lasso_ou_idx ON org_lasso_map USING btree (lasso, org_unit); + + +-- +-- Name: ou_lasso_org_unit_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX ou_lasso_org_unit_idx ON org_lasso_map USING btree (org_unit); + + +-- +-- Name: prox_adj_circ_lib_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX prox_adj_circ_lib_idx ON org_unit_proximity_adjustment USING btree (item_circ_lib); + + +-- +-- Name: prox_adj_circ_mod_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX prox_adj_circ_mod_idx ON org_unit_proximity_adjustment USING btree (circ_mod); + + +-- +-- Name: prox_adj_copy_location_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX prox_adj_copy_location_idx ON org_unit_proximity_adjustment USING btree (copy_location); + + +-- +-- Name: prox_adj_once_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE UNIQUE INDEX prox_adj_once_idx ON org_unit_proximity_adjustment USING btree ((COALESCE(item_circ_lib, '-1'::integer)), (COALESCE(item_owning_lib, '-1'::integer)), (COALESCE(copy_location, '-1'::integer)), (COALESCE(hold_pickup_lib, '-1'::integer)), (COALESCE(hold_request_lib, '-1'::integer)), (COALESCE(circ_mod, ''::text)), pos); + + +-- +-- Name: prox_adj_owning_lib_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX prox_adj_owning_lib_idx ON org_unit_proximity_adjustment USING btree (item_owning_lib); + + +-- +-- Name: prox_adj_pickup_lib_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX prox_adj_pickup_lib_idx ON org_unit_proximity_adjustment USING btree (hold_pickup_lib); + + +-- +-- Name: prox_adj_request_lib_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX prox_adj_request_lib_idx ON org_unit_proximity_adjustment USING btree (hold_request_lib); + + +-- +-- Name: usr_activity_usr_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX usr_activity_usr_idx ON usr_activity USING btree (usr); + + +-- +-- Name: usr_org_unit_opt_in_staff_idx; Type: INDEX; Schema: actor; Owner: evergreen +-- + +CREATE INDEX usr_org_unit_opt_in_staff_idx ON usr_org_unit_opt_in USING btree (staff); + + +SET search_path = asset, pg_catalog; + +-- +-- Name: acl_name_once_per_lib; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE UNIQUE INDEX acl_name_once_per_lib ON copy_location USING btree (name, owning_lib) WHERE ((deleted = false) OR (deleted IS FALSE)); + + +-- +-- Name: asset_call_number_creator_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX asset_call_number_creator_idx ON call_number USING btree (creator); + + +-- +-- Name: asset_call_number_dewey_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX asset_call_number_dewey_idx ON call_number USING btree (public.call_number_dewey(label)); + + +-- +-- Name: asset_call_number_editor_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX asset_call_number_editor_idx ON call_number USING btree (editor); + + +-- +-- Name: asset_call_number_label_once_per_lib; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE UNIQUE INDEX asset_call_number_label_once_per_lib ON call_number USING btree (record, owning_lib, label, prefix, suffix) WHERE ((deleted = false) OR (deleted IS FALSE)); + + +-- +-- Name: asset_call_number_label_sortkey; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX asset_call_number_label_sortkey ON call_number USING btree (evergreen.oils_text_as_bytea(label_sortkey)); + + +-- +-- Name: asset_call_number_label_sortkey_browse; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX asset_call_number_label_sortkey_browse ON call_number USING btree (evergreen.oils_text_as_bytea(label_sortkey), evergreen.oils_text_as_bytea(label), id, owning_lib) WHERE ((deleted IS FALSE) OR (deleted = false)); + + +-- +-- Name: asset_call_number_note_creator_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX asset_call_number_note_creator_idx ON call_number_note USING btree (creator); + + +-- +-- Name: asset_call_number_prefix_once_per_lib; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE UNIQUE INDEX asset_call_number_prefix_once_per_lib ON call_number_prefix USING btree (label, owning_lib); + + +-- +-- Name: asset_call_number_prefix_sortkey_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX asset_call_number_prefix_sortkey_idx ON call_number_prefix USING btree (label_sortkey); + + +-- +-- Name: asset_call_number_record_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX asset_call_number_record_idx ON call_number USING btree (record); + + +-- +-- Name: asset_call_number_suffix_once_per_lib; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE UNIQUE INDEX asset_call_number_suffix_once_per_lib ON call_number_suffix USING btree (label, owning_lib); + + +-- +-- Name: asset_call_number_suffix_sortkey_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX asset_call_number_suffix_sortkey_idx ON call_number_suffix USING btree (label_sortkey); + + +-- +-- Name: asset_call_number_upper_label_id_owning_lib_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX asset_call_number_upper_label_id_owning_lib_idx ON call_number USING btree (evergreen.oils_text_as_bytea(label), id, owning_lib); + + +-- +-- Name: asset_copy_note_creator_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX asset_copy_note_creator_idx ON copy_note USING btree (creator); + + +-- +-- Name: asset_copy_note_owning_copy_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX asset_copy_note_owning_copy_idx ON copy_note USING btree (owning_copy); + + +-- +-- Name: asset_uri_call_number_map_cn_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX asset_uri_call_number_map_cn_idx ON uri_call_number_map USING btree (call_number); + + +-- +-- Name: copy_barcode_key; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE UNIQUE INDEX copy_barcode_key ON copy USING btree (barcode) WHERE ((deleted = false) OR (deleted IS FALSE)); + + +-- +-- Name: copy_part_map_cp_part_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE UNIQUE INDEX copy_part_map_cp_part_idx ON copy_part_map USING btree (target_copy, part); + + +-- +-- Name: cp_avail_cn_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX cp_avail_cn_idx ON copy USING btree (call_number); + + +-- +-- Name: cp_available_by_circ_lib_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX cp_available_by_circ_lib_idx ON copy USING btree (circ_lib) WHERE (status = ANY (ARRAY[0, 7])); + + +-- +-- Name: cp_cn_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX cp_cn_idx ON copy USING btree (call_number); + + +-- +-- Name: cp_create_date; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX cp_create_date ON copy USING btree (create_date); + + +-- +-- Name: cp_creator_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX cp_creator_idx ON copy USING btree (creator); + + +-- +-- Name: cp_editor_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX cp_editor_idx ON copy USING btree (editor); + + +-- +-- Name: opac_visible_copies_copy_id_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX opac_visible_copies_copy_id_idx ON opac_visible_copies USING btree (copy_id); + + +-- +-- Name: opac_visible_copies_idx1; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX opac_visible_copies_idx1 ON opac_visible_copies USING btree (record, circ_lib); + + +-- +-- Name: opac_visible_copies_once_per_record_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE UNIQUE INDEX opac_visible_copies_once_per_record_idx ON opac_visible_copies USING btree (copy_id, record); + + +-- +-- Name: scecm_owning_copy_idx; Type: INDEX; Schema: asset; Owner: evergreen +-- + +CREATE INDEX scecm_owning_copy_idx ON stat_cat_entry_copy_map USING btree (owning_copy); + + +SET search_path = auditor, pg_catalog; + +-- +-- Name: aud_actor_usr_address_hist_id_idx; Type: INDEX; Schema: auditor; Owner: evergreen +-- + +CREATE INDEX aud_actor_usr_address_hist_id_idx ON actor_usr_address_history USING btree (id); + + +-- +-- Name: aud_actor_usr_hist_id_idx; Type: INDEX; Schema: auditor; Owner: evergreen +-- + +CREATE INDEX aud_actor_usr_hist_id_idx ON actor_usr_history USING btree (id); + + +-- +-- Name: aud_asset_cn_hist_creator_idx; Type: INDEX; Schema: auditor; Owner: evergreen +-- + +CREATE INDEX aud_asset_cn_hist_creator_idx ON asset_call_number_history USING btree (creator); + + +-- +-- Name: aud_asset_cn_hist_editor_idx; Type: INDEX; Schema: auditor; Owner: evergreen +-- + +CREATE INDEX aud_asset_cn_hist_editor_idx ON asset_call_number_history USING btree (editor); + + +-- +-- Name: aud_asset_cp_hist_creator_idx; Type: INDEX; Schema: auditor; Owner: evergreen +-- + +CREATE INDEX aud_asset_cp_hist_creator_idx ON asset_copy_history USING btree (creator); + + +-- +-- Name: aud_asset_cp_hist_editor_idx; Type: INDEX; Schema: auditor; Owner: evergreen +-- + +CREATE INDEX aud_asset_cp_hist_editor_idx ON asset_copy_history USING btree (editor); + + +-- +-- Name: aud_bib_rec_entry_hist_creator_idx; Type: INDEX; Schema: auditor; Owner: evergreen +-- + +CREATE INDEX aud_bib_rec_entry_hist_creator_idx ON biblio_record_entry_history USING btree (creator); + + +-- +-- Name: aud_bib_rec_entry_hist_editor_idx; Type: INDEX; Schema: auditor; Owner: evergreen +-- + +CREATE INDEX aud_bib_rec_entry_hist_editor_idx ON biblio_record_entry_history USING btree (editor); + + +-- +-- Name: aud_serial_unit_hist_creator_idx; Type: INDEX; Schema: auditor; Owner: evergreen +-- + +CREATE INDEX aud_serial_unit_hist_creator_idx ON serial_unit_history USING btree (creator); + + +-- +-- Name: aud_serial_unit_hist_editor_idx; Type: INDEX; Schema: auditor; Owner: evergreen +-- + +CREATE INDEX aud_serial_unit_hist_editor_idx ON serial_unit_history USING btree (editor); + + +SET search_path = authority, pg_catalog; + +-- +-- Name: authority_bl_bib_authority_once_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE UNIQUE INDEX authority_bl_bib_authority_once_idx ON bib_linking USING btree (authority, bib); + + +-- +-- Name: authority_bl_bib_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_bl_bib_idx ON bib_linking USING btree (bib); + + +-- +-- Name: authority_full_rec_index_vector_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_full_rec_index_vector_idx ON full_rec USING gist (index_vector); + + +-- +-- Name: authority_full_rec_record_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_full_rec_record_idx ON full_rec USING btree (record); + + +-- +-- Name: authority_full_rec_subfield_a_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_full_rec_subfield_a_idx ON full_rec USING btree (value) WHERE (subfield = 'a'::text); + + +-- +-- Name: authority_full_rec_tag_part_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_full_rec_tag_part_idx ON full_rec USING btree ("substring"((tag)::text, 2)); + + +-- +-- Name: authority_full_rec_tag_subfield_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_full_rec_tag_subfield_idx ON full_rec USING btree (tag, subfield); + + +-- +-- Name: authority_full_rec_value_index; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_full_rec_value_index ON full_rec USING btree (value); + + +-- +-- Name: authority_full_rec_value_tpo_index; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_full_rec_value_tpo_index ON full_rec USING btree (value text_pattern_ops); + + +-- +-- Name: authority_rec_descriptor_record_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_rec_descriptor_record_idx ON rec_descriptor USING btree (record); + + +-- +-- Name: authority_record_deleted_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_record_deleted_idx ON record_entry USING btree (deleted) WHERE ((deleted IS FALSE) OR (deleted = false)); + + +-- +-- Name: authority_record_entry_create_date_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_record_entry_create_date_idx ON record_entry USING btree (create_date); + + +-- +-- Name: authority_record_entry_creator_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_record_entry_creator_idx ON record_entry USING btree (creator); + + +-- +-- Name: authority_record_entry_edit_date_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_record_entry_edit_date_idx ON record_entry USING btree (edit_date); + + +-- +-- Name: authority_record_entry_editor_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_record_entry_editor_idx ON record_entry USING btree (editor); + + +-- +-- Name: authority_record_note_creator_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_record_note_creator_idx ON record_note USING btree (creator); + + +-- +-- Name: authority_record_note_editor_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_record_note_editor_idx ON record_note USING btree (editor); + + +-- +-- Name: authority_record_note_record_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_record_note_record_idx ON record_note USING btree (record); + + +-- +-- Name: authority_simple_heading_index_vector_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_simple_heading_index_vector_idx ON simple_heading USING gist (index_vector); + + +-- +-- Name: authority_simple_heading_record_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_simple_heading_record_idx ON simple_heading USING btree (record); + + +-- +-- Name: authority_simple_heading_sort_value_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_simple_heading_sort_value_idx ON simple_heading USING btree (sort_value); + + +-- +-- Name: authority_simple_heading_thesaurus_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_simple_heading_thesaurus_idx ON simple_heading USING btree (thesaurus); + + +-- +-- Name: authority_simple_heading_value_idx; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX authority_simple_heading_value_idx ON simple_heading USING btree (value); + + +-- +-- Name: by_heading; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX by_heading ON record_entry USING btree (simple_heading) WHERE ((deleted IS FALSE) OR (deleted = false)); + + +-- +-- Name: by_heading_and_thesaurus; Type: INDEX; Schema: authority; Owner: evergreen +-- + +CREATE INDEX by_heading_and_thesaurus ON record_entry USING btree (heading) WHERE ((deleted IS FALSE) OR (deleted = false)); + + +SET search_path = biblio, pg_catalog; + +-- +-- Name: biblio_record_entry_create_date_idx; Type: INDEX; Schema: biblio; Owner: evergreen +-- + +CREATE INDEX biblio_record_entry_create_date_idx ON record_entry USING btree (create_date); + + +-- +-- Name: biblio_record_entry_creator_idx; Type: INDEX; Schema: biblio; Owner: evergreen +-- + +CREATE INDEX biblio_record_entry_creator_idx ON record_entry USING btree (creator); + + +-- +-- Name: biblio_record_entry_edit_date_idx; Type: INDEX; Schema: biblio; Owner: evergreen +-- + +CREATE INDEX biblio_record_entry_edit_date_idx ON record_entry USING btree (edit_date); + + +-- +-- Name: biblio_record_entry_editor_idx; Type: INDEX; Schema: biblio; Owner: evergreen +-- + +CREATE INDEX biblio_record_entry_editor_idx ON record_entry USING btree (editor); + + +-- +-- Name: biblio_record_entry_fp_idx; Type: INDEX; Schema: biblio; Owner: evergreen +-- + +CREATE INDEX biblio_record_entry_fp_idx ON record_entry USING btree (fingerprint); + + +-- +-- Name: biblio_record_note_creator_idx; Type: INDEX; Schema: biblio; Owner: evergreen +-- + +CREATE INDEX biblio_record_note_creator_idx ON record_note USING btree (creator); + + +-- +-- Name: biblio_record_note_editor_idx; Type: INDEX; Schema: biblio; Owner: evergreen +-- + +CREATE INDEX biblio_record_note_editor_idx ON record_note USING btree (editor); + + +-- +-- Name: biblio_record_note_record_idx; Type: INDEX; Schema: biblio; Owner: evergreen +-- + +CREATE INDEX biblio_record_note_record_idx ON record_note USING btree (record); + + +-- +-- Name: biblio_record_unique_tcn; Type: INDEX; Schema: biblio; Owner: evergreen +-- + +CREATE UNIQUE INDEX biblio_record_unique_tcn ON record_entry USING btree (tcn_value) WHERE ((deleted = false) OR (deleted IS FALSE)); + + +-- +-- Name: peer_bib_copy_map_copy_idx; Type: INDEX; Schema: biblio; Owner: evergreen +-- + +CREATE INDEX peer_bib_copy_map_copy_idx ON peer_bib_copy_map USING btree (target_copy); + + +-- +-- Name: peer_bib_copy_map_record_idx; Type: INDEX; Schema: biblio; Owner: evergreen +-- + +CREATE INDEX peer_bib_copy_map_record_idx ON peer_bib_copy_map USING btree (peer_record); + + +-- +-- Name: record_label_unique_idx; Type: INDEX; Schema: biblio; Owner: evergreen +-- + +CREATE UNIQUE INDEX record_label_unique_idx ON monograph_part USING btree (record, label) WHERE (deleted = false); + + +SET search_path = config, pg_catalog; + +-- +-- Name: ccmm_once_per_paramset; Type: INDEX; Schema: config; Owner: evergreen +-- + +CREATE UNIQUE INDEX ccmm_once_per_paramset ON circ_matrix_matchpoint USING btree (org_unit, grp, (COALESCE(circ_modifier, ''::text)), (COALESCE((copy_location)::text, ''::text)), (COALESCE(marc_type, ''::text)), (COALESCE(marc_form, ''::text)), (COALESCE(marc_bib_level, ''::text)), (COALESCE(marc_vr_format, ''::text)), (COALESCE((copy_circ_lib)::text, ''::text)), (COALESCE((copy_owning_lib)::text, ''::text)), (COALESCE((user_home_ou)::text, ''::text)), (COALESCE((ref_flag)::text, ''::text)), (COALESCE((juvenile_flag)::text, ''::text)), (COALESCE((is_renewal)::text, ''::text)), (COALESCE((usr_age_lower_bound)::text, ''::text)), (COALESCE((usr_age_upper_bound)::text, ''::text)), (COALESCE((item_age)::text, ''::text))) WHERE active; + + +-- +-- Name: chmm_once_per_paramset; Type: INDEX; Schema: config; Owner: evergreen +-- + +CREATE UNIQUE INDEX chmm_once_per_paramset ON hold_matrix_matchpoint USING btree ((COALESCE((user_home_ou)::text, ''::text)), (COALESCE((request_ou)::text, ''::text)), (COALESCE((pickup_ou)::text, ''::text)), (COALESCE((item_owning_ou)::text, ''::text)), (COALESCE((item_circ_ou)::text, ''::text)), (COALESCE((usr_grp)::text, ''::text)), (COALESCE((requestor_grp)::text, ''::text)), (COALESCE(circ_modifier, ''::text)), (COALESCE(marc_type, ''::text)), (COALESCE(marc_form, ''::text)), (COALESCE(marc_bib_level, ''::text)), (COALESCE(marc_vr_format, ''::text)), (COALESCE((juvenile_flag)::text, ''::text)), (COALESCE((ref_flag)::text, ''::text)), (COALESCE((item_age)::text, ''::text))) WHERE active; + + +-- +-- Name: config_marc_field_owner_idx; Type: INDEX; Schema: config; Owner: evergreen +-- + +CREATE INDEX config_marc_field_owner_idx ON marc_field USING btree (owner); + + +-- +-- Name: config_marc_field_tag_idx; Type: INDEX; Schema: config; Owner: evergreen +-- + +CREATE INDEX config_marc_field_tag_idx ON marc_field USING btree (tag); + + +-- +-- Name: config_marc_subfield_tag_code_idx; Type: INDEX; Schema: config; Owner: evergreen +-- + +CREATE INDEX config_marc_subfield_tag_code_idx ON marc_subfield USING btree (tag, code); + + +-- +-- Name: config_metabib_field_class_name_idx; Type: INDEX; Schema: config; Owner: evergreen +-- + +CREATE UNIQUE INDEX config_metabib_field_class_name_idx ON metabib_field USING btree (field_class, name); + + +-- +-- Name: config_standard_marc_subfields_are_unique; Type: INDEX; Schema: config; Owner: evergreen +-- + +CREATE UNIQUE INDEX config_standard_marc_subfields_are_unique ON marc_subfield USING btree (marc_format, marc_record_type, tag, code) WHERE (owner IS NULL); + + +-- +-- Name: config_standard_marc_tags_are_unique; Type: INDEX; Schema: config; Owner: evergreen +-- + +CREATE UNIQUE INDEX config_standard_marc_tags_are_unique ON marc_field USING btree (marc_format, marc_record_type, tag) WHERE (owner IS NULL); + + +-- +-- Name: cwa_one_active_per_ou; Type: INDEX; Schema: config; Owner: evergreen +-- + +CREATE UNIQUE INDEX cwa_one_active_per_ou ON weight_assoc USING btree (org_unit) WHERE active; + + +-- +-- Name: i18n_identity; Type: INDEX; Schema: config; Owner: evergreen +-- + +CREATE UNIQUE INDEX i18n_identity ON i18n_core USING btree (fq_field, identity_value, translation); + + +-- +-- Name: idl_field_doc_identity; Type: INDEX; Schema: config; Owner: evergreen +-- + +CREATE UNIQUE INDEX idl_field_doc_identity ON idl_field_doc USING btree (fm_class, field, owner); + + +-- +-- Name: unique_wwh; Type: INDEX; Schema: config; Owner: evergreen +-- + +CREATE UNIQUE INDEX unique_wwh ON usr_activity_type USING btree ((COALESCE(ewho, ''::text)), (COALESCE(ewhat, ''::text)), (COALESCE(ehow, ''::text))); + + +SET search_path = container, pg_catalog; + +-- +-- Name: copy_bucket_item_bucket_idx; Type: INDEX; Schema: container; Owner: evergreen +-- + +CREATE INDEX copy_bucket_item_bucket_idx ON copy_bucket_item USING btree (bucket); + + +-- +-- Name: user_bucket_item_target_user_idx; Type: INDEX; Schema: container; Owner: evergreen +-- + +CREATE INDEX user_bucket_item_target_user_idx ON user_bucket_item USING btree (target_user); + + +SET search_path = metabib, pg_catalog; + +-- +-- Name: browse_entry_def_map_def_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX browse_entry_def_map_def_idx ON browse_entry_def_map USING btree (def); + + +-- +-- Name: browse_entry_def_map_entry_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX browse_entry_def_map_entry_idx ON browse_entry_def_map USING btree (entry); + + +-- +-- Name: browse_entry_def_map_source_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX browse_entry_def_map_source_idx ON browse_entry_def_map USING btree (source); + + +-- +-- Name: browse_entry_sh_map_entry_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX browse_entry_sh_map_entry_idx ON browse_entry_simple_heading_map USING btree (entry); + + +-- +-- Name: browse_entry_sh_map_sh_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX browse_entry_sh_map_sh_idx ON browse_entry_simple_heading_map USING btree (simple_heading); + + +-- +-- Name: browse_entry_sort_value_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX browse_entry_sort_value_idx ON browse_entry USING btree (sort_value); + + +-- +-- Name: metabib_author_field_entry_index_vector_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_author_field_entry_index_vector_idx ON author_field_entry USING gist (index_vector); + + +-- +-- Name: metabib_author_field_entry_source_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_author_field_entry_source_idx ON author_field_entry USING btree (source); + + +-- +-- Name: metabib_author_field_entry_value_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_author_field_entry_value_idx ON author_field_entry USING btree ("substring"(value, 1, 1024)) WHERE (index_vector = ''::tsvector); + + +-- +-- Name: metabib_browse_entry_index_vector_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_browse_entry_index_vector_idx ON browse_entry USING gin (index_vector); + + +-- +-- Name: metabib_combined_author_field_entry_fakepk_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE UNIQUE INDEX metabib_combined_author_field_entry_fakepk_idx ON combined_author_field_entry USING btree (record, (COALESCE((metabib_field)::text, ''::text))); + + +-- +-- Name: metabib_combined_author_field_entry_index_vector_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_combined_author_field_entry_index_vector_idx ON combined_author_field_entry USING gist (index_vector); + + +-- +-- Name: metabib_combined_author_field_source_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_combined_author_field_source_idx ON combined_author_field_entry USING btree (metabib_field); + + +-- +-- Name: metabib_combined_identifier_field_entry_fakepk_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE UNIQUE INDEX metabib_combined_identifier_field_entry_fakepk_idx ON combined_identifier_field_entry USING btree (record, (COALESCE((metabib_field)::text, ''::text))); + + +-- +-- Name: metabib_combined_identifier_field_entry_index_vector_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_combined_identifier_field_entry_index_vector_idx ON combined_identifier_field_entry USING gist (index_vector); + + +-- +-- Name: metabib_combined_identifier_field_source_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_combined_identifier_field_source_idx ON combined_identifier_field_entry USING btree (metabib_field); + + +-- +-- Name: metabib_combined_keyword_field_entry_fakepk_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE UNIQUE INDEX metabib_combined_keyword_field_entry_fakepk_idx ON combined_keyword_field_entry USING btree (record, (COALESCE((metabib_field)::text, ''::text))); + + +-- +-- Name: metabib_combined_keyword_field_entry_index_vector_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_combined_keyword_field_entry_index_vector_idx ON combined_keyword_field_entry USING gist (index_vector); + + +-- +-- Name: metabib_combined_keyword_field_source_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_combined_keyword_field_source_idx ON combined_keyword_field_entry USING btree (metabib_field); + + +-- +-- Name: metabib_combined_series_field_entry_fakepk_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE UNIQUE INDEX metabib_combined_series_field_entry_fakepk_idx ON combined_series_field_entry USING btree (record, (COALESCE((metabib_field)::text, ''::text))); + + +-- +-- Name: metabib_combined_series_field_entry_index_vector_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_combined_series_field_entry_index_vector_idx ON combined_series_field_entry USING gist (index_vector); + + +-- +-- Name: metabib_combined_series_field_source_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_combined_series_field_source_idx ON combined_series_field_entry USING btree (metabib_field); + + +-- +-- Name: metabib_combined_subject_field_entry_fakepk_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE UNIQUE INDEX metabib_combined_subject_field_entry_fakepk_idx ON combined_subject_field_entry USING btree (record, (COALESCE((metabib_field)::text, ''::text))); + + +-- +-- Name: metabib_combined_subject_field_entry_index_vector_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_combined_subject_field_entry_index_vector_idx ON combined_subject_field_entry USING gist (index_vector); + + +-- +-- Name: metabib_combined_subject_field_source_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_combined_subject_field_source_idx ON combined_subject_field_entry USING btree (metabib_field); + + +-- +-- Name: metabib_combined_title_field_entry_fakepk_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE UNIQUE INDEX metabib_combined_title_field_entry_fakepk_idx ON combined_title_field_entry USING btree (record, (COALESCE((metabib_field)::text, ''::text))); + + +-- +-- Name: metabib_combined_title_field_entry_index_vector_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_combined_title_field_entry_index_vector_idx ON combined_title_field_entry USING gist (index_vector); + + +-- +-- Name: metabib_combined_title_field_source_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_combined_title_field_source_idx ON combined_title_field_entry USING btree (metabib_field); + + +-- +-- Name: metabib_facet_entry_field_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_facet_entry_field_idx ON facet_entry USING btree (field); + + +-- +-- Name: metabib_facet_entry_source_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_facet_entry_source_idx ON facet_entry USING btree (source); + + +-- +-- Name: metabib_facet_entry_value_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_facet_entry_value_idx ON facet_entry USING btree ("substring"(value, 1, 1024)); + + +-- +-- Name: metabib_full_rec_02x_tag_subfield_lower_substring; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_full_rec_02x_tag_subfield_lower_substring ON real_full_rec USING btree (tag, subfield, lower("substring"(value, 1, 1024))) WHERE (tag = ANY (ARRAY['020'::bpchar, '022'::bpchar, '024'::bpchar])); + + +-- +-- Name: metabib_full_rec_index_vector_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_full_rec_index_vector_idx ON real_full_rec USING gist (index_vector); + + +-- +-- Name: metabib_full_rec_isxn_caseless_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_full_rec_isxn_caseless_idx ON real_full_rec USING btree (lower(value)) WHERE (tag = ANY (ARRAY['020'::bpchar, '022'::bpchar, '024'::bpchar])); + + +-- +-- Name: metabib_full_rec_record_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_full_rec_record_idx ON real_full_rec USING btree (record); + + +-- +-- Name: metabib_full_rec_tag_subfield_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_full_rec_tag_subfield_idx ON real_full_rec USING btree (tag, subfield); + + +-- +-- Name: metabib_full_rec_value_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_full_rec_value_idx ON real_full_rec USING btree ("substring"(value, 1, 1024)); + + +-- +-- Name: metabib_full_rec_value_tpo_index; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_full_rec_value_tpo_index ON real_full_rec USING btree ("substring"(value, 1, 1024) text_pattern_ops); + + +-- +-- Name: metabib_identifier_field_entry_index_vector_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_identifier_field_entry_index_vector_idx ON identifier_field_entry USING gist (index_vector); + + +-- +-- Name: metabib_identifier_field_entry_source_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_identifier_field_entry_source_idx ON identifier_field_entry USING btree (source); + + +-- +-- Name: metabib_identifier_field_entry_value_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_identifier_field_entry_value_idx ON identifier_field_entry USING btree ("substring"(value, 1, 1024)) WHERE (index_vector = ''::tsvector); + + +-- +-- Name: metabib_keyword_field_entry_index_vector_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_keyword_field_entry_index_vector_idx ON keyword_field_entry USING gist (index_vector); + + +-- +-- Name: metabib_keyword_field_entry_source_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_keyword_field_entry_source_idx ON keyword_field_entry USING btree (source); + + +-- +-- Name: metabib_keyword_field_entry_value_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_keyword_field_entry_value_idx ON keyword_field_entry USING btree ("substring"(value, 1, 1024)) WHERE (index_vector = ''::tsvector); + + +-- +-- Name: metabib_metarecord_fingerprint_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_metarecord_fingerprint_idx ON metarecord USING btree (fingerprint); + + +-- +-- Name: metabib_metarecord_master_record_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_metarecord_master_record_idx ON metarecord USING btree (master_record); + + +-- +-- Name: metabib_metarecord_source_map_metarecord_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_metarecord_source_map_metarecord_idx ON metarecord_source_map USING btree (metarecord); + + +-- +-- Name: metabib_metarecord_source_map_source_record_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_metarecord_source_map_source_record_idx ON metarecord_source_map USING btree (source); + + +-- +-- Name: metabib_series_field_entry_index_vector_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_series_field_entry_index_vector_idx ON series_field_entry USING gist (index_vector); + + +-- +-- Name: metabib_series_field_entry_source_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_series_field_entry_source_idx ON series_field_entry USING btree (source); + + +-- +-- Name: metabib_series_field_entry_value_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_series_field_entry_value_idx ON series_field_entry USING btree ("substring"(value, 1, 1024)) WHERE (index_vector = ''::tsvector); + + +-- +-- Name: metabib_sorter_a_v_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_sorter_a_v_idx ON record_sorter USING btree (attr, value); + + +-- +-- Name: metabib_sorter_s_a_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_sorter_s_a_idx ON record_sorter USING btree (source, attr); + + +-- +-- Name: metabib_sorter_source_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_sorter_source_idx ON record_sorter USING btree (source); + + +-- +-- Name: metabib_subject_field_entry_index_vector_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_subject_field_entry_index_vector_idx ON subject_field_entry USING gist (index_vector); + + +-- +-- Name: metabib_subject_field_entry_source_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_subject_field_entry_source_idx ON subject_field_entry USING btree (source); + + +-- +-- Name: metabib_subject_field_entry_value_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_subject_field_entry_value_idx ON subject_field_entry USING btree ("substring"(value, 1, 1024)) WHERE (index_vector = ''::tsvector); + + +-- +-- Name: metabib_title_field_entry_index_vector_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_title_field_entry_index_vector_idx ON title_field_entry USING gist (index_vector); + + +-- +-- Name: metabib_title_field_entry_source_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_title_field_entry_source_idx ON title_field_entry USING btree (source); + + +-- +-- Name: metabib_title_field_entry_value_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX metabib_title_field_entry_value_idx ON title_field_entry USING btree ("substring"(value, 1, 1024)) WHERE (index_vector = ''::tsvector); + + +-- +-- Name: mrca_vlist_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE INDEX mrca_vlist_idx ON record_attr_vector_list USING gin (vlist public.gin__int_ops); + + +-- +-- Name: muv_once_idx; Type: INDEX; Schema: metabib; Owner: evergreen +-- + +CREATE UNIQUE INDEX muv_once_idx ON uncontrolled_record_attr_value USING btree (attr, value); + + +SET search_path = money, pg_catalog; + +-- +-- Name: circ_open_date_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX circ_open_date_idx ON grocery USING btree (xact_start) WHERE (xact_finish IS NULL); + + +-- +-- Name: m_b_time_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX m_b_time_idx ON billing USING btree (billing_ts); + + +-- +-- Name: m_b_voider_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX m_b_voider_idx ON billing USING btree (voider); + + +-- +-- Name: m_b_x_open_xacts_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX m_b_x_open_xacts_idx ON billable_xact USING btree (usr); + + +-- +-- Name: m_b_xact_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX m_b_xact_idx ON billing USING btree (xact); + + +-- +-- Name: m_c_t_collector_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX m_c_t_collector_idx ON collections_tracker USING btree (collector); + + +-- +-- Name: m_c_t_usr_collector_location_once_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE UNIQUE INDEX m_c_t_usr_collector_location_once_idx ON collections_tracker USING btree (usr, collector, location); + + +-- +-- Name: m_g_usr_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX m_g_usr_idx ON grocery USING btree (usr); + + +-- +-- Name: m_p_time_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX m_p_time_idx ON payment USING btree (payment_ts); + + +-- +-- Name: m_p_xact_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX m_p_xact_idx ON payment USING btree (xact); + + +-- +-- Name: money_account_adjustment_accepting_usr_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_account_adjustment_accepting_usr_idx ON account_adjustment USING btree (accepting_usr); + + +-- +-- Name: money_account_adjustment_bill_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_account_adjustment_bill_idx ON account_adjustment USING btree (billing); + + +-- +-- Name: money_account_adjustment_payment_ts_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_account_adjustment_payment_ts_idx ON account_adjustment USING btree (payment_ts); + + +-- +-- Name: money_account_adjustment_xact_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_account_adjustment_xact_idx ON account_adjustment USING btree (xact); + + +-- +-- Name: money_adjustment_id_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_adjustment_id_idx ON account_adjustment USING btree (id); + + +-- +-- Name: money_cash_id_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_cash_id_idx ON cash_payment USING btree (id); + + +-- +-- Name: money_cash_payment_accepting_usr_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_cash_payment_accepting_usr_idx ON cash_payment USING btree (accepting_usr); + + +-- +-- Name: money_cash_payment_cash_drawer_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_cash_payment_cash_drawer_idx ON cash_payment USING btree (cash_drawer); + + +-- +-- Name: money_cash_payment_ts_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_cash_payment_ts_idx ON cash_payment USING btree (payment_ts); + + +-- +-- Name: money_cash_payment_xact_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_cash_payment_xact_idx ON cash_payment USING btree (xact); + + +-- +-- Name: money_check_id_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_check_id_idx ON check_payment USING btree (id); + + +-- +-- Name: money_check_payment_accepting_usr_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_check_payment_accepting_usr_idx ON check_payment USING btree (accepting_usr); + + +-- +-- Name: money_check_payment_cash_drawer_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_check_payment_cash_drawer_idx ON check_payment USING btree (cash_drawer); + + +-- +-- Name: money_check_payment_ts_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_check_payment_ts_idx ON check_payment USING btree (payment_ts); + + +-- +-- Name: money_check_payment_xact_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_check_payment_xact_idx ON check_payment USING btree (xact); + + +-- +-- Name: money_credit_card_id_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_credit_card_id_idx ON credit_card_payment USING btree (id); + + +-- +-- Name: money_credit_card_payment_accepting_usr_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_credit_card_payment_accepting_usr_idx ON credit_card_payment USING btree (accepting_usr); + + +-- +-- Name: money_credit_card_payment_cash_drawer_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_credit_card_payment_cash_drawer_idx ON credit_card_payment USING btree (cash_drawer); + + +-- +-- Name: money_credit_card_payment_ts_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_credit_card_payment_ts_idx ON credit_card_payment USING btree (payment_ts); + + +-- +-- Name: money_credit_card_payment_xact_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_credit_card_payment_xact_idx ON credit_card_payment USING btree (xact); + + +-- +-- Name: money_credit_id_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_credit_id_idx ON credit_payment USING btree (id); + + +-- +-- Name: money_credit_payment_accepting_usr_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_credit_payment_accepting_usr_idx ON credit_payment USING btree (accepting_usr); + + +-- +-- Name: money_credit_payment_payment_ts_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_credit_payment_payment_ts_idx ON credit_payment USING btree (payment_ts); + + +-- +-- Name: money_credit_payment_xact_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_credit_payment_xact_idx ON credit_payment USING btree (xact); + + +-- +-- Name: money_forgive_id_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_forgive_id_idx ON forgive_payment USING btree (id); + + +-- +-- Name: money_forgive_payment_accepting_usr_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_forgive_payment_accepting_usr_idx ON forgive_payment USING btree (accepting_usr); + + +-- +-- Name: money_forgive_payment_payment_ts_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_forgive_payment_payment_ts_idx ON forgive_payment USING btree (payment_ts); + + +-- +-- Name: money_forgive_payment_xact_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_forgive_payment_xact_idx ON forgive_payment USING btree (xact); + + +-- +-- Name: money_goods_id_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_goods_id_idx ON goods_payment USING btree (id); + + +-- +-- Name: money_goods_payment_accepting_usr_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_goods_payment_accepting_usr_idx ON goods_payment USING btree (accepting_usr); + + +-- +-- Name: money_goods_payment_payment_ts_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_goods_payment_payment_ts_idx ON goods_payment USING btree (payment_ts); + + +-- +-- Name: money_goods_payment_xact_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_goods_payment_xact_idx ON goods_payment USING btree (xact); + + +-- +-- Name: money_mat_summary_usr_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_mat_summary_usr_idx ON materialized_billable_xact_summary USING btree (usr); + + +-- +-- Name: money_mat_summary_xact_start_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_mat_summary_xact_start_idx ON materialized_billable_xact_summary USING btree (xact_start); + + +-- +-- Name: money_work_id_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_work_id_idx ON work_payment USING btree (id); + + +-- +-- Name: money_work_payment_accepting_usr_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_work_payment_accepting_usr_idx ON work_payment USING btree (accepting_usr); + + +-- +-- Name: money_work_payment_payment_ts_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_work_payment_payment_ts_idx ON work_payment USING btree (payment_ts); + + +-- +-- Name: money_work_payment_xact_idx; Type: INDEX; Schema: money; Owner: evergreen +-- + +CREATE INDEX money_work_payment_xact_idx ON work_payment USING btree (xact); + + +SET search_path = offline, pg_catalog; + +-- +-- Name: offline_script_pkey; Type: INDEX; Schema: offline; Owner: evergreen +-- + +CREATE INDEX offline_script_pkey ON script USING btree (id); + + +-- +-- Name: offline_script_session; Type: INDEX; Schema: offline; Owner: evergreen +-- + +CREATE INDEX offline_script_session ON script USING btree (session); + + +-- +-- Name: offline_script_ws; Type: INDEX; Schema: offline; Owner: evergreen +-- + +CREATE INDEX offline_script_ws ON script USING btree (workstation); + + +-- +-- Name: offline_session_creation; Type: INDEX; Schema: offline; Owner: evergreen +-- + +CREATE INDEX offline_session_creation ON session USING btree (create_time); + + +-- +-- Name: offline_session_org; Type: INDEX; Schema: offline; Owner: evergreen +-- + +CREATE INDEX offline_session_org ON session USING btree (org); + + +-- +-- Name: offline_session_pkey; Type: INDEX; Schema: offline; Owner: evergreen +-- + +CREATE INDEX offline_session_pkey ON session USING btree (key); + + +SET search_path = permission, pg_catalog; + +-- +-- Name: grp_tree_parent_idx; Type: INDEX; Schema: permission; Owner: evergreen +-- + +CREATE INDEX grp_tree_parent_idx ON grp_tree USING btree (parent); + + +-- +-- Name: perm_list_code_idx; Type: INDEX; Schema: permission; Owner: evergreen +-- + +CREATE INDEX perm_list_code_idx ON perm_list USING btree (code); + + +-- +-- Name: uopm_usr_idx; Type: INDEX; Schema: permission; Owner: evergreen +-- + +CREATE INDEX uopm_usr_idx ON usr_object_perm_map USING btree (usr); + + +SET search_path = query, pg_catalog; + +-- +-- Name: from_parent_seq; Type: INDEX; Schema: query; Owner: evergreen +-- + +CREATE UNIQUE INDEX from_parent_seq ON from_relation USING btree (parent_relation, seq_no) WHERE (parent_relation IS NOT NULL); + + +-- +-- Name: query_expr_parent_seq; Type: INDEX; Schema: query; Owner: evergreen +-- + +CREATE UNIQUE INDEX query_expr_parent_seq ON expression USING btree (parent_expr, seq_no) WHERE (parent_expr IS NOT NULL); + + +-- +-- Name: query_function_sig_name_idx; Type: INDEX; Schema: query; Owner: evergreen +-- + +CREATE INDEX query_function_sig_name_idx ON function_sig USING btree (function_name); + + +SET search_path = reporter, pg_catalog; + +-- +-- Name: rpt_output_fldr_owner_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE INDEX rpt_output_fldr_owner_idx ON output_folder USING btree (owner); + + +-- +-- Name: rpt_output_folder_once_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE UNIQUE INDEX rpt_output_folder_once_idx ON output_folder USING btree (name, owner) WHERE (parent IS NULL); + + +-- +-- Name: rpt_output_folder_once_parent_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE UNIQUE INDEX rpt_output_folder_once_parent_idx ON output_folder USING btree (name, parent); + + +-- +-- Name: rpt_report_folder_once_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE UNIQUE INDEX rpt_report_folder_once_idx ON report_folder USING btree (name, owner) WHERE (parent IS NULL); + + +-- +-- Name: rpt_report_folder_once_parent_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE UNIQUE INDEX rpt_report_folder_once_parent_idx ON report_folder USING btree (name, parent); + + +-- +-- Name: rpt_rpt_fldr_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE INDEX rpt_rpt_fldr_idx ON report USING btree (folder); + + +-- +-- Name: rpt_rpt_fldr_owner_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE INDEX rpt_rpt_fldr_owner_idx ON report_folder USING btree (owner); + + +-- +-- Name: rpt_rpt_owner_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE INDEX rpt_rpt_owner_idx ON report USING btree (owner); + + +-- +-- Name: rpt_sched_folder_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE INDEX rpt_sched_folder_idx ON schedule USING btree (folder); + + +-- +-- Name: rpt_sched_runner_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE INDEX rpt_sched_runner_idx ON schedule USING btree (runner); + + +-- +-- Name: rpt_template_folder_once_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE UNIQUE INDEX rpt_template_folder_once_idx ON template_folder USING btree (name, owner) WHERE (parent IS NULL); + + +-- +-- Name: rpt_template_folder_once_parent_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE UNIQUE INDEX rpt_template_folder_once_parent_idx ON template_folder USING btree (name, parent); + + +-- +-- Name: rpt_tmpl_fldr_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE INDEX rpt_tmpl_fldr_idx ON template USING btree (folder); + + +-- +-- Name: rpt_tmpl_fldr_owner_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE INDEX rpt_tmpl_fldr_owner_idx ON template_folder USING btree (owner); + + +-- +-- Name: rpt_tmpl_owner_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE INDEX rpt_tmpl_owner_idx ON template USING btree (owner); + + +-- +-- Name: rtp_report_folder_once_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE UNIQUE INDEX rtp_report_folder_once_idx ON report USING btree (name, folder); + + +-- +-- Name: rtp_template_folder_once_idx; Type: INDEX; Schema: reporter; Owner: evergreen +-- + +CREATE UNIQUE INDEX rtp_template_folder_once_idx ON template USING btree (name, folder); + + +SET search_path = search, pg_catalog; + +-- +-- Name: bump_once_per_field_idx; Type: INDEX; Schema: search; Owner: evergreen +-- + +CREATE UNIQUE INDEX bump_once_per_field_idx ON relevance_adjustment USING btree (field, bump_type); + + +SET search_path = serial, pg_catalog; + +-- +-- Name: assist_holdings_display; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX assist_holdings_display ON materialized_holding_code USING btree (issuance, subfield); + + +-- +-- Name: label_once_per_dist; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE UNIQUE INDEX label_once_per_dist ON stream USING btree (distribution, routing_label) WHERE (routing_label IS NOT NULL); + + +-- +-- Name: one_dist_per_sre_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE UNIQUE INDEX one_dist_per_sre_idx ON distribution USING btree (record_entry); + + +-- +-- Name: serial_basic_summary_dist_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_basic_summary_dist_idx ON basic_summary USING btree (distribution); + + +-- +-- Name: serial_caption_and_pattern_sub_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_caption_and_pattern_sub_idx ON caption_and_pattern USING btree (subscription); + + +-- +-- Name: serial_distribution_holding_lib_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_distribution_holding_lib_idx ON distribution USING btree (holding_lib); + + +-- +-- Name: serial_distribution_note_dist_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_distribution_note_dist_idx ON distribution_note USING btree (distribution); + + +-- +-- Name: serial_distribution_sub_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_distribution_sub_idx ON distribution USING btree (subscription); + + +-- +-- Name: serial_index_summary_dist_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_index_summary_dist_idx ON index_summary USING btree (distribution); + + +-- +-- Name: serial_issuance_caption_and_pattern_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_issuance_caption_and_pattern_idx ON issuance USING btree (caption_and_pattern); + + +-- +-- Name: serial_issuance_date_published_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_issuance_date_published_idx ON issuance USING btree (date_published); + + +-- +-- Name: serial_issuance_sub_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_issuance_sub_idx ON issuance USING btree (subscription); + + +-- +-- Name: serial_item_date_received_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_item_date_received_idx ON item USING btree (date_received); + + +-- +-- Name: serial_item_issuance_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_item_issuance_idx ON item USING btree (issuance); + + +-- +-- Name: serial_item_note_item_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_item_note_item_idx ON item_note USING btree (item); + + +-- +-- Name: serial_item_status_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_item_status_idx ON item USING btree (status); + + +-- +-- Name: serial_item_stream_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_item_stream_idx ON item USING btree (stream); + + +-- +-- Name: serial_item_unit_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_item_unit_idx ON item USING btree (unit); + + +-- +-- Name: serial_item_uri_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_item_uri_idx ON item USING btree (uri); + + +-- +-- Name: serial_record_entry_creator_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_record_entry_creator_idx ON record_entry USING btree (creator); + + +-- +-- Name: serial_record_entry_editor_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_record_entry_editor_idx ON record_entry USING btree (editor); + + +-- +-- Name: serial_record_entry_owning_lib_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_record_entry_owning_lib_idx ON record_entry USING btree (owning_lib, deleted); + + +-- +-- Name: serial_record_entry_record_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_record_entry_record_idx ON record_entry USING btree (record); + + +-- +-- Name: serial_routing_list_user_reader_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_routing_list_user_reader_idx ON routing_list_user USING btree (reader); + + +-- +-- Name: serial_routing_list_user_stream_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_routing_list_user_stream_idx ON routing_list_user USING btree (stream); + + +-- +-- Name: serial_stream_dist_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_stream_dist_idx ON stream USING btree (distribution); + + +-- +-- Name: serial_subscription_note_sub_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_subscription_note_sub_idx ON subscription_note USING btree (subscription); + + +-- +-- Name: serial_subscription_owner_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_subscription_owner_idx ON subscription USING btree (owning_lib); + + +-- +-- Name: serial_subscription_record_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_subscription_record_idx ON subscription USING btree (record_entry); + + +-- +-- Name: serial_supplement_summary_dist_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX serial_supplement_summary_dist_idx ON supplement_summary USING btree (distribution); + + +-- +-- Name: unit_avail_cn_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX unit_avail_cn_idx ON unit USING btree (call_number); + + +-- +-- Name: unit_barcode_key; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE UNIQUE INDEX unit_barcode_key ON unit USING btree (barcode) WHERE ((deleted = false) OR (deleted IS FALSE)); + + +-- +-- Name: unit_cn_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX unit_cn_idx ON unit USING btree (call_number); + + +-- +-- Name: unit_creator_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX unit_creator_idx ON unit USING btree (creator); + + +-- +-- Name: unit_editor_idx; Type: INDEX; Schema: serial; Owner: evergreen +-- + +CREATE INDEX unit_editor_idx ON unit USING btree (editor); + + +SET search_path = vandelay, pg_catalog; + +-- +-- Name: bib_match_queued_record_idx; Type: INDEX; Schema: vandelay; Owner: evergreen +-- + +CREATE INDEX bib_match_queued_record_idx ON bib_match USING btree (queued_record); + + +-- +-- Name: import_item_record_idx; Type: INDEX; Schema: vandelay; Owner: evergreen +-- + +CREATE INDEX import_item_record_idx ON import_item USING btree (record); + + +-- +-- Name: queued_authority_record_attr_record_idx; Type: INDEX; Schema: vandelay; Owner: evergreen +-- + +CREATE INDEX queued_authority_record_attr_record_idx ON queued_authority_record_attr USING btree (record); + + +-- +-- Name: queued_authority_record_queue_idx; Type: INDEX; Schema: vandelay; Owner: evergreen +-- + +CREATE INDEX queued_authority_record_queue_idx ON queued_authority_record USING btree (queue); + + +-- +-- Name: queued_bib_record_attr_record_idx; Type: INDEX; Schema: vandelay; Owner: evergreen +-- + +CREATE INDEX queued_bib_record_attr_record_idx ON queued_bib_record_attr USING btree (record); + + +-- +-- Name: queued_bib_record_queue_idx; Type: INDEX; Schema: vandelay; Owner: evergreen +-- + +CREATE INDEX queued_bib_record_queue_idx ON queued_bib_record USING btree (queue); + + +-- +-- Name: vmsq_def_once_per_set; Type: INDEX; Schema: vandelay; Owner: evergreen +-- + +CREATE UNIQUE INDEX vmsq_def_once_per_set ON match_set_quality USING btree (match_set, (COALESCE(tag, ''::text)), (COALESCE(subfield, ''::text)), (COALESCE(svf, ''::text)), value); + + +SET search_path = actor, pg_catalog; + +-- +-- Name: protect_user_delete; Type: RULE; Schema: actor; Owner: evergreen +-- + +CREATE RULE protect_user_delete AS + ON DELETE TO usr DO INSTEAD UPDATE usr SET deleted = true + WHERE (old.id = usr.id); + + +-- +-- Name: protect_usr_message_delete; Type: RULE; Schema: actor; Owner: evergreen +-- + +CREATE RULE protect_usr_message_delete AS + ON DELETE TO usr_message DO INSTEAD UPDATE usr_message SET deleted = true + WHERE (old.id = usr_message.id); + + +SET search_path = asset, pg_catalog; + +-- +-- Name: protect_cn_delete; Type: RULE; Schema: asset; Owner: evergreen +-- + +CREATE RULE protect_cn_delete AS + ON DELETE TO call_number DO INSTEAD UPDATE call_number SET deleted = true + WHERE (old.id = call_number.id); + + +-- +-- Name: protect_copy_delete; Type: RULE; Schema: asset; Owner: evergreen +-- + +CREATE RULE protect_copy_delete AS + ON DELETE TO copy DO INSTEAD UPDATE copy SET deleted = true + WHERE (old.id = copy.id); + + +-- +-- Name: protect_copy_location_delete; Type: RULE; Schema: asset; Owner: evergreen +-- + +CREATE RULE protect_copy_location_delete AS + ON DELETE TO copy_location DO INSTEAD ( UPDATE copy_location SET deleted = true + WHERE (old.id = copy_location.id); + UPDATE acq.lineitem_detail SET location = NULL::integer + WHERE (lineitem_detail.location = old.id); + DELETE FROM copy_location_order + WHERE (copy_location_order.location = old.id); + DELETE FROM copy_location_group_map + WHERE (copy_location_group_map.location = old.id); + DELETE FROM config.circ_limit_set_copy_loc_map + WHERE (circ_limit_set_copy_loc_map.copy_loc = old.id); +); + + +SET search_path = authority, pg_catalog; + +-- +-- Name: protect_authority_rec_delete; Type: RULE; Schema: authority; Owner: evergreen +-- + +CREATE RULE protect_authority_rec_delete AS + ON DELETE TO record_entry DO INSTEAD ( UPDATE record_entry SET deleted = true + WHERE (old.id = record_entry.id); + DELETE FROM full_rec + WHERE (full_rec.record = old.id); +); + + +SET search_path = biblio, pg_catalog; + +-- +-- Name: protect_bib_rec_delete; Type: RULE; Schema: biblio; Owner: evergreen +-- + +CREATE RULE protect_bib_rec_delete AS + ON DELETE TO record_entry DO INSTEAD UPDATE record_entry SET deleted = true + WHERE (old.id = record_entry.id); + + +-- +-- Name: protect_mono_part_delete; Type: RULE; Schema: biblio; Owner: evergreen +-- + +CREATE RULE protect_mono_part_delete AS + ON DELETE TO monograph_part DO INSTEAD ( UPDATE monograph_part SET deleted = true + WHERE (old.id = monograph_part.id); + DELETE FROM asset.copy_part_map + WHERE (copy_part_map.part = old.id); +); + + +SET search_path = metabib, pg_catalog; + +-- +-- Name: metabib_full_rec_delete_rule; Type: RULE; Schema: metabib; Owner: evergreen +-- + +CREATE RULE metabib_full_rec_delete_rule AS + ON DELETE TO full_rec DO INSTEAD DELETE FROM real_full_rec + WHERE (real_full_rec.id = old.id); + + +-- +-- Name: metabib_full_rec_insert_rule; Type: RULE; Schema: metabib; Owner: evergreen +-- + +CREATE RULE metabib_full_rec_insert_rule AS + ON INSERT TO full_rec DO INSTEAD INSERT INTO real_full_rec (id, record, tag, ind1, ind2, subfield, value, index_vector) + VALUES (COALESCE(new.id, nextval('full_rec_id_seq'::regclass)), new.record, new.tag, new.ind1, new.ind2, new.subfield, new.value, new.index_vector); + + +-- +-- Name: metabib_full_rec_update_rule; Type: RULE; Schema: metabib; Owner: evergreen +-- + +CREATE RULE metabib_full_rec_update_rule AS + ON UPDATE TO full_rec DO INSTEAD UPDATE real_full_rec SET id = new.id, record = new.record, tag = new.tag, ind1 = new.ind1, ind2 = new.ind2, subfield = new.subfield, value = new.value, index_vector = new.index_vector + WHERE (real_full_rec.id = old.id); + + +SET search_path = money, pg_catalog; + +-- +-- Name: money_payment_view_update; Type: RULE; Schema: money; Owner: evergreen +-- + +CREATE RULE money_payment_view_update AS + ON UPDATE TO payment_view DO INSTEAD UPDATE payment SET xact = new.xact, payment_ts = new.payment_ts, voided = new.voided, amount = new.amount, note = new.note + WHERE (payment.id = new.id); + + +SET search_path = query, pg_catalog; + +-- +-- Name: query_expr_string_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_string_delete_rule AS + ON DELETE TO expr_xstr DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_string_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_string_insert_rule AS + ON INSERT TO expr_xstr DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, literal) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xstr'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), new.literal); + + +-- +-- Name: query_expr_string_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_string_update_rule AS + ON UPDATE TO expr_xstr DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, literal = new.literal + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xbet_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xbet_delete_rule AS + ON DELETE TO expr_xbet DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xbet_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xbet_insert_rule AS + ON INSERT TO expr_xbet DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, left_operand, negate) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xbet'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), new.left_operand, COALESCE(new.negate, false)); + + +-- +-- Name: query_expr_xbet_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xbet_update_rule AS + ON UPDATE TO expr_xbet DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, left_operand = new.left_operand, negate = new.negate + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xbind_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xbind_delete_rule AS + ON DELETE TO expr_xbind DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xbind_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xbind_insert_rule AS + ON INSERT TO expr_xbind DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, bind_variable) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xbind'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), new.bind_variable); + + +-- +-- Name: query_expr_xbind_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xbind_update_rule AS + ON UPDATE TO expr_xbind DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, bind_variable = new.bind_variable + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xbool_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xbool_delete_rule AS + ON DELETE TO expr_xbool DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xbool_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xbool_insert_rule AS + ON INSERT TO expr_xbool DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, literal, negate) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xbool'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), new.literal, COALESCE(new.negate, false)); + + +-- +-- Name: query_expr_xbool_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xbool_update_rule AS + ON UPDATE TO expr_xbool DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, literal = new.literal, negate = new.negate + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xcase_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xcase_delete_rule AS + ON DELETE TO expr_xcase DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xcase_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xcase_insert_rule AS + ON INSERT TO expr_xcase DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, left_operand, negate) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xcase'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), new.left_operand, COALESCE(new.negate, false)); + + +-- +-- Name: query_expr_xcase_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xcase_update_rule AS + ON UPDATE TO expr_xcase DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, left_operand = new.left_operand, negate = new.negate + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xcast_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xcast_delete_rule AS + ON DELETE TO expr_xcast DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xcast_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xcast_insert_rule AS + ON INSERT TO expr_xcast DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, left_operand, cast_type, negate) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xcast'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), new.left_operand, new.cast_type, COALESCE(new.negate, false)); + + +-- +-- Name: query_expr_xcast_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xcast_update_rule AS + ON UPDATE TO expr_xcast DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, left_operand = new.left_operand, cast_type = new.cast_type, negate = new.negate + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xcol_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xcol_delete_rule AS + ON DELETE TO expr_xcol DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xcol_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xcol_insert_rule AS + ON INSERT TO expr_xcol DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, table_alias, column_name, negate) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xcol'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), new.table_alias, new.column_name, COALESCE(new.negate, false)); + + +-- +-- Name: query_expr_xcol_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xcol_update_rule AS + ON UPDATE TO expr_xcol DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, table_alias = new.table_alias, column_name = new.column_name, negate = new.negate + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xex_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xex_delete_rule AS + ON DELETE TO expr_xex DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xex_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xex_insert_rule AS + ON INSERT TO expr_xex DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, subquery, negate) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xex'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), new.subquery, COALESCE(new.negate, false)); + + +-- +-- Name: query_expr_xex_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xex_update_rule AS + ON UPDATE TO expr_xex DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, subquery = new.subquery, negate = new.negate + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xfunc_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xfunc_delete_rule AS + ON DELETE TO expr_xfunc DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xfunc_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xfunc_insert_rule AS + ON INSERT TO expr_xfunc DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, column_name, function_id, negate) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xfunc'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), new.column_name, new.function_id, COALESCE(new.negate, false)); + + +-- +-- Name: query_expr_xfunc_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xfunc_update_rule AS + ON UPDATE TO expr_xfunc DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, column_name = new.column_name, function_id = new.function_id, negate = new.negate + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xin_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xin_delete_rule AS + ON DELETE TO expr_xin DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xin_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xin_insert_rule AS + ON INSERT TO expr_xin DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, left_operand, subquery, negate) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xin'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), new.left_operand, new.subquery, COALESCE(new.negate, false)); + + +-- +-- Name: query_expr_xin_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xin_update_rule AS + ON UPDATE TO expr_xin DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, left_operand = new.left_operand, subquery = new.subquery, negate = new.negate + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xisnull_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xisnull_delete_rule AS + ON DELETE TO expr_xisnull DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xisnull_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xisnull_insert_rule AS + ON INSERT TO expr_xisnull DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, left_operand, negate) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xisnull'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), new.left_operand, COALESCE(new.negate, false)); + + +-- +-- Name: query_expr_xisnull_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xisnull_update_rule AS + ON UPDATE TO expr_xisnull DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, left_operand = new.left_operand, negate = new.negate + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xnull_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xnull_delete_rule AS + ON DELETE TO expr_xnull DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xnull_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xnull_insert_rule AS + ON INSERT TO expr_xnull DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, negate) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xnull'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), COALESCE(new.negate, false)); + + +-- +-- Name: query_expr_xnull_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xnull_update_rule AS + ON UPDATE TO expr_xnull DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, negate = new.negate + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xnum_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xnum_delete_rule AS + ON DELETE TO expr_xnum DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xnum_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xnum_insert_rule AS + ON INSERT TO expr_xnum DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, literal) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xnum'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), new.literal); + + +-- +-- Name: query_expr_xnum_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xnum_update_rule AS + ON UPDATE TO expr_xnum DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, literal = new.literal + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xop_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xop_delete_rule AS + ON DELETE TO expr_xop DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xop_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xop_insert_rule AS + ON INSERT TO expr_xop DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, left_operand, operator, right_operand, negate) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xop'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), new.left_operand, new.operator, new.right_operand, COALESCE(new.negate, false)); + + +-- +-- Name: query_expr_xop_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xop_update_rule AS + ON UPDATE TO expr_xop DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, left_operand = new.left_operand, operator = new.operator, right_operand = new.right_operand, negate = new.negate + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xser_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xser_delete_rule AS + ON DELETE TO expr_xser DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xser_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xser_insert_rule AS + ON INSERT TO expr_xser DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, operator, negate) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xser'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), new.operator, COALESCE(new.negate, false)); + + +-- +-- Name: query_expr_xser_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xser_update_rule AS + ON UPDATE TO expr_xser DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, operator = new.operator, negate = new.negate + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xsubq_delete_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xsubq_delete_rule AS + ON DELETE TO expr_xsubq DO INSTEAD DELETE FROM expression + WHERE (expression.id = old.id); + + +-- +-- Name: query_expr_xsubq_insert_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xsubq_insert_rule AS + ON INSERT TO expr_xsubq DO INSTEAD INSERT INTO expression (id, type, parenthesize, parent_expr, seq_no, subquery, negate) + VALUES (COALESCE((new.id)::bigint, nextval('expression_id_seq'::regclass)), 'xsubq'::text, COALESCE(new.parenthesize, false), new.parent_expr, COALESCE(new.seq_no, 1), new.subquery, COALESCE(new.negate, false)); + + +-- +-- Name: query_expr_xsubq_update_rule; Type: RULE; Schema: query; Owner: evergreen +-- + +CREATE RULE query_expr_xsubq_update_rule AS + ON UPDATE TO expr_xsubq DO INSTEAD UPDATE expression SET id = new.id, parenthesize = new.parenthesize, parent_expr = new.parent_expr, seq_no = new.seq_no, subquery = new.subquery, negate = new.negate + WHERE (expression.id = old.id); + + +SET search_path = serial, pg_catalog; + +-- +-- Name: protect_mfhd_delete; Type: RULE; Schema: serial; Owner: evergreen +-- + +CREATE RULE protect_mfhd_delete AS + ON DELETE TO record_entry DO INSTEAD UPDATE record_entry SET deleted = true + WHERE (old.id = record_entry.id); + + +-- +-- Name: protect_serial_unit_delete; Type: RULE; Schema: serial; Owner: evergreen +-- + +CREATE RULE protect_serial_unit_delete AS + ON DELETE TO unit DO INSTEAD UPDATE unit SET deleted = true + WHERE (old.id = unit.id); + + +SET search_path = acq, pg_catalog; + +-- +-- Name: acq_fund_alloc_percent_val_trig; Type: TRIGGER; Schema: acq; Owner: evergreen +-- + +CREATE TRIGGER acq_fund_alloc_percent_val_trig BEFORE INSERT OR UPDATE ON fund_allocation_percent FOR EACH ROW EXECUTE PROCEDURE fund_alloc_percent_val(); + + +-- +-- Name: acq_no_deleted_reserved_cancel_reasons; Type: TRIGGER; Schema: acq; Owner: evergreen +-- + +CREATE TRIGGER acq_no_deleted_reserved_cancel_reasons BEFORE DELETE ON cancel_reason FOR EACH ROW EXECUTE PROCEDURE evergreen.protect_reserved_rows_from_delete('2000'); + + +-- +-- Name: acqfap_limit_100_trig; Type: TRIGGER; Schema: acq; Owner: evergreen +-- + +CREATE TRIGGER acqfap_limit_100_trig AFTER INSERT OR UPDATE ON fund_allocation_percent FOR EACH ROW EXECUTE PROCEDURE fap_limit_100(); + + +-- +-- Name: audit_acq_invoice_entry_update_trigger; Type: TRIGGER; Schema: acq; Owner: evergreen +-- + +CREATE TRIGGER audit_acq_invoice_entry_update_trigger AFTER DELETE OR UPDATE ON invoice_entry FOR EACH ROW EXECUTE PROCEDURE auditor.audit_acq_invoice_entry_func(); + + +-- +-- Name: audit_acq_invoice_item_update_trigger; Type: TRIGGER; Schema: acq; Owner: evergreen +-- + +CREATE TRIGGER audit_acq_invoice_item_update_trigger AFTER DELETE OR UPDATE ON invoice_item FOR EACH ROW EXECUTE PROCEDURE auditor.audit_acq_invoice_item_func(); + + +-- +-- Name: audit_acq_invoice_update_trigger; Type: TRIGGER; Schema: acq; Owner: evergreen +-- + +CREATE TRIGGER audit_acq_invoice_update_trigger AFTER DELETE OR UPDATE ON invoice FOR EACH ROW EXECUTE PROCEDURE auditor.audit_acq_invoice_func(); + + +-- +-- Name: audit_acq_lineitem_update_trigger; Type: TRIGGER; Schema: acq; Owner: evergreen +-- + +CREATE TRIGGER audit_acq_lineitem_update_trigger AFTER DELETE OR UPDATE ON lineitem FOR EACH ROW EXECUTE PROCEDURE audit_acq_lineitem_func(); + + +-- +-- Name: audit_acq_purchase_order_update_trigger; Type: TRIGGER; Schema: acq; Owner: evergreen +-- + +CREATE TRIGGER audit_acq_purchase_order_update_trigger AFTER DELETE OR UPDATE ON purchase_order FOR EACH ROW EXECUTE PROCEDURE audit_acq_purchase_order_func(); + + +-- +-- Name: cleanup_lineitem_trigger; Type: TRIGGER; Schema: acq; Owner: evergreen +-- + +CREATE TRIGGER cleanup_lineitem_trigger BEFORE DELETE OR UPDATE ON lineitem FOR EACH ROW EXECUTE PROCEDURE public.cleanup_acq_marc(); + + +-- +-- Name: ingest_lineitem_trigger; Type: TRIGGER; Schema: acq; Owner: evergreen +-- + +CREATE TRIGGER ingest_lineitem_trigger AFTER INSERT OR UPDATE ON lineitem FOR EACH ROW EXECUTE PROCEDURE public.ingest_acq_marc(); + + +-- +-- Name: po_name_default_trg; Type: TRIGGER; Schema: acq; Owner: evergreen +-- + +CREATE TRIGGER po_name_default_trg BEFORE INSERT OR UPDATE ON purchase_order FOR EACH ROW EXECUTE PROCEDURE purchase_order_name_default(); + + +-- +-- Name: po_org_name_date_unique_trg; Type: TRIGGER; Schema: acq; Owner: evergreen +-- + +CREATE TRIGGER po_org_name_date_unique_trg BEFORE INSERT OR UPDATE ON purchase_order FOR EACH ROW EXECUTE PROCEDURE po_org_name_date_unique(); + + +SET search_path = action, pg_catalog; + +-- +-- Name: action_circulation_aging_tgr; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER action_circulation_aging_tgr BEFORE DELETE ON circulation FOR EACH ROW EXECUTE PROCEDURE age_circ_on_delete(); + + +-- +-- Name: action_circulation_stop_fines_tgr; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER action_circulation_stop_fines_tgr BEFORE UPDATE ON circulation FOR EACH ROW EXECUTE PROCEDURE circulation_claims_returned(); + + +-- +-- Name: action_circulation_target_copy_trig; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER action_circulation_target_copy_trig AFTER INSERT OR UPDATE ON circulation FOR EACH ROW EXECUTE PROCEDURE evergreen.fake_fkey_tgr('target_copy'); + + +-- +-- Name: action_hold_request_aging_tgr; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER action_hold_request_aging_tgr BEFORE DELETE ON hold_request FOR EACH ROW EXECUTE PROCEDURE age_hold_on_delete(); + + +-- +-- Name: action_survey_response_answer_date_fixup_tgr; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER action_survey_response_answer_date_fixup_tgr BEFORE INSERT ON survey_response FOR EACH ROW EXECUTE PROCEDURE survey_response_answer_date_fixup(); + + +-- +-- Name: action_usr_circ_history_target_copy_trig; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER action_usr_circ_history_target_copy_trig AFTER INSERT OR UPDATE ON usr_circ_history FOR EACH ROW EXECUTE PROCEDURE evergreen.fake_fkey_tgr('target_copy'); + + +-- +-- Name: age_parent_circ; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER age_parent_circ AFTER DELETE ON circulation FOR EACH ROW EXECUTE PROCEDURE age_parent_circ_on_delete(); + + +-- +-- Name: archive_stat_cats_tgr; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER archive_stat_cats_tgr AFTER INSERT ON circulation FOR EACH ROW EXECUTE PROCEDURE archive_stat_cats(); + + +-- +-- Name: fill_circ_copy_location_tgr; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER fill_circ_copy_location_tgr BEFORE INSERT ON circulation FOR EACH ROW EXECUTE PROCEDURE fill_circ_copy_location(); + + +-- +-- Name: hold_copy_proximity_update_tgr; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER hold_copy_proximity_update_tgr BEFORE INSERT OR UPDATE ON hold_copy_map FOR EACH ROW EXECUTE PROCEDURE hold_copy_calculated_proximity_update(); + + +-- +-- Name: hold_request_clear_map_tgr; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER hold_request_clear_map_tgr AFTER UPDATE ON hold_request FOR EACH ROW WHEN ((((new.cancel_time IS NOT NULL) AND (old.cancel_time IS NULL)) OR ((new.fulfillment_time IS NOT NULL) AND (old.fulfillment_time IS NULL)))) EXECUTE PROCEDURE hold_request_clear_map(); + + +-- +-- Name: maintain_usr_circ_history_tgr; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER maintain_usr_circ_history_tgr AFTER INSERT OR UPDATE ON circulation FOR EACH ROW EXECUTE PROCEDURE maintain_usr_circ_history(); + + +-- +-- Name: mat_summary_change_tgr; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_change_tgr AFTER UPDATE ON circulation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_update(); + + +-- +-- Name: mat_summary_create_tgr; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON circulation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create('circulation'); + + +-- +-- Name: mat_summary_remove_tgr; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_remove_tgr AFTER DELETE ON circulation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_delete(); + + +-- +-- Name: push_due_date_tgr; Type: TRIGGER; Schema: action; Owner: evergreen +-- + +CREATE TRIGGER push_due_date_tgr BEFORE INSERT OR UPDATE ON circulation FOR EACH ROW EXECUTE PROCEDURE push_circ_due_time(); + + +SET search_path = actor, pg_catalog; + +-- +-- Name: a_opac_vis_mat_view_tgr; Type: TRIGGER; Schema: actor; Owner: evergreen +-- + +CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON org_unit FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility(); + + +-- +-- Name: actor_crypt_pw_insert_trigger; Type: TRIGGER; Schema: actor; Owner: evergreen +-- + +CREATE TRIGGER actor_crypt_pw_insert_trigger BEFORE INSERT ON usr FOR EACH ROW EXECUTE PROCEDURE crypt_pw_insert(); + + +-- +-- Name: actor_crypt_pw_update_trigger; Type: TRIGGER; Schema: actor; Owner: evergreen +-- + +CREATE TRIGGER actor_crypt_pw_update_trigger BEFORE UPDATE ON usr FOR EACH ROW EXECUTE PROCEDURE crypt_pw_update(); + + +-- +-- Name: actor_org_unit_parent_protect_trigger; Type: TRIGGER; Schema: actor; Owner: evergreen +-- + +CREATE TRIGGER actor_org_unit_parent_protect_trigger BEFORE INSERT OR UPDATE ON org_unit FOR EACH ROW EXECUTE PROCEDURE org_unit_parent_protect(); + + +-- +-- Name: actor_stat_cat_sip_update_trigger; Type: TRIGGER; Schema: actor; Owner: evergreen +-- + +CREATE TRIGGER actor_stat_cat_sip_update_trigger BEFORE INSERT OR UPDATE ON stat_cat FOR EACH ROW EXECUTE PROCEDURE stat_cat_check(); + + +-- +-- Name: au_update_trig; Type: TRIGGER; Schema: actor; Owner: evergreen +-- + +CREATE TRIGGER au_update_trig BEFORE INSERT OR UPDATE ON usr FOR EACH ROW EXECUTE PROCEDURE au_updated(); + + +-- +-- Name: audit_actor_org_unit_update_trigger; Type: TRIGGER; Schema: actor; Owner: evergreen +-- + +CREATE TRIGGER audit_actor_org_unit_update_trigger AFTER DELETE OR UPDATE ON org_unit FOR EACH ROW EXECUTE PROCEDURE auditor.audit_actor_org_unit_func(); + + +-- +-- Name: audit_actor_usr_address_update_trigger; Type: TRIGGER; Schema: actor; Owner: evergreen +-- + +CREATE TRIGGER audit_actor_usr_address_update_trigger AFTER DELETE OR UPDATE ON usr_address FOR EACH ROW EXECUTE PROCEDURE auditor.audit_actor_usr_address_func(); + + +-- +-- Name: audit_actor_usr_update_trigger; Type: TRIGGER; Schema: actor; Owner: evergreen +-- + +CREATE TRIGGER audit_actor_usr_update_trigger AFTER DELETE OR UPDATE ON usr FOR EACH ROW EXECUTE PROCEDURE auditor.audit_actor_usr_func(); + + +-- +-- Name: convert_usr_note_to_message_tgr; Type: TRIGGER; Schema: actor; Owner: evergreen +-- + +CREATE TRIGGER convert_usr_note_to_message_tgr AFTER INSERT OR UPDATE ON usr_note FOR EACH ROW EXECUTE PROCEDURE convert_usr_note_to_message(); + + +-- +-- Name: log_ous_change; Type: TRIGGER; Schema: actor; Owner: evergreen +-- + +CREATE TRIGGER log_ous_change BEFORE INSERT OR UPDATE ON org_unit_setting FOR EACH ROW EXECUTE PROCEDURE evergreen.ous_change_log(); + + +-- +-- Name: log_ous_del; Type: TRIGGER; Schema: actor; Owner: evergreen +-- + +CREATE TRIGGER log_ous_del BEFORE DELETE ON org_unit_setting FOR EACH ROW EXECUTE PROCEDURE evergreen.ous_delete_log(); + + +-- +-- Name: proximity_update_tgr; Type: TRIGGER; Schema: actor; Owner: evergreen +-- + +CREATE TRIGGER proximity_update_tgr AFTER INSERT OR DELETE OR UPDATE ON org_unit FOR EACH ROW EXECUTE PROCEDURE org_unit_prox_update(); + + +-- +-- Name: remove_transient_usr_activity; Type: TRIGGER; Schema: actor; Owner: evergreen +-- + +CREATE TRIGGER remove_transient_usr_activity BEFORE INSERT ON usr_activity FOR EACH ROW EXECUTE PROCEDURE usr_activity_transient_trg(); + + +-- +-- Name: restrict_usr_message_limited_tgr; Type: TRIGGER; Schema: actor; Owner: evergreen +-- + +CREATE TRIGGER restrict_usr_message_limited_tgr INSTEAD OF INSERT OR DELETE OR UPDATE ON usr_message_limited FOR EACH ROW EXECUTE PROCEDURE restrict_usr_message_limited(); + + +SET search_path = asset, pg_catalog; + +-- +-- Name: a_opac_vis_mat_view_tgr; Type: TRIGGER; Schema: asset; Owner: evergreen +-- + +CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON copy FOR EACH ROW EXECUTE PROCEDURE cache_copy_visibility(); + + +-- +-- Name: a_opac_vis_mat_view_tgr; Type: TRIGGER; Schema: asset; Owner: evergreen +-- + +CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON call_number FOR EACH ROW EXECUTE PROCEDURE cache_copy_visibility(); + + +-- +-- Name: a_opac_vis_mat_view_tgr; Type: TRIGGER; Schema: asset; Owner: evergreen +-- + +CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON copy_location FOR EACH ROW EXECUTE PROCEDURE cache_copy_visibility(); + + +-- +-- Name: acp_created_trig; Type: TRIGGER; Schema: asset; Owner: evergreen +-- + +CREATE TRIGGER acp_created_trig BEFORE INSERT ON copy FOR EACH ROW EXECUTE PROCEDURE acp_created(); + + +-- +-- Name: acp_location_fixer_trig; Type: TRIGGER; Schema: asset; Owner: evergreen +-- + +CREATE TRIGGER acp_location_fixer_trig BEFORE INSERT OR UPDATE OF location, call_number, circ_lib ON copy FOR EACH ROW EXECUTE PROCEDURE acp_location_fixer(); + + +-- +-- Name: acp_status_changed_trig; Type: TRIGGER; Schema: asset; Owner: evergreen +-- + +CREATE TRIGGER acp_status_changed_trig BEFORE UPDATE ON copy FOR EACH ROW EXECUTE PROCEDURE acp_status_changed(); + + +-- +-- Name: asset_label_sortkey_trigger; Type: TRIGGER; Schema: asset; Owner: evergreen +-- + +CREATE TRIGGER asset_label_sortkey_trigger BEFORE INSERT OR UPDATE ON call_number FOR EACH ROW EXECUTE PROCEDURE label_normalizer(); + + +-- +-- Name: asset_stat_cat_sip_update_trigger; Type: TRIGGER; Schema: asset; Owner: evergreen +-- + +CREATE TRIGGER asset_stat_cat_sip_update_trigger BEFORE INSERT OR UPDATE ON stat_cat FOR EACH ROW EXECUTE PROCEDURE stat_cat_check(); + + +-- +-- Name: audit_asset_call_number_update_trigger; Type: TRIGGER; Schema: asset; Owner: evergreen +-- + +CREATE TRIGGER audit_asset_call_number_update_trigger AFTER DELETE OR UPDATE ON call_number FOR EACH ROW EXECUTE PROCEDURE auditor.audit_asset_call_number_func(); + + +-- +-- Name: audit_asset_copy_update_trigger; Type: TRIGGER; Schema: asset; Owner: evergreen +-- + +CREATE TRIGGER audit_asset_copy_update_trigger AFTER DELETE OR UPDATE ON copy FOR EACH ROW EXECUTE PROCEDURE auditor.audit_asset_copy_func(); + + +-- +-- Name: autogenerate_placeholder_barcode; Type: TRIGGER; Schema: asset; Owner: evergreen +-- + +CREATE TRIGGER autogenerate_placeholder_barcode BEFORE INSERT OR UPDATE ON copy FOR EACH ROW EXECUTE PROCEDURE autogenerate_placeholder_barcode(); + + +-- +-- Name: prefix_normalize_tgr; Type: TRIGGER; Schema: asset; Owner: evergreen +-- + +CREATE TRIGGER prefix_normalize_tgr BEFORE INSERT OR UPDATE ON call_number_prefix FOR EACH ROW EXECUTE PROCEDURE normalize_affix_sortkey(); + + +-- +-- Name: suffix_normalize_tgr; Type: TRIGGER; Schema: asset; Owner: evergreen +-- + +CREATE TRIGGER suffix_normalize_tgr BEFORE INSERT OR UPDATE ON call_number_suffix FOR EACH ROW EXECUTE PROCEDURE normalize_affix_sortkey(); + + +SET search_path = authority, pg_catalog; + +-- +-- Name: a_marcxml_is_well_formed; Type: TRIGGER; Schema: authority; Owner: evergreen +-- + +CREATE TRIGGER a_marcxml_is_well_formed BEFORE INSERT OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.check_marcxml_well_formed(); + + +-- +-- Name: aaa_auth_ingest_or_delete; Type: TRIGGER; Schema: authority; Owner: evergreen +-- + +CREATE TRIGGER aaa_auth_ingest_or_delete AFTER INSERT OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE indexing_ingest_or_delete(); + + +-- +-- Name: authority_full_rec_fti_trigger; Type: TRIGGER; Schema: authority; Owner: evergreen +-- + +CREATE TRIGGER authority_full_rec_fti_trigger BEFORE INSERT OR UPDATE ON full_rec FOR EACH ROW EXECUTE PROCEDURE public.oils_tsearch2('keyword'); + + +-- +-- Name: authority_simple_heading_fti_trigger; Type: TRIGGER; Schema: authority; Owner: evergreen +-- + +CREATE TRIGGER authority_simple_heading_fti_trigger BEFORE INSERT OR UPDATE ON simple_heading FOR EACH ROW EXECUTE PROCEDURE public.oils_tsearch2('keyword'); + + +-- +-- Name: b_maintain_901; Type: TRIGGER; Schema: authority; Owner: evergreen +-- + +CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE evergreen.maintain_901(); + + +-- +-- Name: c_maintain_control_numbers; Type: TRIGGER; Schema: authority; Owner: evergreen +-- + +CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE evergreen.maintain_control_numbers(); + + +-- +-- Name: map_thesaurus_to_control_set; Type: TRIGGER; Schema: authority; Owner: evergreen +-- + +CREATE TRIGGER map_thesaurus_to_control_set BEFORE INSERT OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE map_thesaurus_to_control_set(); + + +-- +-- Name: update_headings_tgr; Type: TRIGGER; Schema: authority; Owner: evergreen +-- + +CREATE TRIGGER update_headings_tgr BEFORE INSERT OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE normalize_heading_for_upsert(); + + +SET search_path = biblio, pg_catalog; + +-- +-- Name: a_marcxml_is_well_formed; Type: TRIGGER; Schema: biblio; Owner: evergreen +-- + +CREATE TRIGGER a_marcxml_is_well_formed BEFORE INSERT OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE check_marcxml_well_formed(); + + +-- +-- Name: a_opac_vis_mat_view_tgr; Type: TRIGGER; Schema: biblio; Owner: evergreen +-- + +CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR DELETE ON peer_bib_copy_map FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility(); + + +-- +-- Name: a_opac_vis_mat_view_tgr; Type: TRIGGER; Schema: biblio; Owner: evergreen +-- + +CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility(); + + +-- +-- Name: aaa_indexing_ingest_or_delete; Type: TRIGGER; Schema: biblio; Owner: evergreen +-- + +CREATE TRIGGER aaa_indexing_ingest_or_delete AFTER INSERT OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE indexing_ingest_or_delete(); + + +-- +-- Name: audit_biblio_record_entry_update_trigger; Type: TRIGGER; Schema: biblio; Owner: evergreen +-- + +CREATE TRIGGER audit_biblio_record_entry_update_trigger AFTER DELETE OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE auditor.audit_biblio_record_entry_func(); + + +-- +-- Name: b_maintain_901; Type: TRIGGER; Schema: biblio; Owner: evergreen +-- + +CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE evergreen.maintain_901(); + + +-- +-- Name: bbb_simple_rec_trigger; Type: TRIGGER; Schema: biblio; Owner: evergreen +-- + +CREATE TRIGGER bbb_simple_rec_trigger AFTER INSERT OR DELETE OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE reporter.simple_rec_trigger(); + + +-- +-- Name: c_maintain_control_numbers; Type: TRIGGER; Schema: biblio; Owner: evergreen +-- + +CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE evergreen.maintain_control_numbers(); + + +-- +-- Name: fingerprint_tgr; Type: TRIGGER; Schema: biblio; Owner: evergreen +-- + +CREATE TRIGGER fingerprint_tgr BEFORE INSERT OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE fingerprint_trigger('eng', 'BKS'); + + +-- +-- Name: norm_sort_label; Type: TRIGGER; Schema: biblio; Owner: evergreen +-- + +CREATE TRIGGER norm_sort_label BEFORE INSERT OR UPDATE ON monograph_part FOR EACH ROW EXECUTE PROCEDURE normalize_biblio_monograph_part_sortkey(); + + +SET search_path = booking, pg_catalog; + +-- +-- Name: mat_summary_change_tgr; Type: TRIGGER; Schema: booking; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_change_tgr AFTER UPDATE ON reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_update(); + + +-- +-- Name: mat_summary_create_tgr; Type: TRIGGER; Schema: booking; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create('reservation'); + + +-- +-- Name: mat_summary_remove_tgr; Type: TRIGGER; Schema: booking; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_remove_tgr AFTER DELETE ON reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_delete(); + + +SET search_path = config, pg_catalog; + +-- +-- Name: a_opac_vis_mat_view_tgr; Type: TRIGGER; Schema: config; Owner: evergreen +-- + +CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON copy_status FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility(); + + +-- +-- Name: ccraed_cache_inval_tgr; Type: TRIGGER; Schema: config; Owner: evergreen +-- + +CREATE TRIGGER ccraed_cache_inval_tgr AFTER INSERT OR DELETE OR UPDATE ON composite_attr_entry_definition FOR EACH STATEMENT EXECUTE PROCEDURE metabib.composite_attr_def_cache_inval_tgr(); + + +-- +-- Name: limit_logs_oust; Type: TRIGGER; Schema: config; Owner: evergreen +-- + +CREATE TRIGGER limit_logs_oust BEFORE INSERT OR UPDATE ON org_unit_setting_type_log FOR EACH ROW EXECUTE PROCEDURE evergreen.limit_oustl(); + + +-- +-- Name: no_overlapping_deps; Type: TRIGGER; Schema: config; Owner: evergreen +-- + +CREATE TRIGGER no_overlapping_deps BEFORE INSERT OR UPDATE ON db_patch_dependencies FOR EACH ROW EXECUTE PROCEDURE evergreen.array_overlap_check('deprecates'); + + +-- +-- Name: no_overlapping_sups; Type: TRIGGER; Schema: config; Owner: evergreen +-- + +CREATE TRIGGER no_overlapping_sups BEFORE INSERT OR UPDATE ON db_patch_dependencies FOR EACH ROW EXECUTE PROCEDURE evergreen.array_overlap_check('supersedes'); + + +-- +-- Name: valid_z3950_attr_type; Type: TRIGGER; Schema: config; Owner: evergreen +-- + +CREATE CONSTRAINT TRIGGER valid_z3950_attr_type AFTER INSERT OR UPDATE ON z3950_index_field_map DEFERRABLE INITIALLY DEFERRED FOR EACH ROW WHEN ((new.z3950_attr_type IS NOT NULL)) EXECUTE PROCEDURE evergreen.z3950_attr_name_is_valid(); + + +SET search_path = metabib, pg_catalog; + +-- +-- Name: facet_force_nfc_tgr; Type: TRIGGER; Schema: metabib; Owner: evergreen +-- + +CREATE TRIGGER facet_force_nfc_tgr BEFORE INSERT OR UPDATE ON facet_entry FOR EACH ROW EXECUTE PROCEDURE evergreen.facet_force_nfc(); + + +-- +-- Name: facet_normalize_tgr; Type: TRIGGER; Schema: metabib; Owner: evergreen +-- + +CREATE TRIGGER facet_normalize_tgr BEFORE INSERT OR UPDATE ON facet_entry FOR EACH ROW EXECUTE PROCEDURE facet_normalize_trigger(); + + +-- +-- Name: metabib_author_field_entry_fti_trigger; Type: TRIGGER; Schema: metabib; Owner: evergreen +-- + +CREATE TRIGGER metabib_author_field_entry_fti_trigger BEFORE INSERT OR UPDATE ON author_field_entry FOR EACH ROW EXECUTE PROCEDURE public.oils_tsearch2('author'); + + +-- +-- Name: metabib_browse_entry_fti_trigger; Type: TRIGGER; Schema: metabib; Owner: evergreen +-- + +CREATE TRIGGER metabib_browse_entry_fti_trigger BEFORE INSERT OR UPDATE ON browse_entry FOR EACH ROW EXECUTE PROCEDURE public.oils_tsearch2('keyword'); + + +-- +-- Name: metabib_full_rec_fti_trigger; Type: TRIGGER; Schema: metabib; Owner: evergreen +-- + +CREATE TRIGGER metabib_full_rec_fti_trigger BEFORE INSERT OR UPDATE ON real_full_rec FOR EACH ROW EXECUTE PROCEDURE public.oils_tsearch2('default'); + + +-- +-- Name: metabib_identifier_field_entry_fti_trigger; Type: TRIGGER; Schema: metabib; Owner: evergreen +-- + +CREATE TRIGGER metabib_identifier_field_entry_fti_trigger BEFORE INSERT OR UPDATE ON identifier_field_entry FOR EACH ROW EXECUTE PROCEDURE public.oils_tsearch2('identifier'); + + +-- +-- Name: metabib_keyword_field_entry_fti_trigger; Type: TRIGGER; Schema: metabib; Owner: evergreen +-- + +CREATE TRIGGER metabib_keyword_field_entry_fti_trigger BEFORE INSERT OR UPDATE ON keyword_field_entry FOR EACH ROW EXECUTE PROCEDURE public.oils_tsearch2('keyword'); + + +-- +-- Name: metabib_series_field_entry_fti_trigger; Type: TRIGGER; Schema: metabib; Owner: evergreen +-- + +CREATE TRIGGER metabib_series_field_entry_fti_trigger BEFORE INSERT OR UPDATE ON series_field_entry FOR EACH ROW EXECUTE PROCEDURE public.oils_tsearch2('series'); + + +-- +-- Name: metabib_subject_field_entry_fti_trigger; Type: TRIGGER; Schema: metabib; Owner: evergreen +-- + +CREATE TRIGGER metabib_subject_field_entry_fti_trigger BEFORE INSERT OR UPDATE ON subject_field_entry FOR EACH ROW EXECUTE PROCEDURE public.oils_tsearch2('subject'); + + +-- +-- Name: metabib_title_field_entry_fti_trigger; Type: TRIGGER; Schema: metabib; Owner: evergreen +-- + +CREATE TRIGGER metabib_title_field_entry_fti_trigger BEFORE INSERT OR UPDATE ON title_field_entry FOR EACH ROW EXECUTE PROCEDURE public.oils_tsearch2('title'); + + +SET search_path = money, pg_catalog; + +-- +-- Name: mat_summary_add_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_add_tgr AFTER INSERT ON billing FOR EACH ROW EXECUTE PROCEDURE materialized_summary_billing_add(); + + +-- +-- Name: mat_summary_add_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_add_tgr AFTER INSERT ON payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_add('payment'); + + +-- +-- Name: mat_summary_add_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_add_tgr AFTER INSERT ON bnm_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_add('bnm_payment'); + + +-- +-- Name: mat_summary_add_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_add_tgr AFTER INSERT ON forgive_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_add('forgive_payment'); + + +-- +-- Name: mat_summary_add_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_add_tgr AFTER INSERT ON account_adjustment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_add('account_adjustment'); + + +-- +-- Name: mat_summary_add_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_add_tgr AFTER INSERT ON work_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_add('work_payment'); + + +-- +-- Name: mat_summary_add_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_add_tgr AFTER INSERT ON credit_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_add('credit_payment'); + + +-- +-- Name: mat_summary_add_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_add_tgr AFTER INSERT ON goods_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_add('goods_payment'); + + +-- +-- Name: mat_summary_add_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_add_tgr AFTER INSERT ON bnm_desk_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_add('bnm_desk_payment'); + + +-- +-- Name: mat_summary_add_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_add_tgr AFTER INSERT ON cash_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_add('cash_payment'); + + +-- +-- Name: mat_summary_add_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_add_tgr AFTER INSERT ON check_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_add('check_payment'); + + +-- +-- Name: mat_summary_add_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_add_tgr AFTER INSERT ON credit_card_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_add('credit_card_payment'); + + +-- +-- Name: mat_summary_change_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_change_tgr AFTER UPDATE ON grocery FOR EACH ROW EXECUTE PROCEDURE mat_summary_update(); + + +-- +-- Name: mat_summary_create_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON grocery FOR EACH ROW EXECUTE PROCEDURE mat_summary_create('grocery'); + + +-- +-- Name: mat_summary_del_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_del_tgr BEFORE DELETE ON billing FOR EACH ROW EXECUTE PROCEDURE materialized_summary_billing_del(); + + +-- +-- Name: mat_summary_del_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_del_tgr BEFORE DELETE ON payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_del('payment'); + + +-- +-- Name: mat_summary_del_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_del_tgr BEFORE DELETE ON bnm_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_del('bnm_payment'); + + +-- +-- Name: mat_summary_del_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_del_tgr BEFORE DELETE ON forgive_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_del('forgive_payment'); + + +-- +-- Name: mat_summary_del_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_del_tgr BEFORE DELETE ON account_adjustment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_del('account_adjustment'); + + +-- +-- Name: mat_summary_del_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_del_tgr BEFORE DELETE ON work_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_del('work_payment'); + + +-- +-- Name: mat_summary_del_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_del_tgr BEFORE DELETE ON credit_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_del('credit_payment'); + + +-- +-- Name: mat_summary_del_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_del_tgr BEFORE DELETE ON goods_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_del('goods_payment'); + + +-- +-- Name: mat_summary_del_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_del_tgr BEFORE DELETE ON bnm_desk_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_del('bnm_desk_payment'); + + +-- +-- Name: mat_summary_del_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_del_tgr BEFORE DELETE ON cash_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_del('cash_payment'); + + +-- +-- Name: mat_summary_del_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_del_tgr BEFORE DELETE ON check_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_del('check_payment'); + + +-- +-- Name: mat_summary_del_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_del_tgr BEFORE DELETE ON credit_card_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_del('credit_card_payment'); + + +-- +-- Name: mat_summary_remove_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_remove_tgr AFTER DELETE ON grocery FOR EACH ROW EXECUTE PROCEDURE mat_summary_delete(); + + +-- +-- Name: mat_summary_upd_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_upd_tgr AFTER UPDATE ON billing FOR EACH ROW EXECUTE PROCEDURE materialized_summary_billing_update(); + + +-- +-- Name: mat_summary_upd_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_upd_tgr AFTER UPDATE ON payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_update('payment'); + + +-- +-- Name: mat_summary_upd_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_upd_tgr AFTER UPDATE ON bnm_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_update('bnm_payment'); + + +-- +-- Name: mat_summary_upd_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_upd_tgr AFTER UPDATE ON forgive_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_update('forgive_payment'); + + +-- +-- Name: mat_summary_upd_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_upd_tgr AFTER UPDATE ON account_adjustment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_update('account_adjustment'); + + +-- +-- Name: mat_summary_upd_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_upd_tgr AFTER UPDATE ON work_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_update('work_payment'); + + +-- +-- Name: mat_summary_upd_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_upd_tgr AFTER UPDATE ON credit_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_update('credit_payment'); + + +-- +-- Name: mat_summary_upd_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_upd_tgr AFTER UPDATE ON goods_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_update('goods_payment'); + + +-- +-- Name: mat_summary_upd_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_upd_tgr AFTER UPDATE ON bnm_desk_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_update('bnm_desk_payment'); + + +-- +-- Name: mat_summary_upd_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_upd_tgr AFTER UPDATE ON cash_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_update('cash_payment'); + + +-- +-- Name: mat_summary_upd_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_upd_tgr AFTER UPDATE ON check_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_update('check_payment'); + + +-- +-- Name: mat_summary_upd_tgr; Type: TRIGGER; Schema: money; Owner: evergreen +-- + +CREATE TRIGGER mat_summary_upd_tgr AFTER UPDATE ON credit_card_payment FOR EACH ROW EXECUTE PROCEDURE materialized_summary_payment_update('credit_card_payment'); + + +SET search_path = permission, pg_catalog; + +-- +-- Name: maintain_perm_i18n_tgr; Type: TRIGGER; Schema: permission; Owner: evergreen +-- + +CREATE TRIGGER maintain_perm_i18n_tgr AFTER UPDATE ON perm_list FOR EACH ROW EXECUTE PROCEDURE evergreen.oils_i18n_id_tracking('ppl'); + + +SET search_path = serial, pg_catalog; + +-- +-- Name: a_opac_vis_mat_view_tgr; Type: TRIGGER; Schema: serial; Owner: evergreen +-- + +CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON unit FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility(); + + +-- +-- Name: audit_serial_unit_update_trigger; Type: TRIGGER; Schema: serial; Owner: evergreen +-- + +CREATE TRIGGER audit_serial_unit_update_trigger AFTER DELETE OR UPDATE ON unit FOR EACH ROW EXECUTE PROCEDURE auditor.audit_serial_unit_func(); + + +-- +-- Name: autogenerate_placeholder_barcode; Type: TRIGGER; Schema: serial; Owner: evergreen +-- + +CREATE TRIGGER autogenerate_placeholder_barcode BEFORE INSERT OR UPDATE ON unit FOR EACH ROW EXECUTE PROCEDURE asset.autogenerate_placeholder_barcode(); + + +-- +-- Name: b_maintain_901; Type: TRIGGER; Schema: serial; Owner: evergreen +-- + +CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE evergreen.maintain_901(); + + +-- +-- Name: c_maintain_control_numbers; Type: TRIGGER; Schema: serial; Owner: evergreen +-- + +CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON record_entry FOR EACH ROW EXECUTE PROCEDURE evergreen.maintain_control_numbers(); + + +-- +-- Name: materialize_holding_code; Type: TRIGGER; Schema: serial; Owner: evergreen +-- + +CREATE TRIGGER materialize_holding_code AFTER INSERT OR UPDATE ON issuance FOR EACH ROW EXECUTE PROCEDURE materialize_holding_code(); + + +-- +-- Name: sunit_created_trig; Type: TRIGGER; Schema: serial; Owner: evergreen +-- + +CREATE TRIGGER sunit_created_trig BEFORE INSERT ON unit FOR EACH ROW EXECUTE PROCEDURE asset.acp_created(); + + +-- +-- Name: sunit_status_changed_trig; Type: TRIGGER; Schema: serial; Owner: evergreen +-- + +CREATE TRIGGER sunit_status_changed_trig BEFORE UPDATE ON unit FOR EACH ROW EXECUTE PROCEDURE asset.acp_status_changed(); + + +SET search_path = url_verify, pg_catalog; + +-- +-- Name: ingest_url_tgr; Type: TRIGGER; Schema: url_verify; Owner: evergreen +-- + +CREATE TRIGGER ingest_url_tgr BEFORE INSERT ON url FOR EACH ROW EXECUTE PROCEDURE ingest_url(); + + +SET search_path = vandelay, pg_catalog; + +-- +-- Name: cleanup_authority_trigger; Type: TRIGGER; Schema: vandelay; Owner: evergreen +-- + +CREATE TRIGGER cleanup_authority_trigger BEFORE DELETE OR UPDATE ON queued_authority_record FOR EACH ROW EXECUTE PROCEDURE cleanup_authority_marc(); + + +-- +-- Name: cleanup_bib_trigger; Type: TRIGGER; Schema: vandelay; Owner: evergreen +-- + +CREATE TRIGGER cleanup_bib_trigger BEFORE DELETE OR UPDATE ON queued_bib_record FOR EACH ROW EXECUTE PROCEDURE cleanup_bib_marc(); + + +-- +-- Name: ingest_authority_trigger; Type: TRIGGER; Schema: vandelay; Owner: evergreen +-- + +CREATE TRIGGER ingest_authority_trigger AFTER INSERT OR UPDATE ON queued_authority_record FOR EACH ROW EXECUTE PROCEDURE ingest_authority_marc(); + + +-- +-- Name: ingest_bib_trigger; Type: TRIGGER; Schema: vandelay; Owner: evergreen +-- + +CREATE TRIGGER ingest_bib_trigger AFTER INSERT OR UPDATE ON queued_bib_record FOR EACH ROW EXECUTE PROCEDURE ingest_bib_marc(); + + +-- +-- Name: ingest_item_trigger; Type: TRIGGER; Schema: vandelay; Owner: evergreen +-- + +CREATE TRIGGER ingest_item_trigger AFTER INSERT OR UPDATE ON queued_bib_record FOR EACH ROW EXECUTE PROCEDURE ingest_bib_items(); + + +-- +-- Name: zz_match_auths_trigger; Type: TRIGGER; Schema: vandelay; Owner: evergreen +-- + +CREATE TRIGGER zz_match_auths_trigger BEFORE INSERT OR UPDATE ON queued_authority_record FOR EACH ROW EXECUTE PROCEDURE match_authority_record(); + + +-- +-- Name: zz_match_bibs_trigger; Type: TRIGGER; Schema: vandelay; Owner: evergreen +-- + +CREATE TRIGGER zz_match_bibs_trigger BEFORE INSERT OR UPDATE ON queued_bib_record FOR EACH ROW EXECUTE PROCEDURE match_bib_record(); + + +SET search_path = acq, pg_catalog; + +-- +-- Name: acq_provider_edi_default_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider + ADD CONSTRAINT acq_provider_edi_default_fkey FOREIGN KEY (edi_default) REFERENCES edi_account(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: cancel_reason_org_unit_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY cancel_reason + ADD CONSTRAINT cancel_reason_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: claim_event_claim_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_event + ADD CONSTRAINT claim_event_claim_fkey FOREIGN KEY (claim) REFERENCES claim(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: claim_event_creator_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_event + ADD CONSTRAINT claim_event_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: claim_event_type_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_event + ADD CONSTRAINT claim_event_type_fkey FOREIGN KEY (type) REFERENCES claim_event_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: claim_event_type_org_unit_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_event_type + ADD CONSTRAINT claim_event_type_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: claim_lineitem_detail_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim + ADD CONSTRAINT claim_lineitem_detail_fkey FOREIGN KEY (lineitem_detail) REFERENCES lineitem_detail(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: claim_policy_action_action_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_policy_action + ADD CONSTRAINT claim_policy_action_action_fkey FOREIGN KEY (action) REFERENCES claim_event_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: claim_policy_action_claim_policy_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_policy_action + ADD CONSTRAINT claim_policy_action_claim_policy_fkey FOREIGN KEY (claim_policy) REFERENCES claim_policy(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: claim_policy_org_unit_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_policy + ADD CONSTRAINT claim_policy_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: claim_type_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim + ADD CONSTRAINT claim_type_fkey FOREIGN KEY (type) REFERENCES claim_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: claim_type_org_unit_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY claim_type + ADD CONSTRAINT claim_type_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: debit_attribution_fund_debit_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY debit_attribution + ADD CONSTRAINT debit_attribution_fund_debit_fkey FOREIGN KEY (fund_debit) REFERENCES fund_debit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: debit_attribution_funding_source_credit_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY debit_attribution + ADD CONSTRAINT debit_attribution_funding_source_credit_fkey FOREIGN KEY (funding_source_credit) REFERENCES funding_source_credit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: distribution_formula_application_creator_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula_application + ADD CONSTRAINT distribution_formula_application_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: distribution_formula_application_formula_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula_application + ADD CONSTRAINT distribution_formula_application_formula_fkey FOREIGN KEY (formula) REFERENCES distribution_formula(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: distribution_formula_application_lineitem_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula_application + ADD CONSTRAINT distribution_formula_application_lineitem_fkey FOREIGN KEY (lineitem) REFERENCES lineitem(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: distribution_formula_entry_circ_modifier_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula_entry + ADD CONSTRAINT distribution_formula_entry_circ_modifier_fkey FOREIGN KEY (circ_modifier) REFERENCES config.circ_modifier(code); + + +-- +-- Name: distribution_formula_entry_formula_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula_entry + ADD CONSTRAINT distribution_formula_entry_formula_fkey FOREIGN KEY (formula) REFERENCES distribution_formula(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: distribution_formula_entry_fund_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula_entry + ADD CONSTRAINT distribution_formula_entry_fund_fkey FOREIGN KEY (fund) REFERENCES fund(id); + + +-- +-- Name: distribution_formula_entry_location_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula_entry + ADD CONSTRAINT distribution_formula_entry_location_fkey FOREIGN KEY (location) REFERENCES asset.copy_location(id); + + +-- +-- Name: distribution_formula_entry_owning_lib_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula_entry + ADD CONSTRAINT distribution_formula_entry_owning_lib_fkey FOREIGN KEY (owning_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: distribution_formula_owner_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_formula + ADD CONSTRAINT distribution_formula_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: edi_account_provider_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY edi_account + ADD CONSTRAINT edi_account_provider_fkey FOREIGN KEY (provider) REFERENCES provider(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: edi_message_account_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY edi_message + ADD CONSTRAINT edi_message_account_fkey FOREIGN KEY (account) REFERENCES edi_account(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: edi_message_purchase_order_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY edi_message + ADD CONSTRAINT edi_message_purchase_order_fkey FOREIGN KEY (purchase_order) REFERENCES purchase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: exchange_rate_from_currency_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY exchange_rate + ADD CONSTRAINT exchange_rate_from_currency_fkey FOREIGN KEY (from_currency) REFERENCES currency_type(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: exchange_rate_to_currency_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY exchange_rate + ADD CONSTRAINT exchange_rate_to_currency_fkey FOREIGN KEY (to_currency) REFERENCES currency_type(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fiscal_year_calendar_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fiscal_year + ADD CONSTRAINT fiscal_year_calendar_fkey FOREIGN KEY (calendar) REFERENCES fiscal_calendar(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_allocation_allocator_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_allocation + ADD CONSTRAINT fund_allocation_allocator_fkey FOREIGN KEY (allocator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_allocation_fund_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_allocation + ADD CONSTRAINT fund_allocation_fund_fkey FOREIGN KEY (fund) REFERENCES fund(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_allocation_funding_source_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_allocation + ADD CONSTRAINT fund_allocation_funding_source_fkey FOREIGN KEY (funding_source) REFERENCES funding_source(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_allocation_percent_allocator_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_allocation_percent + ADD CONSTRAINT fund_allocation_percent_allocator_fkey FOREIGN KEY (allocator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_allocation_percent_funding_source_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_allocation_percent + ADD CONSTRAINT fund_allocation_percent_funding_source_fkey FOREIGN KEY (funding_source) REFERENCES funding_source(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_allocation_percent_org_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_allocation_percent + ADD CONSTRAINT fund_allocation_percent_org_fkey FOREIGN KEY (org) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_currency_type_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund + ADD CONSTRAINT fund_currency_type_fkey FOREIGN KEY (currency_type) REFERENCES currency_type(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_debit_fund_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_debit + ADD CONSTRAINT fund_debit_fund_fkey FOREIGN KEY (fund) REFERENCES fund(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_debit_invoice_entry_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_debit + ADD CONSTRAINT fund_debit_invoice_entry_fkey FOREIGN KEY (invoice_entry) REFERENCES invoice_entry(id) ON DELETE SET NULL; + + +-- +-- Name: fund_debit_origin_currency_type_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_debit + ADD CONSTRAINT fund_debit_origin_currency_type_fkey FOREIGN KEY (origin_currency_type) REFERENCES currency_type(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_debit_xfer_destination_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_debit + ADD CONSTRAINT fund_debit_xfer_destination_fkey FOREIGN KEY (xfer_destination) REFERENCES fund(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_org_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund + ADD CONSTRAINT fund_org_fkey FOREIGN KEY (org) REFERENCES actor.org_unit(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_tag_map_fund_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_tag_map + ADD CONSTRAINT fund_tag_map_fund_fkey FOREIGN KEY (fund) REFERENCES fund(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_tag_map_tag_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_tag_map + ADD CONSTRAINT fund_tag_map_tag_fkey FOREIGN KEY (tag) REFERENCES fund_tag(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_tag_owner_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_tag + ADD CONSTRAINT fund_tag_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_transfer_dest_fund_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_transfer + ADD CONSTRAINT fund_transfer_dest_fund_fkey FOREIGN KEY (dest_fund) REFERENCES fund(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_transfer_funding_source_credit_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_transfer + ADD CONSTRAINT fund_transfer_funding_source_credit_fkey FOREIGN KEY (funding_source_credit) REFERENCES funding_source_credit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_transfer_src_fund_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_transfer + ADD CONSTRAINT fund_transfer_src_fund_fkey FOREIGN KEY (src_fund) REFERENCES fund(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fund_transfer_transfer_user_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY fund_transfer + ADD CONSTRAINT fund_transfer_transfer_user_fkey FOREIGN KEY (transfer_user) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: funding_source_credit_funding_source_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY funding_source_credit + ADD CONSTRAINT funding_source_credit_funding_source_fkey FOREIGN KEY (funding_source) REFERENCES funding_source(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: funding_source_currency_type_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY funding_source + ADD CONSTRAINT funding_source_currency_type_fkey FOREIGN KEY (currency_type) REFERENCES currency_type(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: funding_source_owner_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY funding_source + ADD CONSTRAINT funding_source_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: invoice_entry_invoice_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_entry + ADD CONSTRAINT invoice_entry_invoice_fkey FOREIGN KEY (invoice) REFERENCES invoice(id) ON DELETE CASCADE; + + +-- +-- Name: invoice_entry_lineitem_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_entry + ADD CONSTRAINT invoice_entry_lineitem_fkey FOREIGN KEY (lineitem) REFERENCES lineitem(id) ON UPDATE CASCADE ON DELETE SET NULL; + + +-- +-- Name: invoice_entry_purchase_order_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_entry + ADD CONSTRAINT invoice_entry_purchase_order_fkey FOREIGN KEY (purchase_order) REFERENCES purchase_order(id) ON UPDATE CASCADE ON DELETE SET NULL; + + +-- +-- Name: invoice_item_fund_debit_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_item + ADD CONSTRAINT invoice_item_fund_debit_fkey FOREIGN KEY (fund_debit) REFERENCES fund_debit(id); + + +-- +-- Name: invoice_item_fund_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_item + ADD CONSTRAINT invoice_item_fund_fkey FOREIGN KEY (fund) REFERENCES fund(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: invoice_item_inv_item_type_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_item + ADD CONSTRAINT invoice_item_inv_item_type_fkey FOREIGN KEY (inv_item_type) REFERENCES invoice_item_type(code); + + +-- +-- Name: invoice_item_invoice_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_item + ADD CONSTRAINT invoice_item_invoice_fkey FOREIGN KEY (invoice) REFERENCES invoice(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: invoice_item_po_item_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_item + ADD CONSTRAINT invoice_item_po_item_fkey FOREIGN KEY (po_item) REFERENCES po_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: invoice_item_purchase_order_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice_item + ADD CONSTRAINT invoice_item_purchase_order_fkey FOREIGN KEY (purchase_order) REFERENCES purchase_order(id) ON UPDATE CASCADE ON DELETE SET NULL; + + +-- +-- Name: invoice_payment_method_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice + ADD CONSTRAINT invoice_payment_method_fkey FOREIGN KEY (payment_method) REFERENCES invoice_payment_method(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: invoice_provider_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice + ADD CONSTRAINT invoice_provider_fkey FOREIGN KEY (provider) REFERENCES provider(id); + + +-- +-- Name: invoice_receiver_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice + ADD CONSTRAINT invoice_receiver_fkey FOREIGN KEY (receiver) REFERENCES actor.org_unit(id); + + +-- +-- Name: invoice_recv_method_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice + ADD CONSTRAINT invoice_recv_method_fkey FOREIGN KEY (recv_method) REFERENCES invoice_method(code); + + +-- +-- Name: invoice_shipper_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY invoice + ADD CONSTRAINT invoice_shipper_fkey FOREIGN KEY (shipper) REFERENCES provider(id); + + +-- +-- Name: lineitem_alert_text_owning_lib_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_alert_text + ADD CONSTRAINT lineitem_alert_text_owning_lib_fkey FOREIGN KEY (owning_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_attr_lineitem_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_attr + ADD CONSTRAINT lineitem_attr_lineitem_fkey FOREIGN KEY (lineitem) REFERENCES lineitem(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_cancel_reason_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem + ADD CONSTRAINT lineitem_cancel_reason_fkey FOREIGN KEY (cancel_reason) REFERENCES cancel_reason(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_claim_policy_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem + ADD CONSTRAINT lineitem_claim_policy_fkey FOREIGN KEY (claim_policy) REFERENCES claim_policy(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_creator_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem + ADD CONSTRAINT lineitem_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_detail_cancel_reason_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_detail + ADD CONSTRAINT lineitem_detail_cancel_reason_fkey FOREIGN KEY (cancel_reason) REFERENCES cancel_reason(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_detail_circ_modifier_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_detail + ADD CONSTRAINT lineitem_detail_circ_modifier_fkey FOREIGN KEY (circ_modifier) REFERENCES config.circ_modifier(code) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_detail_fund_debit_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_detail + ADD CONSTRAINT lineitem_detail_fund_debit_fkey FOREIGN KEY (fund_debit) REFERENCES fund_debit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_detail_fund_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_detail + ADD CONSTRAINT lineitem_detail_fund_fkey FOREIGN KEY (fund) REFERENCES fund(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_detail_lineitem_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_detail + ADD CONSTRAINT lineitem_detail_lineitem_fkey FOREIGN KEY (lineitem) REFERENCES lineitem(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_detail_location_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_detail + ADD CONSTRAINT lineitem_detail_location_fkey FOREIGN KEY (location) REFERENCES asset.copy_location(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_detail_owning_lib_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_detail + ADD CONSTRAINT lineitem_detail_owning_lib_fkey FOREIGN KEY (owning_lib) REFERENCES actor.org_unit(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_detail_receiver_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_detail + ADD CONSTRAINT lineitem_detail_receiver_fkey FOREIGN KEY (receiver) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_editor_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem + ADD CONSTRAINT lineitem_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_eg_bib_id_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem + ADD CONSTRAINT lineitem_eg_bib_id_fkey FOREIGN KEY (eg_bib_id) REFERENCES biblio.record_entry(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_note_alert_text_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_note + ADD CONSTRAINT lineitem_note_alert_text_fkey FOREIGN KEY (alert_text) REFERENCES lineitem_alert_text(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_note_creator_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_note + ADD CONSTRAINT lineitem_note_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_note_editor_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_note + ADD CONSTRAINT lineitem_note_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_note_lineitem_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_note + ADD CONSTRAINT lineitem_note_lineitem_fkey FOREIGN KEY (lineitem) REFERENCES lineitem(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_picklist_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem + ADD CONSTRAINT lineitem_picklist_fkey FOREIGN KEY (picklist) REFERENCES picklist(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_provider_attr_definition_provider_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_provider_attr_definition + ADD CONSTRAINT lineitem_provider_attr_definition_provider_fkey FOREIGN KEY (provider) REFERENCES provider(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_provider_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem + ADD CONSTRAINT lineitem_provider_fkey FOREIGN KEY (provider) REFERENCES provider(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_purchase_order_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem + ADD CONSTRAINT lineitem_purchase_order_fkey FOREIGN KEY (purchase_order) REFERENCES purchase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_queued_record_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem + ADD CONSTRAINT lineitem_queued_record_fkey FOREIGN KEY (queued_record) REFERENCES vandelay.queued_bib_record(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_selector_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem + ADD CONSTRAINT lineitem_selector_fkey FOREIGN KEY (selector) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: lineitem_usr_attr_definition_usr_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY lineitem_usr_attr_definition + ADD CONSTRAINT lineitem_usr_attr_definition_usr_fkey FOREIGN KEY (usr) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: picklist_creator_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY picklist + ADD CONSTRAINT picklist_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: picklist_editor_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY picklist + ADD CONSTRAINT picklist_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: picklist_org_unit_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY picklist + ADD CONSTRAINT picklist_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: picklist_owner_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY picklist + ADD CONSTRAINT picklist_owner_fkey FOREIGN KEY (owner) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: po_item_fund_debit_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY po_item + ADD CONSTRAINT po_item_fund_debit_fkey FOREIGN KEY (fund_debit) REFERENCES fund_debit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: po_item_fund_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY po_item + ADD CONSTRAINT po_item_fund_fkey FOREIGN KEY (fund) REFERENCES fund(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: po_item_inv_item_type_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY po_item + ADD CONSTRAINT po_item_inv_item_type_fkey FOREIGN KEY (inv_item_type) REFERENCES invoice_item_type(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: po_item_purchase_order_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY po_item + ADD CONSTRAINT po_item_purchase_order_fkey FOREIGN KEY (purchase_order) REFERENCES purchase_order(id) ON UPDATE CASCADE ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: po_note_creator_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY po_note + ADD CONSTRAINT po_note_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: po_note_editor_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY po_note + ADD CONSTRAINT po_note_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: po_note_purchase_order_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY po_note + ADD CONSTRAINT po_note_purchase_order_fkey FOREIGN KEY (purchase_order) REFERENCES purchase_order(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: provider_address_provider_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_address + ADD CONSTRAINT provider_address_provider_fkey FOREIGN KEY (provider) REFERENCES provider(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: provider_contact_address_contact_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_contact_address + ADD CONSTRAINT provider_contact_address_contact_fkey FOREIGN KEY (contact) REFERENCES provider_contact(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: provider_contact_provider_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_contact + ADD CONSTRAINT provider_contact_provider_fkey FOREIGN KEY (provider) REFERENCES provider(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: provider_currency_type_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider + ADD CONSTRAINT provider_currency_type_fkey FOREIGN KEY (currency_type) REFERENCES currency_type(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: provider_default_claim_policy_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider + ADD CONSTRAINT provider_default_claim_policy_fkey FOREIGN KEY (default_claim_policy) REFERENCES claim_policy(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: provider_holding_subfield_map_provider_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_holding_subfield_map + ADD CONSTRAINT provider_holding_subfield_map_provider_fkey FOREIGN KEY (provider) REFERENCES provider(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: provider_note_creator_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_note + ADD CONSTRAINT provider_note_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: provider_note_editor_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_note + ADD CONSTRAINT provider_note_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: provider_note_provider_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider_note + ADD CONSTRAINT provider_note_provider_fkey FOREIGN KEY (provider) REFERENCES provider(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: provider_owner_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY provider + ADD CONSTRAINT provider_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: purchase_order_cancel_reason_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY purchase_order + ADD CONSTRAINT purchase_order_cancel_reason_fkey FOREIGN KEY (cancel_reason) REFERENCES cancel_reason(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: purchase_order_creator_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY purchase_order + ADD CONSTRAINT purchase_order_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: purchase_order_editor_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY purchase_order + ADD CONSTRAINT purchase_order_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: purchase_order_ordering_agency_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY purchase_order + ADD CONSTRAINT purchase_order_ordering_agency_fkey FOREIGN KEY (ordering_agency) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: purchase_order_owner_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY purchase_order + ADD CONSTRAINT purchase_order_owner_fkey FOREIGN KEY (owner) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: purchase_order_provider_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY purchase_order + ADD CONSTRAINT purchase_order_provider_fkey FOREIGN KEY (provider) REFERENCES provider(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: serial_claim_event_claim_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY serial_claim_event + ADD CONSTRAINT serial_claim_event_claim_fkey FOREIGN KEY (claim) REFERENCES serial_claim(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: serial_claim_event_creator_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY serial_claim_event + ADD CONSTRAINT serial_claim_event_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: serial_claim_event_type_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY serial_claim_event + ADD CONSTRAINT serial_claim_event_type_fkey FOREIGN KEY (type) REFERENCES claim_event_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: serial_claim_item_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY serial_claim + ADD CONSTRAINT serial_claim_item_fkey FOREIGN KEY (item) REFERENCES serial.item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: serial_claim_type_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY serial_claim + ADD CONSTRAINT serial_claim_type_fkey FOREIGN KEY (type) REFERENCES claim_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: user_request_cancel_reason_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY user_request + ADD CONSTRAINT user_request_cancel_reason_fkey FOREIGN KEY (cancel_reason) REFERENCES cancel_reason(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: user_request_eg_bib_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY user_request + ADD CONSTRAINT user_request_eg_bib_fkey FOREIGN KEY (eg_bib) REFERENCES biblio.record_entry(id) ON DELETE CASCADE; + + +-- +-- Name: user_request_lineitem_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY user_request + ADD CONSTRAINT user_request_lineitem_fkey FOREIGN KEY (lineitem) REFERENCES lineitem(id) ON DELETE CASCADE; + + +-- +-- Name: user_request_pickup_lib_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY user_request + ADD CONSTRAINT user_request_pickup_lib_fkey FOREIGN KEY (pickup_lib) REFERENCES actor.org_unit(id); + + +-- +-- Name: user_request_request_type_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY user_request + ADD CONSTRAINT user_request_request_type_fkey FOREIGN KEY (request_type) REFERENCES user_request_type(id); + + +-- +-- Name: user_request_usr_fkey; Type: FK CONSTRAINT; Schema: acq; Owner: evergreen +-- + +ALTER TABLE ONLY user_request + ADD CONSTRAINT user_request_usr_fkey FOREIGN KEY (usr) REFERENCES actor.usr(id); + + +SET search_path = action, pg_catalog; + +-- +-- Name: action_circulation_circ_lib_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY circulation + ADD CONSTRAINT action_circulation_circ_lib_fkey FOREIGN KEY (circ_lib) REFERENCES actor.org_unit(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: action_circulation_usr_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY circulation + ADD CONSTRAINT action_circulation_usr_fkey FOREIGN KEY (usr) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: artc_tc_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY reservation_transit_copy + ADD CONSTRAINT artc_tc_fkey FOREIGN KEY (target_copy) REFERENCES booking.resource(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circulation_checkin_workstation_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY circulation + ADD CONSTRAINT circulation_checkin_workstation_fkey FOREIGN KEY (checkin_workstation) REFERENCES actor.workstation(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circulation_copy_location_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY circulation + ADD CONSTRAINT circulation_copy_location_fkey FOREIGN KEY (copy_location) REFERENCES asset.copy_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circulation_limit_group_map_circ_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY circulation_limit_group_map + ADD CONSTRAINT circulation_limit_group_map_circ_fkey FOREIGN KEY (circ) REFERENCES circulation(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circulation_limit_group_map_limit_group_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY circulation_limit_group_map + ADD CONSTRAINT circulation_limit_group_map_limit_group_fkey FOREIGN KEY (limit_group) REFERENCES config.circ_limit_group(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circulation_parent_circ_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY circulation + ADD CONSTRAINT circulation_parent_circ_fkey FOREIGN KEY (parent_circ) REFERENCES circulation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circulation_workstation_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY circulation + ADD CONSTRAINT circulation_workstation_fkey FOREIGN KEY (workstation) REFERENCES actor.workstation(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fieldset_col_val_fieldset_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY fieldset_col_val + ADD CONSTRAINT fieldset_col_val_fieldset_fkey FOREIGN KEY (fieldset) REFERENCES fieldset(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fieldset_owner_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY fieldset + ADD CONSTRAINT fieldset_owner_fkey FOREIGN KEY (owner) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fieldset_owning_lib_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY fieldset + ADD CONSTRAINT fieldset_owning_lib_fkey FOREIGN KEY (owning_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: fieldset_stored_query_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY fieldset + ADD CONSTRAINT fieldset_stored_query_fkey FOREIGN KEY (stored_query) REFERENCES query.stored_query(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_copy_map_hold_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_copy_map + ADD CONSTRAINT hold_copy_map_hold_fkey FOREIGN KEY (hold) REFERENCES hold_request(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_notification_hold_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_notification + ADD CONSTRAINT hold_notification_hold_fkey FOREIGN KEY (hold) REFERENCES hold_request(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_notification_notify_staff_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_notification + ADD CONSTRAINT hold_notification_notify_staff_fkey FOREIGN KEY (notify_staff) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_request_cancel_cause_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request + ADD CONSTRAINT hold_request_cancel_cause_fkey FOREIGN KEY (cancel_cause) REFERENCES hold_request_cancel_cause(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_request_current_shelf_lib_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request + ADD CONSTRAINT hold_request_current_shelf_lib_fkey FOREIGN KEY (current_shelf_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_request_fulfillment_lib_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request + ADD CONSTRAINT hold_request_fulfillment_lib_fkey FOREIGN KEY (fulfillment_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_request_fulfillment_staff_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request + ADD CONSTRAINT hold_request_fulfillment_staff_fkey FOREIGN KEY (fulfillment_staff) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_request_note_hold_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request_note + ADD CONSTRAINT hold_request_note_hold_fkey FOREIGN KEY (hold) REFERENCES hold_request(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_request_pickup_lib_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request + ADD CONSTRAINT hold_request_pickup_lib_fkey FOREIGN KEY (pickup_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_request_request_lib_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request + ADD CONSTRAINT hold_request_request_lib_fkey FOREIGN KEY (request_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_request_requestor_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request + ADD CONSTRAINT hold_request_requestor_fkey FOREIGN KEY (requestor) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_request_sms_carrier_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request + ADD CONSTRAINT hold_request_sms_carrier_fkey FOREIGN KEY (sms_carrier) REFERENCES config.sms_carrier(id); + + +-- +-- Name: hold_request_usr_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_request + ADD CONSTRAINT hold_request_usr_fkey FOREIGN KEY (usr) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_transit_copy_hold_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY hold_transit_copy + ADD CONSTRAINT hold_transit_copy_hold_fkey FOREIGN KEY (hold) REFERENCES hold_request(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: in_house_use_org_unit_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY in_house_use + ADD CONSTRAINT in_house_use_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: in_house_use_staff_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY in_house_use + ADD CONSTRAINT in_house_use_staff_fkey FOREIGN KEY (staff) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: non_cat_in_house_use_item_type_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY non_cat_in_house_use + ADD CONSTRAINT non_cat_in_house_use_item_type_fkey FOREIGN KEY (item_type) REFERENCES config.non_cataloged_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: non_cat_in_house_use_org_unit_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY non_cat_in_house_use + ADD CONSTRAINT non_cat_in_house_use_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: non_cat_in_house_use_staff_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY non_cat_in_house_use + ADD CONSTRAINT non_cat_in_house_use_staff_fkey FOREIGN KEY (staff) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: non_cataloged_circulation_circ_lib_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY non_cataloged_circulation + ADD CONSTRAINT non_cataloged_circulation_circ_lib_fkey FOREIGN KEY (circ_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: non_cataloged_circulation_item_type_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY non_cataloged_circulation + ADD CONSTRAINT non_cataloged_circulation_item_type_fkey FOREIGN KEY (item_type) REFERENCES config.non_cataloged_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: non_cataloged_circulation_patron_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY non_cataloged_circulation + ADD CONSTRAINT non_cataloged_circulation_patron_fkey FOREIGN KEY (patron) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: non_cataloged_circulation_staff_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY non_cataloged_circulation + ADD CONSTRAINT non_cataloged_circulation_staff_fkey FOREIGN KEY (staff) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: reservation_transit_copy_reservation_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY reservation_transit_copy + ADD CONSTRAINT reservation_transit_copy_reservation_fkey FOREIGN KEY (reservation) REFERENCES booking.reservation(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: survey_answer_question_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY survey_answer + ADD CONSTRAINT survey_answer_question_fkey FOREIGN KEY (question) REFERENCES survey_question(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: survey_owner_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY survey + ADD CONSTRAINT survey_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: survey_question_survey_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY survey_question + ADD CONSTRAINT survey_question_survey_fkey FOREIGN KEY (survey) REFERENCES survey(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: survey_response_answer_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY survey_response + ADD CONSTRAINT survey_response_answer_fkey FOREIGN KEY (answer) REFERENCES survey_answer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: survey_response_question_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY survey_response + ADD CONSTRAINT survey_response_question_fkey FOREIGN KEY (question) REFERENCES survey_question(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: survey_response_survey_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY survey_response + ADD CONSTRAINT survey_response_survey_fkey FOREIGN KEY (survey) REFERENCES survey(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: transit_copy_copy_status_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY transit_copy + ADD CONSTRAINT transit_copy_copy_status_fkey FOREIGN KEY (copy_status) REFERENCES config.copy_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: transit_copy_dest_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY transit_copy + ADD CONSTRAINT transit_copy_dest_fkey FOREIGN KEY (dest) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: transit_copy_prev_dest_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY transit_copy + ADD CONSTRAINT transit_copy_prev_dest_fkey FOREIGN KEY (prev_dest) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: transit_copy_prev_hop_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY transit_copy + ADD CONSTRAINT transit_copy_prev_hop_fkey FOREIGN KEY (prev_hop) REFERENCES transit_copy(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: transit_copy_source_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY transit_copy + ADD CONSTRAINT transit_copy_source_fkey FOREIGN KEY (source) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_circ_history_source_circ_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY usr_circ_history + ADD CONSTRAINT usr_circ_history_source_circ_fkey FOREIGN KEY (source_circ) REFERENCES circulation(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_circ_history_usr_fkey; Type: FK CONSTRAINT; Schema: action; Owner: evergreen +-- + +ALTER TABLE ONLY usr_circ_history + ADD CONSTRAINT usr_circ_history_usr_fkey FOREIGN KEY (usr) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +SET search_path = action_trigger, pg_catalog; + +-- +-- Name: environment_collector_fkey; Type: FK CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY environment + ADD CONSTRAINT environment_collector_fkey FOREIGN KEY (collector) REFERENCES collector(module) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: environment_event_def_fkey; Type: FK CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY environment + ADD CONSTRAINT environment_event_def_fkey FOREIGN KEY (event_def) REFERENCES event_definition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: event_async_output_fkey; Type: FK CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event + ADD CONSTRAINT event_async_output_fkey FOREIGN KEY (async_output) REFERENCES event_output(id); + + +-- +-- Name: event_definition_cleanup_failure_fkey; Type: FK CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_definition + ADD CONSTRAINT event_definition_cleanup_failure_fkey FOREIGN KEY (cleanup_failure) REFERENCES cleanup(module) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: event_definition_cleanup_success_fkey; Type: FK CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_definition + ADD CONSTRAINT event_definition_cleanup_success_fkey FOREIGN KEY (cleanup_success) REFERENCES cleanup(module) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: event_definition_hook_fkey; Type: FK CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_definition + ADD CONSTRAINT event_definition_hook_fkey FOREIGN KEY (hook) REFERENCES hook(key) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: event_definition_opt_in_setting_fkey; Type: FK CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_definition + ADD CONSTRAINT event_definition_opt_in_setting_fkey FOREIGN KEY (opt_in_setting) REFERENCES config.usr_setting_type(name) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: event_definition_owner_fkey; Type: FK CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_definition + ADD CONSTRAINT event_definition_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: event_definition_reactor_fkey; Type: FK CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_definition + ADD CONSTRAINT event_definition_reactor_fkey FOREIGN KEY (reactor) REFERENCES reactor(module) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: event_definition_validator_fkey; Type: FK CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_definition + ADD CONSTRAINT event_definition_validator_fkey FOREIGN KEY (validator) REFERENCES validator(module) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: event_error_output_fkey; Type: FK CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event + ADD CONSTRAINT event_error_output_fkey FOREIGN KEY (error_output) REFERENCES event_output(id); + + +-- +-- Name: event_event_def_fkey; Type: FK CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event + ADD CONSTRAINT event_event_def_fkey FOREIGN KEY (event_def) REFERENCES event_definition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: event_params_event_def_fkey; Type: FK CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event_params + ADD CONSTRAINT event_params_event_def_fkey FOREIGN KEY (event_def) REFERENCES event_definition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: event_template_output_fkey; Type: FK CONSTRAINT; Schema: action_trigger; Owner: evergreen +-- + +ALTER TABLE ONLY event + ADD CONSTRAINT event_template_output_fkey FOREIGN KEY (template_output) REFERENCES event_output(id); + + +SET search_path = actor, pg_catalog; + +-- +-- Name: actor_org_unit_billing_address_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit + ADD CONSTRAINT actor_org_unit_billing_address_fkey FOREIGN KEY (billing_address) REFERENCES org_address(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: actor_org_unit_holds_address_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit + ADD CONSTRAINT actor_org_unit_holds_address_fkey FOREIGN KEY (holds_address) REFERENCES org_address(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: actor_org_unit_ill_address_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit + ADD CONSTRAINT actor_org_unit_ill_address_fkey FOREIGN KEY (ill_address) REFERENCES org_address(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: actor_org_unit_mailing_address_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit + ADD CONSTRAINT actor_org_unit_mailing_address_fkey FOREIGN KEY (mailing_address) REFERENCES org_address(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: actor_org_unit_proximity_adjustment_circ_mod_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_proximity_adjustment + ADD CONSTRAINT actor_org_unit_proximity_adjustment_circ_mod_fkey FOREIGN KEY (circ_mod) REFERENCES config.circ_modifier(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: actor_org_unit_proximity_copy_location_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_proximity_adjustment + ADD CONSTRAINT actor_org_unit_proximity_copy_location_fkey FOREIGN KEY (copy_location) REFERENCES asset.copy_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: actor_sceum_sc_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_usr_map + ADD CONSTRAINT actor_sceum_sc_fkey FOREIGN KEY (stat_cat) REFERENCES stat_cat(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: actor_sceum_tu_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_usr_map + ADD CONSTRAINT actor_sceum_tu_fkey FOREIGN KEY (target_usr) REFERENCES usr(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: actor_stat_cat_entry_owner_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry + ADD CONSTRAINT actor_stat_cat_entry_owner_fkey FOREIGN KEY (owner) REFERENCES org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: actor_stat_cat_entry_stat_cat_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry + ADD CONSTRAINT actor_stat_cat_entry_stat_cat_fkey FOREIGN KEY (stat_cat) REFERENCES stat_cat(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: actor_stat_cat_owner_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat + ADD CONSTRAINT actor_stat_cat_owner_fkey FOREIGN KEY (owner) REFERENCES org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: actor_usr_billing_address_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr + ADD CONSTRAINT actor_usr_billing_address_fkey FOREIGN KEY (billing_address) REFERENCES usr_address(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: actor_usr_home_ou_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr + ADD CONSTRAINT actor_usr_home_ou_fkey FOREIGN KEY (home_ou) REFERENCES org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: actor_usr_mailing_address_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr + ADD CONSTRAINT actor_usr_mailing_address_fkey FOREIGN KEY (mailing_address) REFERENCES usr_address(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: actor_usr_profile_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr + ADD CONSTRAINT actor_usr_profile_fkey FOREIGN KEY (profile) REFERENCES permission.grp_tree(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: address_alert_owner_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY address_alert + ADD CONSTRAINT address_alert_owner_fkey FOREIGN KEY (owner) REFERENCES org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: card_usr_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY card + ADD CONSTRAINT card_usr_fkey FOREIGN KEY (usr) REFERENCES usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hours_of_operation_id_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY hours_of_operation + ADD CONSTRAINT hours_of_operation_id_fkey FOREIGN KEY (id) REFERENCES org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: org_address_org_unit_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_address + ADD CONSTRAINT org_address_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: org_lasso_map_lasso_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_lasso_map + ADD CONSTRAINT org_lasso_map_lasso_fkey FOREIGN KEY (lasso) REFERENCES org_lasso(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: org_lasso_map_org_unit_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_lasso_map + ADD CONSTRAINT org_lasso_map_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: org_unit_closed_org_unit_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_closed + ADD CONSTRAINT org_unit_closed_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: org_unit_custom_tree_node_org_unit_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_custom_tree_node + ADD CONSTRAINT org_unit_custom_tree_node_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: org_unit_custom_tree_node_parent_node_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_custom_tree_node + ADD CONSTRAINT org_unit_custom_tree_node_parent_node_fkey FOREIGN KEY (parent_node) REFERENCES org_unit_custom_tree_node(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: org_unit_custom_tree_node_tree_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_custom_tree_node + ADD CONSTRAINT org_unit_custom_tree_node_tree_fkey FOREIGN KEY (tree) REFERENCES org_unit_custom_tree(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: org_unit_fiscal_calendar_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit + ADD CONSTRAINT org_unit_fiscal_calendar_fkey FOREIGN KEY (fiscal_calendar) REFERENCES acq.fiscal_calendar(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: org_unit_ou_type_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit + ADD CONSTRAINT org_unit_ou_type_fkey FOREIGN KEY (ou_type) REFERENCES org_unit_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: org_unit_parent_ou_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit + ADD CONSTRAINT org_unit_parent_ou_fkey FOREIGN KEY (parent_ou) REFERENCES org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: org_unit_proximity_adjustment_hold_pickup_lib_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_proximity_adjustment + ADD CONSTRAINT org_unit_proximity_adjustment_hold_pickup_lib_fkey FOREIGN KEY (hold_pickup_lib) REFERENCES org_unit(id); + + +-- +-- Name: org_unit_proximity_adjustment_hold_request_lib_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_proximity_adjustment + ADD CONSTRAINT org_unit_proximity_adjustment_hold_request_lib_fkey FOREIGN KEY (hold_request_lib) REFERENCES org_unit(id); + + +-- +-- Name: org_unit_proximity_adjustment_item_circ_lib_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_proximity_adjustment + ADD CONSTRAINT org_unit_proximity_adjustment_item_circ_lib_fkey FOREIGN KEY (item_circ_lib) REFERENCES org_unit(id); + + +-- +-- Name: org_unit_proximity_adjustment_item_owning_lib_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_proximity_adjustment + ADD CONSTRAINT org_unit_proximity_adjustment_item_owning_lib_fkey FOREIGN KEY (item_owning_lib) REFERENCES org_unit(id); + + +-- +-- Name: org_unit_setting_name_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_setting + ADD CONSTRAINT org_unit_setting_name_fkey FOREIGN KEY (name) REFERENCES config.org_unit_setting_type(name) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: org_unit_setting_org_unit_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_setting + ADD CONSTRAINT org_unit_setting_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: org_unit_type_parent_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_type + ADD CONSTRAINT org_unit_type_parent_fkey FOREIGN KEY (parent) REFERENCES org_unit_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: passwd_passwd_type_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY passwd + ADD CONSTRAINT passwd_passwd_type_fkey FOREIGN KEY (passwd_type) REFERENCES passwd_type(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: passwd_usr_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY passwd + ADD CONSTRAINT passwd_usr_fkey FOREIGN KEY (usr) REFERENCES usr(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: search_filter_group_entry_grp_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY search_filter_group_entry + ADD CONSTRAINT search_filter_group_entry_grp_fkey FOREIGN KEY (grp) REFERENCES search_filter_group(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: search_filter_group_entry_query_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY search_filter_group_entry + ADD CONSTRAINT search_filter_group_entry_query_fkey FOREIGN KEY (query) REFERENCES search_query(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: search_filter_group_owner_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY search_filter_group + ADD CONSTRAINT search_filter_group_owner_fkey FOREIGN KEY (owner) REFERENCES org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: stat_cat_entry_default_owner_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_default + ADD CONSTRAINT stat_cat_entry_default_owner_fkey FOREIGN KEY (owner) REFERENCES org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: stat_cat_entry_default_stat_cat_entry_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_default + ADD CONSTRAINT stat_cat_entry_default_stat_cat_entry_fkey FOREIGN KEY (stat_cat_entry) REFERENCES stat_cat_entry(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: stat_cat_entry_default_stat_cat_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_default + ADD CONSTRAINT stat_cat_entry_default_stat_cat_fkey FOREIGN KEY (stat_cat) REFERENCES stat_cat(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: stat_cat_sip_field_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat + ADD CONSTRAINT stat_cat_sip_field_fkey FOREIGN KEY (sip_field) REFERENCES stat_cat_sip_fields(field) ON UPDATE CASCADE ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: toolbar_org_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY toolbar + ADD CONSTRAINT toolbar_org_fkey FOREIGN KEY (org) REFERENCES org_unit(id) ON DELETE CASCADE; + + +-- +-- Name: toolbar_usr_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY toolbar + ADD CONSTRAINT toolbar_usr_fkey FOREIGN KEY (usr) REFERENCES usr(id) ON DELETE CASCADE; + + +-- +-- Name: toolbar_ws_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY toolbar + ADD CONSTRAINT toolbar_ws_fkey FOREIGN KEY (ws) REFERENCES workstation(id) ON DELETE CASCADE; + + +-- +-- Name: usr_activity_etype_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_activity + ADD CONSTRAINT usr_activity_etype_fkey FOREIGN KEY (etype) REFERENCES config.usr_activity_type(id); + + +-- +-- Name: usr_activity_usr_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_activity + ADD CONSTRAINT usr_activity_usr_fkey FOREIGN KEY (usr) REFERENCES usr(id) ON DELETE SET NULL; + + +-- +-- Name: usr_address_replaces_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_address + ADD CONSTRAINT usr_address_replaces_fkey FOREIGN KEY (replaces) REFERENCES usr_address(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_address_usr_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_address + ADD CONSTRAINT usr_address_usr_fkey FOREIGN KEY (usr) REFERENCES usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_ident_type2_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr + ADD CONSTRAINT usr_ident_type2_fkey FOREIGN KEY (ident_type2) REFERENCES config.identification_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_ident_type_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr + ADD CONSTRAINT usr_ident_type_fkey FOREIGN KEY (ident_type) REFERENCES config.identification_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_message_sending_lib_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_message + ADD CONSTRAINT usr_message_sending_lib_fkey FOREIGN KEY (sending_lib) REFERENCES org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_message_usr_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_message + ADD CONSTRAINT usr_message_usr_fkey FOREIGN KEY (usr) REFERENCES usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_net_access_level_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr + ADD CONSTRAINT usr_net_access_level_fkey FOREIGN KEY (net_access_level) REFERENCES config.net_access_level(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_note_creator_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_note + ADD CONSTRAINT usr_note_creator_fkey FOREIGN KEY (creator) REFERENCES usr(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_note_usr_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_note + ADD CONSTRAINT usr_note_usr_fkey FOREIGN KEY (usr) REFERENCES usr(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_org_unit_opt_in_opt_in_ws_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_org_unit_opt_in + ADD CONSTRAINT usr_org_unit_opt_in_opt_in_ws_fkey FOREIGN KEY (opt_in_ws) REFERENCES workstation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_org_unit_opt_in_org_unit_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_org_unit_opt_in + ADD CONSTRAINT usr_org_unit_opt_in_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_org_unit_opt_in_staff_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_org_unit_opt_in + ADD CONSTRAINT usr_org_unit_opt_in_staff_fkey FOREIGN KEY (staff) REFERENCES usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_org_unit_opt_in_usr_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_org_unit_opt_in + ADD CONSTRAINT usr_org_unit_opt_in_usr_fkey FOREIGN KEY (usr) REFERENCES usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_password_reset_usr_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_password_reset + ADD CONSTRAINT usr_password_reset_usr_fkey FOREIGN KEY (usr) REFERENCES usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_saved_search_owner_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_saved_search + ADD CONSTRAINT usr_saved_search_owner_fkey FOREIGN KEY (owner) REFERENCES usr(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_setting_name_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_setting + ADD CONSTRAINT usr_setting_name_fkey FOREIGN KEY (name) REFERENCES config.usr_setting_type(name) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_setting_usr_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_setting + ADD CONSTRAINT usr_setting_usr_fkey FOREIGN KEY (usr) REFERENCES usr(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_standing_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr + ADD CONSTRAINT usr_standing_fkey FOREIGN KEY (standing) REFERENCES config.standing(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_standing_penalty_org_unit_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_standing_penalty + ADD CONSTRAINT usr_standing_penalty_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_standing_penalty_staff_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_standing_penalty + ADD CONSTRAINT usr_standing_penalty_staff_fkey FOREIGN KEY (staff) REFERENCES usr(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_standing_penalty_standing_penalty_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_standing_penalty + ADD CONSTRAINT usr_standing_penalty_standing_penalty_fkey FOREIGN KEY (standing_penalty) REFERENCES config.standing_penalty(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_standing_penalty_usr_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY usr_standing_penalty + ADD CONSTRAINT usr_standing_penalty_usr_fkey FOREIGN KEY (usr) REFERENCES usr(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: workstation_owning_lib_fkey; Type: FK CONSTRAINT; Schema: actor; Owner: evergreen +-- + +ALTER TABLE ONLY workstation + ADD CONSTRAINT workstation_owning_lib_fkey FOREIGN KEY (owning_lib) REFERENCES org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +SET search_path = asset, pg_catalog; + +-- +-- Name: a_sc_owner_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat + ADD CONSTRAINT a_sc_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: a_sc_sc_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_copy_map + ADD CONSTRAINT a_sc_sc_fkey FOREIGN KEY (stat_cat) REFERENCES stat_cat(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: a_sc_sce_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry_copy_map + ADD CONSTRAINT a_sc_sce_fkey FOREIGN KEY (stat_cat_entry) REFERENCES stat_cat_entry(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: a_sce_owner_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry + ADD CONSTRAINT a_sce_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: a_sce_sc_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat_entry + ADD CONSTRAINT a_sce_sc_fkey FOREIGN KEY (stat_cat) REFERENCES stat_cat(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: asset_call_number_creator_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number + ADD CONSTRAINT asset_call_number_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: asset_call_number_editor_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number + ADD CONSTRAINT asset_call_number_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: asset_call_number_note_creator_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_note + ADD CONSTRAINT asset_call_number_note_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: asset_call_number_note_record_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_note + ADD CONSTRAINT asset_call_number_note_record_fkey FOREIGN KEY (call_number) REFERENCES call_number(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: asset_call_number_owning_lib_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number + ADD CONSTRAINT asset_call_number_owning_lib_fkey FOREIGN KEY (owning_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: asset_call_number_record_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number + ADD CONSTRAINT asset_call_number_record_fkey FOREIGN KEY (record) REFERENCES biblio.record_entry(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: asset_copy_call_number_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy + ADD CONSTRAINT asset_copy_call_number_fkey FOREIGN KEY (call_number) REFERENCES call_number(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: asset_copy_creator_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy + ADD CONSTRAINT asset_copy_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: asset_copy_editor_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy + ADD CONSTRAINT asset_copy_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: asset_copy_floating_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy + ADD CONSTRAINT asset_copy_floating_fkey FOREIGN KEY (floating) REFERENCES config.floating_group(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: asset_copy_note_copy_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_note + ADD CONSTRAINT asset_copy_note_copy_fkey FOREIGN KEY (owning_copy) REFERENCES copy(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: asset_copy_note_creator_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_note + ADD CONSTRAINT asset_copy_note_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: asset_copy_template_floating_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_template + ADD CONSTRAINT asset_copy_template_floating_fkey FOREIGN KEY (floating) REFERENCES config.floating_group(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: call_number_label_class_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number + ADD CONSTRAINT call_number_label_class_fkey FOREIGN KEY (label_class) REFERENCES call_number_class(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: call_number_prefix_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number + ADD CONSTRAINT call_number_prefix_fkey FOREIGN KEY (prefix) REFERENCES call_number_prefix(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: call_number_prefix_owning_lib_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_prefix + ADD CONSTRAINT call_number_prefix_owning_lib_fkey FOREIGN KEY (owning_lib) REFERENCES actor.org_unit(id); + + +-- +-- Name: call_number_suffix_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number + ADD CONSTRAINT call_number_suffix_fkey FOREIGN KEY (suffix) REFERENCES call_number_suffix(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: call_number_suffix_owning_lib_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_suffix + ADD CONSTRAINT call_number_suffix_owning_lib_fkey FOREIGN KEY (owning_lib) REFERENCES actor.org_unit(id); + + +-- +-- Name: circ_mod_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy + ADD CONSTRAINT circ_mod_fkey FOREIGN KEY (circ_modifier) REFERENCES config.circ_modifier(code) ON UPDATE CASCADE ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_circ_lib_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy + ADD CONSTRAINT copy_circ_lib_fkey FOREIGN KEY (circ_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_location_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy + ADD CONSTRAINT copy_location_fkey FOREIGN KEY (location) REFERENCES copy_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_location_group_map_lgroup_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location_group_map + ADD CONSTRAINT copy_location_group_map_lgroup_fkey FOREIGN KEY (lgroup) REFERENCES copy_location_group(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_location_group_map_location_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location_group_map + ADD CONSTRAINT copy_location_group_map_location_fkey FOREIGN KEY (location) REFERENCES copy_location(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_location_group_owner_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location_group + ADD CONSTRAINT copy_location_group_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_location_order_location_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location_order + ADD CONSTRAINT copy_location_order_location_fkey FOREIGN KEY (location) REFERENCES copy_location(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_location_order_org_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location_order + ADD CONSTRAINT copy_location_order_org_fkey FOREIGN KEY (org) REFERENCES actor.org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_location_owning_lib_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_location + ADD CONSTRAINT copy_location_owning_lib_fkey FOREIGN KEY (owning_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_part_map_part_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_part_map + ADD CONSTRAINT copy_part_map_part_fkey FOREIGN KEY (part) REFERENCES biblio.monograph_part(id) ON DELETE CASCADE; + + +-- +-- Name: copy_status_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy + ADD CONSTRAINT copy_status_fkey FOREIGN KEY (status) REFERENCES config.copy_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_template_circ_lib_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_template + ADD CONSTRAINT copy_template_circ_lib_fkey FOREIGN KEY (circ_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_template_creator_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_template + ADD CONSTRAINT copy_template_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_template_editor_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_template + ADD CONSTRAINT copy_template_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_template_location_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_template + ADD CONSTRAINT copy_template_location_fkey FOREIGN KEY (location) REFERENCES copy_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_template_owning_lib_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_template + ADD CONSTRAINT copy_template_owning_lib_fkey FOREIGN KEY (owning_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_template_status_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY copy_template + ADD CONSTRAINT copy_template_status_fkey FOREIGN KEY (status) REFERENCES config.copy_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: stat_cat_sip_field_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY stat_cat + ADD CONSTRAINT stat_cat_sip_field_fkey FOREIGN KEY (sip_field) REFERENCES stat_cat_sip_fields(field) ON UPDATE CASCADE ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: uri_call_number_map_call_number_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY uri_call_number_map + ADD CONSTRAINT uri_call_number_map_call_number_fkey FOREIGN KEY (call_number) REFERENCES call_number(id); + + +-- +-- Name: uri_call_number_map_uri_fkey; Type: FK CONSTRAINT; Schema: asset; Owner: evergreen +-- + +ALTER TABLE ONLY uri_call_number_map + ADD CONSTRAINT uri_call_number_map_uri_fkey FOREIGN KEY (uri) REFERENCES uri(id); + + +SET search_path = authority, pg_catalog; + +-- +-- Name: authority_linking_field_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY authority_linking + ADD CONSTRAINT authority_linking_field_fkey FOREIGN KEY (field) REFERENCES control_set_authority_field(id); + + +-- +-- Name: authority_linking_source_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY authority_linking + ADD CONSTRAINT authority_linking_source_fkey FOREIGN KEY (source) REFERENCES record_entry(id); + + +-- +-- Name: authority_linking_target_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY authority_linking + ADD CONSTRAINT authority_linking_target_fkey FOREIGN KEY (target) REFERENCES record_entry(id); + + +-- +-- Name: bib_linking_authority_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY bib_linking + ADD CONSTRAINT bib_linking_authority_fkey FOREIGN KEY (authority) REFERENCES record_entry(id); + + +-- +-- Name: bib_linking_bib_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY bib_linking + ADD CONSTRAINT bib_linking_bib_fkey FOREIGN KEY (bib) REFERENCES biblio.record_entry(id); + + +-- +-- Name: browse_axis_authority_field_map_axis_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY browse_axis_authority_field_map + ADD CONSTRAINT browse_axis_authority_field_map_axis_fkey FOREIGN KEY (axis) REFERENCES browse_axis(code) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: browse_axis_authority_field_map_field_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY browse_axis_authority_field_map + ADD CONSTRAINT browse_axis_authority_field_map_field_fkey FOREIGN KEY (field) REFERENCES control_set_authority_field(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: browse_axis_sorter_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY browse_axis + ADD CONSTRAINT browse_axis_sorter_fkey FOREIGN KEY (sorter) REFERENCES config.record_attr_definition(name) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: control_set_authority_field_control_set_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY control_set_authority_field + ADD CONSTRAINT control_set_authority_field_control_set_fkey FOREIGN KEY (control_set) REFERENCES control_set(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: control_set_authority_field_main_entry_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY control_set_authority_field + ADD CONSTRAINT control_set_authority_field_main_entry_fkey FOREIGN KEY (main_entry) REFERENCES control_set_authority_field(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: control_set_bib_field_authority_field_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY control_set_bib_field + ADD CONSTRAINT control_set_bib_field_authority_field_fkey FOREIGN KEY (authority_field) REFERENCES control_set_authority_field(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: control_set_bib_field_metabib_field_map_bib_field_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY control_set_bib_field_metabib_field_map + ADD CONSTRAINT control_set_bib_field_metabib_field_map_bib_field_fkey FOREIGN KEY (bib_field) REFERENCES control_set_bib_field(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: control_set_bib_field_metabib_field_map_metabib_field_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY control_set_bib_field_metabib_field_map + ADD CONSTRAINT control_set_bib_field_metabib_field_map_metabib_field_fkey FOREIGN KEY (metabib_field) REFERENCES config.metabib_field(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: record_entry_control_set_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY record_entry + ADD CONSTRAINT record_entry_control_set_fkey FOREIGN KEY (control_set) REFERENCES control_set(id) ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: record_note_record_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY record_note + ADD CONSTRAINT record_note_record_fkey FOREIGN KEY (record) REFERENCES record_entry(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: simple_heading_atag_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY simple_heading + ADD CONSTRAINT simple_heading_atag_fkey FOREIGN KEY (atag) REFERENCES control_set_authority_field(id); + + +-- +-- Name: simple_heading_record_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY simple_heading + ADD CONSTRAINT simple_heading_record_fkey FOREIGN KEY (record) REFERENCES record_entry(id); + + +-- +-- Name: thesaurus_control_set_fkey; Type: FK CONSTRAINT; Schema: authority; Owner: evergreen +-- + +ALTER TABLE ONLY thesaurus + ADD CONSTRAINT thesaurus_control_set_fkey FOREIGN KEY (control_set) REFERENCES control_set(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +SET search_path = biblio, pg_catalog; + +-- +-- Name: biblio_record_entry_creator_fkey; Type: FK CONSTRAINT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY record_entry + ADD CONSTRAINT biblio_record_entry_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: biblio_record_entry_editor_fkey; Type: FK CONSTRAINT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY record_entry + ADD CONSTRAINT biblio_record_entry_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: biblio_record_entry_owner_fkey; Type: FK CONSTRAINT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY record_entry + ADD CONSTRAINT biblio_record_entry_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: biblio_record_note_creator_fkey; Type: FK CONSTRAINT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY record_note + ADD CONSTRAINT biblio_record_note_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: biblio_record_note_editor_fkey; Type: FK CONSTRAINT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY record_note + ADD CONSTRAINT biblio_record_note_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: biblio_record_note_record_fkey; Type: FK CONSTRAINT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY record_note + ADD CONSTRAINT biblio_record_note_record_fkey FOREIGN KEY (record) REFERENCES record_entry(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: monograph_part_record_fkey; Type: FK CONSTRAINT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY monograph_part + ADD CONSTRAINT monograph_part_record_fkey FOREIGN KEY (record) REFERENCES record_entry(id); + + +-- +-- Name: peer_bib_copy_map_peer_record_fkey; Type: FK CONSTRAINT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY peer_bib_copy_map + ADD CONSTRAINT peer_bib_copy_map_peer_record_fkey FOREIGN KEY (peer_record) REFERENCES record_entry(id); + + +-- +-- Name: peer_bib_copy_map_peer_type_fkey; Type: FK CONSTRAINT; Schema: biblio; Owner: evergreen +-- + +ALTER TABLE ONLY peer_bib_copy_map + ADD CONSTRAINT peer_bib_copy_map_peer_type_fkey FOREIGN KEY (peer_type) REFERENCES peer_type(id); + + +SET search_path = booking, pg_catalog; + +-- +-- Name: booking_reservation_usr_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY reservation + ADD CONSTRAINT booking_reservation_usr_fkey FOREIGN KEY (usr) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: reservation_attr_value_map_attr_value_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY reservation_attr_value_map + ADD CONSTRAINT reservation_attr_value_map_attr_value_fkey FOREIGN KEY (attr_value) REFERENCES resource_attr_value(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: reservation_attr_value_map_reservation_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY reservation_attr_value_map + ADD CONSTRAINT reservation_attr_value_map_reservation_fkey FOREIGN KEY (reservation) REFERENCES reservation(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: reservation_capture_staff_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY reservation + ADD CONSTRAINT reservation_capture_staff_fkey FOREIGN KEY (capture_staff) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: reservation_current_resource_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY reservation + ADD CONSTRAINT reservation_current_resource_fkey FOREIGN KEY (current_resource) REFERENCES resource(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: reservation_pickup_lib_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY reservation + ADD CONSTRAINT reservation_pickup_lib_fkey FOREIGN KEY (pickup_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: reservation_request_lib_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY reservation + ADD CONSTRAINT reservation_request_lib_fkey FOREIGN KEY (request_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: reservation_target_resource_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY reservation + ADD CONSTRAINT reservation_target_resource_fkey FOREIGN KEY (target_resource) REFERENCES resource(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: reservation_target_resource_type_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY reservation + ADD CONSTRAINT reservation_target_resource_type_fkey FOREIGN KEY (target_resource_type) REFERENCES resource_type(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: resource_attr_map_resource_attr_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr_map + ADD CONSTRAINT resource_attr_map_resource_attr_fkey FOREIGN KEY (resource_attr) REFERENCES resource_attr(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: resource_attr_map_resource_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr_map + ADD CONSTRAINT resource_attr_map_resource_fkey FOREIGN KEY (resource) REFERENCES resource(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: resource_attr_map_value_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr_map + ADD CONSTRAINT resource_attr_map_value_fkey FOREIGN KEY (value) REFERENCES resource_attr_value(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: resource_attr_owner_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr + ADD CONSTRAINT resource_attr_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: resource_attr_resource_type_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr + ADD CONSTRAINT resource_attr_resource_type_fkey FOREIGN KEY (resource_type) REFERENCES resource_type(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: resource_attr_value_attr_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr_value + ADD CONSTRAINT resource_attr_value_attr_fkey FOREIGN KEY (attr) REFERENCES resource_attr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: resource_attr_value_owner_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_attr_value + ADD CONSTRAINT resource_attr_value_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: resource_owner_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource + ADD CONSTRAINT resource_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: resource_type_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource + ADD CONSTRAINT resource_type_fkey FOREIGN KEY (type) REFERENCES resource_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: resource_type_owner_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_type + ADD CONSTRAINT resource_type_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: resource_type_record_fkey; Type: FK CONSTRAINT; Schema: booking; Owner: evergreen +-- + +ALTER TABLE ONLY resource_type + ADD CONSTRAINT resource_type_record_fkey FOREIGN KEY (record) REFERENCES biblio.record_entry(id) DEFERRABLE INITIALLY DEFERRED; + + +SET search_path = config, pg_catalog; + +-- +-- Name: circ_limit_set_circ_mod_map_circ_mod_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set_circ_mod_map + ADD CONSTRAINT circ_limit_set_circ_mod_map_circ_mod_fkey FOREIGN KEY (circ_mod) REFERENCES circ_modifier(code) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_limit_set_circ_mod_map_limit_set_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set_circ_mod_map + ADD CONSTRAINT circ_limit_set_circ_mod_map_limit_set_fkey FOREIGN KEY (limit_set) REFERENCES circ_limit_set(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_limit_set_copy_loc_map_copy_loc_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set_copy_loc_map + ADD CONSTRAINT circ_limit_set_copy_loc_map_copy_loc_fkey FOREIGN KEY (copy_loc) REFERENCES asset.copy_location(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_limit_set_copy_loc_map_limit_set_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set_copy_loc_map + ADD CONSTRAINT circ_limit_set_copy_loc_map_limit_set_fkey FOREIGN KEY (limit_set) REFERENCES circ_limit_set(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_limit_set_group_map_limit_group_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set_group_map + ADD CONSTRAINT circ_limit_set_group_map_limit_group_fkey FOREIGN KEY (limit_group) REFERENCES circ_limit_group(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_limit_set_group_map_limit_set_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set_group_map + ADD CONSTRAINT circ_limit_set_group_map_limit_set_fkey FOREIGN KEY (limit_set) REFERENCES circ_limit_set(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_limit_set_owning_lib_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_limit_set + ADD CONSTRAINT circ_limit_set_owning_lib_fkey FOREIGN KEY (owning_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_matrix_limit_set_map_limit_set_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_limit_set_map + ADD CONSTRAINT circ_matrix_limit_set_map_limit_set_fkey FOREIGN KEY (limit_set) REFERENCES circ_limit_set(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_matrix_limit_set_map_matchpoint_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_limit_set_map + ADD CONSTRAINT circ_matrix_limit_set_map_matchpoint_fkey FOREIGN KEY (matchpoint) REFERENCES circ_matrix_matchpoint(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_matrix_matchpoint_circ_modifier_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_matchpoint + ADD CONSTRAINT circ_matrix_matchpoint_circ_modifier_fkey FOREIGN KEY (circ_modifier) REFERENCES circ_modifier(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_matrix_matchpoint_copy_circ_lib_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_matchpoint + ADD CONSTRAINT circ_matrix_matchpoint_copy_circ_lib_fkey FOREIGN KEY (copy_circ_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_matrix_matchpoint_copy_location_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_matchpoint + ADD CONSTRAINT circ_matrix_matchpoint_copy_location_fkey FOREIGN KEY (copy_location) REFERENCES asset.copy_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_matrix_matchpoint_copy_owning_lib_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_matchpoint + ADD CONSTRAINT circ_matrix_matchpoint_copy_owning_lib_fkey FOREIGN KEY (copy_owning_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_matrix_matchpoint_duration_rule_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_matchpoint + ADD CONSTRAINT circ_matrix_matchpoint_duration_rule_fkey FOREIGN KEY (duration_rule) REFERENCES rule_circ_duration(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_matrix_matchpoint_grp_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_matchpoint + ADD CONSTRAINT circ_matrix_matchpoint_grp_fkey FOREIGN KEY (grp) REFERENCES permission.grp_tree(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_matrix_matchpoint_hard_due_date_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_matchpoint + ADD CONSTRAINT circ_matrix_matchpoint_hard_due_date_fkey FOREIGN KEY (hard_due_date) REFERENCES hard_due_date(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_matrix_matchpoint_max_fine_rule_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_matchpoint + ADD CONSTRAINT circ_matrix_matchpoint_max_fine_rule_fkey FOREIGN KEY (max_fine_rule) REFERENCES rule_max_fine(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_matrix_matchpoint_org_unit_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_matchpoint + ADD CONSTRAINT circ_matrix_matchpoint_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_matrix_matchpoint_recurring_fine_rule_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_matchpoint + ADD CONSTRAINT circ_matrix_matchpoint_recurring_fine_rule_fkey FOREIGN KEY (recurring_fine_rule) REFERENCES rule_recurring_fine(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circ_matrix_matchpoint_user_home_ou_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY circ_matrix_matchpoint + ADD CONSTRAINT circ_matrix_matchpoint_user_home_ou_fkey FOREIGN KEY (user_home_ou) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: coded_value_map_ctype_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY coded_value_map + ADD CONSTRAINT coded_value_map_ctype_fkey FOREIGN KEY (ctype) REFERENCES record_attr_definition(name) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: composite_attr_entry_definition_coded_value_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY composite_attr_entry_definition + ADD CONSTRAINT composite_attr_entry_definition_coded_value_fkey FOREIGN KEY (coded_value) REFERENCES coded_value_map(id) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: config_barcode_completion_org_unit_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY barcode_completion + ADD CONSTRAINT config_barcode_completion_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES actor.org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: config_billing_type_owner_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY billing_type + ADD CONSTRAINT config_billing_type_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: config_filter_dialog_filter_set_creator_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY filter_dialog_filter_set + ADD CONSTRAINT config_filter_dialog_filter_set_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: config_filter_dialog_filter_set_owning_lib_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY filter_dialog_filter_set + ADD CONSTRAINT config_filter_dialog_filter_set_owning_lib_fkey FOREIGN KEY (owning_lib) REFERENCES actor.org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: config_marc_field_owner_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc_field + ADD CONSTRAINT config_marc_field_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: config_marc_subfield_owner_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc_subfield + ADD CONSTRAINT config_marc_subfield_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: config_org_unit_setting_type_log_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_setting_type_log + ADD CONSTRAINT config_org_unit_setting_type_log_fkey FOREIGN KEY (org) REFERENCES actor.org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: config_remote_account_owner_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY remote_account + ADD CONSTRAINT config_remote_account_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: filter_dialog_filter_set_interface_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY filter_dialog_filter_set + ADD CONSTRAINT filter_dialog_filter_set_interface_fkey FOREIGN KEY (interface) REFERENCES filter_dialog_interface(key) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: floating_group_member_floating_group_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY floating_group_member + ADD CONSTRAINT floating_group_member_floating_group_fkey FOREIGN KEY (floating_group) REFERENCES floating_group(id); + + +-- +-- Name: floating_group_member_org_unit_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY floating_group_member + ADD CONSTRAINT floating_group_member_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES actor.org_unit(id); + + +-- +-- Name: hard_due_date_values_hard_due_date_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hard_due_date_values + ADD CONSTRAINT hard_due_date_values_hard_due_date_fkey FOREIGN KEY (hard_due_date) REFERENCES hard_due_date(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_matrix_matchpoint_age_hold_protect_rule_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hold_matrix_matchpoint + ADD CONSTRAINT hold_matrix_matchpoint_age_hold_protect_rule_fkey FOREIGN KEY (age_hold_protect_rule) REFERENCES rule_age_hold_protect(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_matrix_matchpoint_circ_modifier_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hold_matrix_matchpoint + ADD CONSTRAINT hold_matrix_matchpoint_circ_modifier_fkey FOREIGN KEY (circ_modifier) REFERENCES circ_modifier(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_matrix_matchpoint_item_circ_ou_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hold_matrix_matchpoint + ADD CONSTRAINT hold_matrix_matchpoint_item_circ_ou_fkey FOREIGN KEY (item_circ_ou) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_matrix_matchpoint_item_owning_ou_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hold_matrix_matchpoint + ADD CONSTRAINT hold_matrix_matchpoint_item_owning_ou_fkey FOREIGN KEY (item_owning_ou) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_matrix_matchpoint_pickup_ou_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hold_matrix_matchpoint + ADD CONSTRAINT hold_matrix_matchpoint_pickup_ou_fkey FOREIGN KEY (pickup_ou) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_matrix_matchpoint_request_ou_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hold_matrix_matchpoint + ADD CONSTRAINT hold_matrix_matchpoint_request_ou_fkey FOREIGN KEY (request_ou) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_matrix_matchpoint_requestor_grp_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hold_matrix_matchpoint + ADD CONSTRAINT hold_matrix_matchpoint_requestor_grp_fkey FOREIGN KEY (requestor_grp) REFERENCES permission.grp_tree(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_matrix_matchpoint_transit_range_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hold_matrix_matchpoint + ADD CONSTRAINT hold_matrix_matchpoint_transit_range_fkey FOREIGN KEY (transit_range) REFERENCES actor.org_unit_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_matrix_matchpoint_user_home_ou_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hold_matrix_matchpoint + ADD CONSTRAINT hold_matrix_matchpoint_user_home_ou_fkey FOREIGN KEY (user_home_ou) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: hold_matrix_matchpoint_usr_grp_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY hold_matrix_matchpoint + ADD CONSTRAINT hold_matrix_matchpoint_usr_grp_fkey FOREIGN KEY (usr_grp) REFERENCES permission.grp_tree(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: i18n_core_translation_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY i18n_core + ADD CONSTRAINT i18n_core_translation_fkey FOREIGN KEY (translation) REFERENCES i18n_locale(code) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: idl_field_doc_owner_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY idl_field_doc + ADD CONSTRAINT idl_field_doc_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: marc21_physical_characteristic_subfield_map_ptype_key_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc21_physical_characteristic_subfield_map + ADD CONSTRAINT marc21_physical_characteristic_subfield_map_ptype_key_fkey FOREIGN KEY (ptype_key) REFERENCES marc21_physical_characteristic_type_map(ptype_key) ON UPDATE CASCADE ON DELETE CASCADE; + + +-- +-- Name: marc21_physical_characteristic_value_map_ptype_subfield_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc21_physical_characteristic_value_map + ADD CONSTRAINT marc21_physical_characteristic_value_map_ptype_subfield_fkey FOREIGN KEY (ptype_subfield) REFERENCES marc21_physical_characteristic_subfield_map(id); + + +-- +-- Name: marc_field_marc_format_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc_field + ADD CONSTRAINT marc_field_marc_format_fkey FOREIGN KEY (marc_format) REFERENCES marc_format(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: marc_subfield_marc_format_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc_subfield + ADD CONSTRAINT marc_subfield_marc_format_fkey FOREIGN KEY (marc_format) REFERENCES marc_format(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: marc_subfield_value_ctype_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY marc_subfield + ADD CONSTRAINT marc_subfield_value_ctype_fkey FOREIGN KEY (value_ctype) REFERENCES record_attr_definition(name) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_class_ts_map_field_class_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_class_ts_map + ADD CONSTRAINT metabib_class_ts_map_field_class_fkey FOREIGN KEY (field_class) REFERENCES metabib_class(name); + + +-- +-- Name: metabib_class_ts_map_ts_config_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_class_ts_map + ADD CONSTRAINT metabib_class_ts_map_ts_config_fkey FOREIGN KEY (ts_config) REFERENCES ts_config_list(id); + + +-- +-- Name: metabib_field_field_class_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_field + ADD CONSTRAINT metabib_field_field_class_fkey FOREIGN KEY (field_class) REFERENCES metabib_class(name); + + +-- +-- Name: metabib_field_format_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_field + ADD CONSTRAINT metabib_field_format_fkey FOREIGN KEY (format) REFERENCES xml_transform(name); + + +-- +-- Name: metabib_field_index_norm_map_field_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_field_index_norm_map + ADD CONSTRAINT metabib_field_index_norm_map_field_fkey FOREIGN KEY (field) REFERENCES metabib_field(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_field_index_norm_map_norm_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_field_index_norm_map + ADD CONSTRAINT metabib_field_index_norm_map_norm_fkey FOREIGN KEY (norm) REFERENCES index_normalizer(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_field_ts_map_metabib_field_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_field_ts_map + ADD CONSTRAINT metabib_field_ts_map_metabib_field_fkey FOREIGN KEY (metabib_field) REFERENCES metabib_field(id) ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_field_ts_map_ts_config_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_field_ts_map + ADD CONSTRAINT metabib_field_ts_map_ts_config_fkey FOREIGN KEY (ts_config) REFERENCES ts_config_list(id); + + +-- +-- Name: metabib_search_alias_field_class_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_search_alias + ADD CONSTRAINT metabib_search_alias_field_class_fkey FOREIGN KEY (field_class) REFERENCES metabib_class(name); + + +-- +-- Name: metabib_search_alias_field_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY metabib_search_alias + ADD CONSTRAINT metabib_search_alias_field_fkey FOREIGN KEY (field) REFERENCES metabib_field(id) ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: org_unit_setting_type_grp_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_setting_type + ADD CONSTRAINT org_unit_setting_type_grp_fkey FOREIGN KEY (grp) REFERENCES settings_group(name); + + +-- +-- Name: org_unit_setting_type_log_field_name_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_setting_type_log + ADD CONSTRAINT org_unit_setting_type_log_field_name_fkey FOREIGN KEY (field_name) REFERENCES org_unit_setting_type(name) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: record_attr_definition_format_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY record_attr_definition + ADD CONSTRAINT record_attr_definition_format_fkey FOREIGN KEY (format) REFERENCES xml_transform(name) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: record_attr_definition_phys_char_sf_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY record_attr_definition + ADD CONSTRAINT record_attr_definition_phys_char_sf_fkey FOREIGN KEY (phys_char_sf) REFERENCES marc21_physical_characteristic_subfield_map(id); + + +-- +-- Name: record_attr_index_norm_map_attr_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY record_attr_index_norm_map + ADD CONSTRAINT record_attr_index_norm_map_attr_fkey FOREIGN KEY (attr) REFERENCES record_attr_definition(name) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: record_attr_index_norm_map_norm_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY record_attr_index_norm_map + ADD CONSTRAINT record_attr_index_norm_map_norm_fkey FOREIGN KEY (norm) REFERENCES index_normalizer(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: update_perm_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_setting_type + ADD CONSTRAINT update_perm_fkey FOREIGN KEY (update_perm) REFERENCES permission.perm_list(id) ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: use_perm_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_source + ADD CONSTRAINT use_perm_fkey FOREIGN KEY (use_perm) REFERENCES permission.perm_list(id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_setting_type_grp_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY usr_setting_type + ADD CONSTRAINT usr_setting_type_grp_fkey FOREIGN KEY (grp) REFERENCES settings_group(name); + + +-- +-- Name: view_perm_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY org_unit_setting_type + ADD CONSTRAINT view_perm_fkey FOREIGN KEY (view_perm) REFERENCES permission.perm_list(id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: weight_assoc_circ_weights_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY weight_assoc + ADD CONSTRAINT weight_assoc_circ_weights_fkey FOREIGN KEY (circ_weights) REFERENCES circ_matrix_weights(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: weight_assoc_hold_weights_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY weight_assoc + ADD CONSTRAINT weight_assoc_hold_weights_fkey FOREIGN KEY (hold_weights) REFERENCES hold_matrix_weights(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: weight_assoc_org_unit_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY weight_assoc + ADD CONSTRAINT weight_assoc_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES actor.org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: z3950_attr_source_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_attr + ADD CONSTRAINT z3950_attr_source_fkey FOREIGN KEY (source) REFERENCES z3950_source(name) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: z3950_index_field_map_metabib_field_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_index_field_map + ADD CONSTRAINT z3950_index_field_map_metabib_field_fkey FOREIGN KEY (metabib_field) REFERENCES metabib_field(id) ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: z3950_index_field_map_record_attr_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_index_field_map + ADD CONSTRAINT z3950_index_field_map_record_attr_fkey FOREIGN KEY (record_attr) REFERENCES record_attr_definition(name); + + +-- +-- Name: z3950_index_field_map_z3950_attr_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_index_field_map + ADD CONSTRAINT z3950_index_field_map_z3950_attr_fkey FOREIGN KEY (z3950_attr) REFERENCES z3950_attr(id); + + +-- +-- Name: z3950_source_credentials_source_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_source_credentials + ADD CONSTRAINT z3950_source_credentials_source_fkey FOREIGN KEY (source) REFERENCES z3950_source(name) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: z3950_source_creds_owner_fkey; Type: FK CONSTRAINT; Schema: config; Owner: evergreen +-- + +ALTER TABLE ONLY z3950_source_credentials + ADD CONSTRAINT z3950_source_creds_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +SET search_path = container, pg_catalog; + +-- +-- Name: biblio_record_entry_bucket_btype_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket + ADD CONSTRAINT biblio_record_entry_bucket_btype_fkey FOREIGN KEY (btype) REFERENCES biblio_record_entry_bucket_type(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: biblio_record_entry_bucket_item_bucket_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket_item + ADD CONSTRAINT biblio_record_entry_bucket_item_bucket_fkey FOREIGN KEY (bucket) REFERENCES biblio_record_entry_bucket(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: biblio_record_entry_bucket_item_note_item_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket_item_note + ADD CONSTRAINT biblio_record_entry_bucket_item_note_item_fkey FOREIGN KEY (item) REFERENCES biblio_record_entry_bucket_item(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: biblio_record_entry_bucket_item_target_biblio_record_entry_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket_item + ADD CONSTRAINT biblio_record_entry_bucket_item_target_biblio_record_entry_fkey FOREIGN KEY (target_biblio_record_entry) REFERENCES biblio.record_entry(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: biblio_record_entry_bucket_note_bucket_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket_note + ADD CONSTRAINT biblio_record_entry_bucket_note_bucket_fkey FOREIGN KEY (bucket) REFERENCES biblio_record_entry_bucket(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: biblio_record_entry_bucket_owner_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY biblio_record_entry_bucket + ADD CONSTRAINT biblio_record_entry_bucket_owner_fkey FOREIGN KEY (owner) REFERENCES actor.usr(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: call_number_bucket_btype_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket + ADD CONSTRAINT call_number_bucket_btype_fkey FOREIGN KEY (btype) REFERENCES call_number_bucket_type(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: call_number_bucket_item_bucket_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket_item + ADD CONSTRAINT call_number_bucket_item_bucket_fkey FOREIGN KEY (bucket) REFERENCES call_number_bucket(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: call_number_bucket_item_note_item_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket_item_note + ADD CONSTRAINT call_number_bucket_item_note_item_fkey FOREIGN KEY (item) REFERENCES call_number_bucket_item(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: call_number_bucket_item_target_call_number_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket_item + ADD CONSTRAINT call_number_bucket_item_target_call_number_fkey FOREIGN KEY (target_call_number) REFERENCES asset.call_number(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: call_number_bucket_note_bucket_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket_note + ADD CONSTRAINT call_number_bucket_note_bucket_fkey FOREIGN KEY (bucket) REFERENCES call_number_bucket(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: call_number_bucket_owner_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY call_number_bucket + ADD CONSTRAINT call_number_bucket_owner_fkey FOREIGN KEY (owner) REFERENCES actor.usr(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_bucket_btype_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket + ADD CONSTRAINT copy_bucket_btype_fkey FOREIGN KEY (btype) REFERENCES copy_bucket_type(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_bucket_item_bucket_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket_item + ADD CONSTRAINT copy_bucket_item_bucket_fkey FOREIGN KEY (bucket) REFERENCES copy_bucket(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_bucket_item_note_item_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket_item_note + ADD CONSTRAINT copy_bucket_item_note_item_fkey FOREIGN KEY (item) REFERENCES copy_bucket_item(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_bucket_item_target_copy_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket_item + ADD CONSTRAINT copy_bucket_item_target_copy_fkey FOREIGN KEY (target_copy) REFERENCES asset.copy(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_bucket_note_bucket_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket_note + ADD CONSTRAINT copy_bucket_note_bucket_fkey FOREIGN KEY (bucket) REFERENCES copy_bucket(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: copy_bucket_owner_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY copy_bucket + ADD CONSTRAINT copy_bucket_owner_fkey FOREIGN KEY (owner) REFERENCES actor.usr(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: user_bucket_btype_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket + ADD CONSTRAINT user_bucket_btype_fkey FOREIGN KEY (btype) REFERENCES user_bucket_type(code) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: user_bucket_item_bucket_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket_item + ADD CONSTRAINT user_bucket_item_bucket_fkey FOREIGN KEY (bucket) REFERENCES user_bucket(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: user_bucket_item_note_item_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket_item_note + ADD CONSTRAINT user_bucket_item_note_item_fkey FOREIGN KEY (item) REFERENCES user_bucket_item(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: user_bucket_item_target_user_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket_item + ADD CONSTRAINT user_bucket_item_target_user_fkey FOREIGN KEY (target_user) REFERENCES actor.usr(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: user_bucket_note_bucket_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket_note + ADD CONSTRAINT user_bucket_note_bucket_fkey FOREIGN KEY (bucket) REFERENCES user_bucket(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: user_bucket_owner_fkey; Type: FK CONSTRAINT; Schema: container; Owner: evergreen +-- + +ALTER TABLE ONLY user_bucket + ADD CONSTRAINT user_bucket_owner_fkey FOREIGN KEY (owner) REFERENCES actor.usr(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +SET search_path = metabib, pg_catalog; + +-- +-- Name: browse_entry_def_map_authority_fkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY browse_entry_def_map + ADD CONSTRAINT browse_entry_def_map_authority_fkey FOREIGN KEY (authority) REFERENCES authority.record_entry(id) ON DELETE SET NULL; + + +-- +-- Name: browse_entry_def_map_def_fkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY browse_entry_def_map + ADD CONSTRAINT browse_entry_def_map_def_fkey FOREIGN KEY (def) REFERENCES config.metabib_field(id) ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: browse_entry_def_map_entry_fkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY browse_entry_def_map + ADD CONSTRAINT browse_entry_def_map_entry_fkey FOREIGN KEY (entry) REFERENCES browse_entry(id); + + +-- +-- Name: browse_entry_def_map_source_fkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY browse_entry_def_map + ADD CONSTRAINT browse_entry_def_map_source_fkey FOREIGN KEY (source) REFERENCES biblio.record_entry(id); + + +-- +-- Name: browse_entry_simple_heading_map_entry_fkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY browse_entry_simple_heading_map + ADD CONSTRAINT browse_entry_simple_heading_map_entry_fkey FOREIGN KEY (entry) REFERENCES browse_entry(id); + + +-- +-- Name: browse_entry_simple_heading_map_simple_heading_fkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY browse_entry_simple_heading_map + ADD CONSTRAINT browse_entry_simple_heading_map_simple_heading_fkey FOREIGN KEY (simple_heading) REFERENCES authority.simple_heading(id) ON DELETE CASCADE; + + +-- +-- Name: metabib_author_field_entry_field_pkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY author_field_entry + ADD CONSTRAINT metabib_author_field_entry_field_pkey FOREIGN KEY (field) REFERENCES config.metabib_field(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_author_field_entry_source_pkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY author_field_entry + ADD CONSTRAINT metabib_author_field_entry_source_pkey FOREIGN KEY (source) REFERENCES biblio.record_entry(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_full_rec_record_fkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY real_full_rec + ADD CONSTRAINT metabib_full_rec_record_fkey FOREIGN KEY (record) REFERENCES biblio.record_entry(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_identifier_field_entry_field_pkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY identifier_field_entry + ADD CONSTRAINT metabib_identifier_field_entry_field_pkey FOREIGN KEY (field) REFERENCES config.metabib_field(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_identifier_field_entry_source_pkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY identifier_field_entry + ADD CONSTRAINT metabib_identifier_field_entry_source_pkey FOREIGN KEY (source) REFERENCES biblio.record_entry(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_keyword_field_entry_field_pkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY keyword_field_entry + ADD CONSTRAINT metabib_keyword_field_entry_field_pkey FOREIGN KEY (field) REFERENCES config.metabib_field(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_keyword_field_entry_source_pkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY keyword_field_entry + ADD CONSTRAINT metabib_keyword_field_entry_source_pkey FOREIGN KEY (source) REFERENCES biblio.record_entry(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_metarecord_master_record_fkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY metarecord + ADD CONSTRAINT metabib_metarecord_master_record_fkey FOREIGN KEY (master_record) REFERENCES biblio.record_entry(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_metarecord_source_map_metarecord_fkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY metarecord_source_map + ADD CONSTRAINT metabib_metarecord_source_map_metarecord_fkey FOREIGN KEY (metarecord) REFERENCES metarecord(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_metarecord_source_map_source_fkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY metarecord_source_map + ADD CONSTRAINT metabib_metarecord_source_map_source_fkey FOREIGN KEY (source) REFERENCES biblio.record_entry(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_series_field_entry_field_pkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY series_field_entry + ADD CONSTRAINT metabib_series_field_entry_field_pkey FOREIGN KEY (field) REFERENCES config.metabib_field(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_series_field_entry_source_pkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY series_field_entry + ADD CONSTRAINT metabib_series_field_entry_source_pkey FOREIGN KEY (source) REFERENCES biblio.record_entry(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_subject_field_entry_field_pkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY subject_field_entry + ADD CONSTRAINT metabib_subject_field_entry_field_pkey FOREIGN KEY (field) REFERENCES config.metabib_field(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_subject_field_entry_source_pkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY subject_field_entry + ADD CONSTRAINT metabib_subject_field_entry_source_pkey FOREIGN KEY (source) REFERENCES biblio.record_entry(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_title_field_entry_field_pkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY title_field_entry + ADD CONSTRAINT metabib_title_field_entry_field_pkey FOREIGN KEY (field) REFERENCES config.metabib_field(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: metabib_title_field_entry_source_pkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY title_field_entry + ADD CONSTRAINT metabib_title_field_entry_source_pkey FOREIGN KEY (source) REFERENCES biblio.record_entry(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: record_attr_vector_list_source_fkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY record_attr_vector_list + ADD CONSTRAINT record_attr_vector_list_source_fkey FOREIGN KEY (source) REFERENCES biblio.record_entry(id); + + +-- +-- Name: record_sorter_attr_fkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY record_sorter + ADD CONSTRAINT record_sorter_attr_fkey FOREIGN KEY (attr) REFERENCES config.record_attr_definition(name) ON DELETE CASCADE; + + +-- +-- Name: record_sorter_source_fkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY record_sorter + ADD CONSTRAINT record_sorter_source_fkey FOREIGN KEY (source) REFERENCES biblio.record_entry(id) ON DELETE CASCADE; + + +-- +-- Name: uncontrolled_record_attr_value_attr_fkey; Type: FK CONSTRAINT; Schema: metabib; Owner: evergreen +-- + +ALTER TABLE ONLY uncontrolled_record_attr_value + ADD CONSTRAINT uncontrolled_record_attr_value_attr_fkey FOREIGN KEY (attr) REFERENCES config.record_attr_definition(name); + + +SET search_path = money, pg_catalog; + +-- +-- Name: account_adjustment_billing_fkey; Type: FK CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY account_adjustment + ADD CONSTRAINT account_adjustment_billing_fkey FOREIGN KEY (billing) REFERENCES billing(id) ON DELETE SET NULL; + + +-- +-- Name: billing_btype_fkey; Type: FK CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY billing + ADD CONSTRAINT billing_btype_fkey FOREIGN KEY (btype) REFERENCES config.billing_type(id) ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: bnm_desk_payment_cash_drawer_fkey; Type: FK CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY bnm_desk_payment + ADD CONSTRAINT bnm_desk_payment_cash_drawer_fkey FOREIGN KEY (cash_drawer) REFERENCES actor.workstation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: collections_tracker_collector_fkey; Type: FK CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY collections_tracker + ADD CONSTRAINT collections_tracker_collector_fkey FOREIGN KEY (collector) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: collections_tracker_location_fkey; Type: FK CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY collections_tracker + ADD CONSTRAINT collections_tracker_location_fkey FOREIGN KEY (location) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: collections_tracker_usr_fkey; Type: FK CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY collections_tracker + ADD CONSTRAINT collections_tracker_usr_fkey FOREIGN KEY (usr) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: money_billable_xact_usr_fkey; Type: FK CONSTRAINT; Schema: money; Owner: evergreen +-- + +ALTER TABLE ONLY billable_xact + ADD CONSTRAINT money_billable_xact_usr_fkey FOREIGN KEY (usr) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +SET search_path = permission, pg_catalog; + +-- +-- Name: grp_penalty_threshold_grp_fkey; Type: FK CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY grp_penalty_threshold + ADD CONSTRAINT grp_penalty_threshold_grp_fkey FOREIGN KEY (grp) REFERENCES grp_tree(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: grp_penalty_threshold_org_unit_fkey; Type: FK CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY grp_penalty_threshold + ADD CONSTRAINT grp_penalty_threshold_org_unit_fkey FOREIGN KEY (org_unit) REFERENCES actor.org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: grp_penalty_threshold_penalty_fkey; Type: FK CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY grp_penalty_threshold + ADD CONSTRAINT grp_penalty_threshold_penalty_fkey FOREIGN KEY (penalty) REFERENCES config.standing_penalty(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: grp_perm_map_grp_fkey; Type: FK CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY grp_perm_map + ADD CONSTRAINT grp_perm_map_grp_fkey FOREIGN KEY (grp) REFERENCES grp_tree(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: grp_perm_map_perm_fkey; Type: FK CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY grp_perm_map + ADD CONSTRAINT grp_perm_map_perm_fkey FOREIGN KEY (perm) REFERENCES perm_list(id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: grp_tree_parent_fkey; Type: FK CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY grp_tree + ADD CONSTRAINT grp_tree_parent_fkey FOREIGN KEY (parent) REFERENCES grp_tree(id) ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_grp_map_grp_fkey; Type: FK CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_grp_map + ADD CONSTRAINT usr_grp_map_grp_fkey FOREIGN KEY (grp) REFERENCES grp_tree(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_grp_map_usr_fkey; Type: FK CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_grp_map + ADD CONSTRAINT usr_grp_map_usr_fkey FOREIGN KEY (usr) REFERENCES actor.usr(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_object_perm_map_perm_fkey; Type: FK CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_object_perm_map + ADD CONSTRAINT usr_object_perm_map_perm_fkey FOREIGN KEY (perm) REFERENCES perm_list(id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_object_perm_map_usr_fkey; Type: FK CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_object_perm_map + ADD CONSTRAINT usr_object_perm_map_usr_fkey FOREIGN KEY (usr) REFERENCES actor.usr(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_perm_map_perm_fkey; Type: FK CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_perm_map + ADD CONSTRAINT usr_perm_map_perm_fkey FOREIGN KEY (perm) REFERENCES perm_list(id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_perm_map_usr_fkey; Type: FK CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_perm_map + ADD CONSTRAINT usr_perm_map_usr_fkey FOREIGN KEY (usr) REFERENCES actor.usr(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_work_ou_map_usr_fkey; Type: FK CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_work_ou_map + ADD CONSTRAINT usr_work_ou_map_usr_fkey FOREIGN KEY (usr) REFERENCES actor.usr(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: usr_work_ou_map_work_ou_fkey; Type: FK CONSTRAINT; Schema: permission; Owner: evergreen +-- + +ALTER TABLE ONLY usr_work_ou_map + ADD CONSTRAINT usr_work_ou_map_work_ou_fkey FOREIGN KEY (work_ou) REFERENCES actor.org_unit(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +SET search_path = query, pg_catalog; + +-- +-- Name: case_branch_condition_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY case_branch + ADD CONSTRAINT case_branch_condition_fkey FOREIGN KEY (condition) REFERENCES expression(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: case_branch_parent_expr_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY case_branch + ADD CONSTRAINT case_branch_parent_expr_fkey FOREIGN KEY (parent_expr) REFERENCES expression(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: case_branch_result_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY case_branch + ADD CONSTRAINT case_branch_result_fkey FOREIGN KEY (result) REFERENCES expression(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: expression_bind_variable_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY expression + ADD CONSTRAINT expression_bind_variable_fkey FOREIGN KEY (bind_variable) REFERENCES bind_variable(name) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: expression_cast_type_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY expression + ADD CONSTRAINT expression_cast_type_fkey FOREIGN KEY (cast_type) REFERENCES datatype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: expression_function_id_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY expression + ADD CONSTRAINT expression_function_id_fkey FOREIGN KEY (function_id) REFERENCES function_sig(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: expression_left_operand_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY expression + ADD CONSTRAINT expression_left_operand_fkey FOREIGN KEY (left_operand) REFERENCES expression(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: expression_parent_expr_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY expression + ADD CONSTRAINT expression_parent_expr_fkey FOREIGN KEY (parent_expr) REFERENCES expression(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: expression_right_operand_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY expression + ADD CONSTRAINT expression_right_operand_fkey FOREIGN KEY (right_operand) REFERENCES expression(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: expression_subquery_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY expression + ADD CONSTRAINT expression_subquery_fkey FOREIGN KEY (subquery) REFERENCES stored_query(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: from_relation_function_call_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY from_relation + ADD CONSTRAINT from_relation_function_call_fkey FOREIGN KEY (function_call) REFERENCES expression(id); + + +-- +-- Name: from_relation_on_clause_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY from_relation + ADD CONSTRAINT from_relation_on_clause_fkey FOREIGN KEY (on_clause) REFERENCES expression(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: from_relation_parent_relation_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY from_relation + ADD CONSTRAINT from_relation_parent_relation_fkey FOREIGN KEY (parent_relation) REFERENCES from_relation(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: from_relation_subquery_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY from_relation + ADD CONSTRAINT from_relation_subquery_fkey FOREIGN KEY (subquery) REFERENCES stored_query(id); + + +-- +-- Name: function_param_def_datatype_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY function_param_def + ADD CONSTRAINT function_param_def_datatype_fkey FOREIGN KEY (datatype) REFERENCES datatype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: function_param_def_function_id_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY function_param_def + ADD CONSTRAINT function_param_def_function_id_fkey FOREIGN KEY (function_id) REFERENCES function_sig(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: function_sig_return_type_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY function_sig + ADD CONSTRAINT function_sig_return_type_fkey FOREIGN KEY (return_type) REFERENCES datatype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: order_by_item_expression_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY order_by_item + ADD CONSTRAINT order_by_item_expression_fkey FOREIGN KEY (expression) REFERENCES expression(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: order_by_item_stored_query_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY order_by_item + ADD CONSTRAINT order_by_item_stored_query_fkey FOREIGN KEY (stored_query) REFERENCES stored_query(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: query_sequence_child_query_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY query_sequence + ADD CONSTRAINT query_sequence_child_query_fkey FOREIGN KEY (child_query) REFERENCES stored_query(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: query_sequence_parent_query_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY query_sequence + ADD CONSTRAINT query_sequence_parent_query_fkey FOREIGN KEY (parent_query) REFERENCES stored_query(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: record_column_column_type_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY record_column + ADD CONSTRAINT record_column_column_type_fkey FOREIGN KEY (column_type) REFERENCES datatype(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: record_column_from_relation_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY record_column + ADD CONSTRAINT record_column_from_relation_fkey FOREIGN KEY (from_relation) REFERENCES from_relation(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: select_item_expression_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY select_item + ADD CONSTRAINT select_item_expression_fkey FOREIGN KEY (expression) REFERENCES expression(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: select_item_stored_query_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY select_item + ADD CONSTRAINT select_item_stored_query_fkey FOREIGN KEY (stored_query) REFERENCES stored_query(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: stored_query_from_clause_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY stored_query + ADD CONSTRAINT stored_query_from_clause_fkey FOREIGN KEY (from_clause) REFERENCES from_relation(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: stored_query_having_clause_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY stored_query + ADD CONSTRAINT stored_query_having_clause_fkey FOREIGN KEY (having_clause) REFERENCES expression(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: stored_query_limit_count_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY stored_query + ADD CONSTRAINT stored_query_limit_count_fkey FOREIGN KEY (limit_count) REFERENCES expression(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: stored_query_offset_count_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY stored_query + ADD CONSTRAINT stored_query_offset_count_fkey FOREIGN KEY (offset_count) REFERENCES expression(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: stored_query_where_clause_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY stored_query + ADD CONSTRAINT stored_query_where_clause_fkey FOREIGN KEY (where_clause) REFERENCES expression(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: subfield_composite_type_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY subfield + ADD CONSTRAINT subfield_composite_type_fkey FOREIGN KEY (composite_type) REFERENCES datatype(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: subfield_subfield_type_fkey; Type: FK CONSTRAINT; Schema: query; Owner: evergreen +-- + +ALTER TABLE ONLY subfield + ADD CONSTRAINT subfield_subfield_type_fkey FOREIGN KEY (subfield_type) REFERENCES datatype(id) DEFERRABLE INITIALLY DEFERRED; + + +SET search_path = reporter, pg_catalog; + +-- +-- Name: output_folder_owner_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY output_folder + ADD CONSTRAINT output_folder_owner_fkey FOREIGN KEY (owner) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: output_folder_parent_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY output_folder + ADD CONSTRAINT output_folder_parent_fkey FOREIGN KEY (parent) REFERENCES output_folder(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: output_folder_share_with_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY output_folder + ADD CONSTRAINT output_folder_share_with_fkey FOREIGN KEY (share_with) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: report_folder_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY report + ADD CONSTRAINT report_folder_fkey FOREIGN KEY (folder) REFERENCES report_folder(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: report_folder_owner_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY report_folder + ADD CONSTRAINT report_folder_owner_fkey FOREIGN KEY (owner) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: report_folder_parent_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY report_folder + ADD CONSTRAINT report_folder_parent_fkey FOREIGN KEY (parent) REFERENCES report_folder(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: report_folder_share_with_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY report_folder + ADD CONSTRAINT report_folder_share_with_fkey FOREIGN KEY (share_with) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: report_owner_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY report + ADD CONSTRAINT report_owner_fkey FOREIGN KEY (owner) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: report_template_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY report + ADD CONSTRAINT report_template_fkey FOREIGN KEY (template) REFERENCES template(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: schedule_folder_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY schedule + ADD CONSTRAINT schedule_folder_fkey FOREIGN KEY (folder) REFERENCES output_folder(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: schedule_report_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY schedule + ADD CONSTRAINT schedule_report_fkey FOREIGN KEY (report) REFERENCES report(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: schedule_runner_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY schedule + ADD CONSTRAINT schedule_runner_fkey FOREIGN KEY (runner) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: template_folder_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY template + ADD CONSTRAINT template_folder_fkey FOREIGN KEY (folder) REFERENCES template_folder(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: template_folder_owner_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY template_folder + ADD CONSTRAINT template_folder_owner_fkey FOREIGN KEY (owner) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: template_folder_parent_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY template_folder + ADD CONSTRAINT template_folder_parent_fkey FOREIGN KEY (parent) REFERENCES template_folder(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: template_folder_share_with_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY template_folder + ADD CONSTRAINT template_folder_share_with_fkey FOREIGN KEY (share_with) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: template_owner_fkey; Type: FK CONSTRAINT; Schema: reporter; Owner: evergreen +-- + +ALTER TABLE ONLY template + ADD CONSTRAINT template_owner_fkey FOREIGN KEY (owner) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +SET search_path = search, pg_catalog; + +-- +-- Name: relevance_adjustment_field_fkey; Type: FK CONSTRAINT; Schema: search; Owner: evergreen +-- + +ALTER TABLE ONLY relevance_adjustment + ADD CONSTRAINT relevance_adjustment_field_fkey FOREIGN KEY (field) REFERENCES config.metabib_field(id) DEFERRABLE INITIALLY DEFERRED; + + +SET search_path = serial, pg_catalog; + +-- +-- Name: basic_summary_distribution_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY basic_summary + ADD CONSTRAINT basic_summary_distribution_fkey FOREIGN KEY (distribution) REFERENCES distribution(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: caption_and_pattern_subscription_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY caption_and_pattern + ADD CONSTRAINT caption_and_pattern_subscription_fkey FOREIGN KEY (subscription) REFERENCES subscription(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: distribution_bind_call_number_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY distribution + ADD CONSTRAINT distribution_bind_call_number_fkey FOREIGN KEY (bind_call_number) REFERENCES asset.call_number(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: distribution_bind_unit_template_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY distribution + ADD CONSTRAINT distribution_bind_unit_template_fkey FOREIGN KEY (bind_unit_template) REFERENCES asset.copy_template(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: distribution_holding_lib_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY distribution + ADD CONSTRAINT distribution_holding_lib_fkey FOREIGN KEY (holding_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: distribution_note_creator_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_note + ADD CONSTRAINT distribution_note_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: distribution_note_distribution_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY distribution_note + ADD CONSTRAINT distribution_note_distribution_fkey FOREIGN KEY (distribution) REFERENCES distribution(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: distribution_receive_call_number_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY distribution + ADD CONSTRAINT distribution_receive_call_number_fkey FOREIGN KEY (receive_call_number) REFERENCES asset.call_number(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: distribution_receive_unit_template_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY distribution + ADD CONSTRAINT distribution_receive_unit_template_fkey FOREIGN KEY (receive_unit_template) REFERENCES asset.copy_template(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: distribution_record_entry_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY distribution + ADD CONSTRAINT distribution_record_entry_fkey FOREIGN KEY (record_entry) REFERENCES record_entry(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: distribution_subscription_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY distribution + ADD CONSTRAINT distribution_subscription_fkey FOREIGN KEY (subscription) REFERENCES subscription(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: index_summary_distribution_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY index_summary + ADD CONSTRAINT index_summary_distribution_fkey FOREIGN KEY (distribution) REFERENCES distribution(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: issuance_caption_and_pattern_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY issuance + ADD CONSTRAINT issuance_caption_and_pattern_fkey FOREIGN KEY (caption_and_pattern) REFERENCES caption_and_pattern(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: issuance_creator_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY issuance + ADD CONSTRAINT issuance_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: issuance_editor_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY issuance + ADD CONSTRAINT issuance_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: issuance_subscription_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY issuance + ADD CONSTRAINT issuance_subscription_fkey FOREIGN KEY (subscription) REFERENCES subscription(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: item_creator_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY item + ADD CONSTRAINT item_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: item_editor_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY item + ADD CONSTRAINT item_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: item_issuance_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY item + ADD CONSTRAINT item_issuance_fkey FOREIGN KEY (issuance) REFERENCES issuance(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: item_note_creator_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY item_note + ADD CONSTRAINT item_note_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: item_note_item_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY item_note + ADD CONSTRAINT item_note_item_fkey FOREIGN KEY (item) REFERENCES item(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: item_stream_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY item + ADD CONSTRAINT item_stream_fkey FOREIGN KEY (stream) REFERENCES stream(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: item_unit_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY item + ADD CONSTRAINT item_unit_fkey FOREIGN KEY (unit) REFERENCES unit(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: item_uri_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY item + ADD CONSTRAINT item_uri_fkey FOREIGN KEY (uri) REFERENCES asset.uri(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: materialized_holding_code_issuance_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY materialized_holding_code + ADD CONSTRAINT materialized_holding_code_issuance_fkey FOREIGN KEY (issuance) REFERENCES issuance(id) ON DELETE CASCADE; + + +-- +-- Name: record_entry_owning_lib_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY record_entry + ADD CONSTRAINT record_entry_owning_lib_fkey FOREIGN KEY (owning_lib) REFERENCES actor.org_unit(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: record_entry_record_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY record_entry + ADD CONSTRAINT record_entry_record_fkey FOREIGN KEY (record) REFERENCES biblio.record_entry(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: routing_list_user_reader_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY routing_list_user + ADD CONSTRAINT routing_list_user_reader_fkey FOREIGN KEY (reader) REFERENCES actor.usr(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: routing_list_user_stream_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY routing_list_user + ADD CONSTRAINT routing_list_user_stream_fkey FOREIGN KEY (stream) REFERENCES stream(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: serial_unit_call_number_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit + ADD CONSTRAINT serial_unit_call_number_fkey FOREIGN KEY (call_number) REFERENCES asset.call_number(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: serial_unit_creator_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit + ADD CONSTRAINT serial_unit_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: serial_unit_editor_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY unit + ADD CONSTRAINT serial_unit_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: stream_distribution_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY stream + ADD CONSTRAINT stream_distribution_fkey FOREIGN KEY (distribution) REFERENCES distribution(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: subscription_note_creator_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY subscription_note + ADD CONSTRAINT subscription_note_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: subscription_note_subscription_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY subscription_note + ADD CONSTRAINT subscription_note_subscription_fkey FOREIGN KEY (subscription) REFERENCES subscription(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: subscription_owning_lib_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY subscription + ADD CONSTRAINT subscription_owning_lib_fkey FOREIGN KEY (owning_lib) REFERENCES actor.org_unit(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: subscription_record_entry_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY subscription + ADD CONSTRAINT subscription_record_entry_fkey FOREIGN KEY (record_entry) REFERENCES biblio.record_entry(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: supplement_summary_distribution_fkey; Type: FK CONSTRAINT; Schema: serial; Owner: evergreen +-- + +ALTER TABLE ONLY supplement_summary + ADD CONSTRAINT supplement_summary_distribution_fkey FOREIGN KEY (distribution) REFERENCES distribution(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +SET search_path = staging, pg_catalog; + +-- +-- Name: user_stage_requesting_usr_fkey; Type: FK CONSTRAINT; Schema: staging; Owner: evergreen +-- + +ALTER TABLE ONLY user_stage + ADD CONSTRAINT user_stage_requesting_usr_fkey FOREIGN KEY (requesting_usr) REFERENCES actor.usr(id) ON DELETE SET NULL; + + +SET search_path = unapi, pg_catalog; + +-- +-- Name: bre_output_layout_transform_fkey; Type: FK CONSTRAINT; Schema: unapi; Owner: evergreen +-- + +ALTER TABLE ONLY bre_output_layout + ADD CONSTRAINT bre_output_layout_transform_fkey FOREIGN KEY (transform) REFERENCES config.xml_transform(name) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +SET search_path = url_verify, pg_catalog; + +-- +-- Name: session_container_fkey; Type: FK CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY session + ADD CONSTRAINT session_container_fkey FOREIGN KEY (container) REFERENCES container.biblio_record_entry_bucket(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: session_creator_fkey; Type: FK CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY session + ADD CONSTRAINT session_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: session_owning_lib_fkey; Type: FK CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY session + ADD CONSTRAINT session_owning_lib_fkey FOREIGN KEY (owning_lib) REFERENCES actor.org_unit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: url_item_fkey; Type: FK CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY url + ADD CONSTRAINT url_item_fkey FOREIGN KEY (item) REFERENCES container.biblio_record_entry_bucket_item(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: url_redirect_from_fkey; Type: FK CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY url + ADD CONSTRAINT url_redirect_from_fkey FOREIGN KEY (redirect_from) REFERENCES url(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: url_selector_session_fkey; Type: FK CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY url_selector + ADD CONSTRAINT url_selector_session_fkey FOREIGN KEY (session) REFERENCES session(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: url_session_fkey; Type: FK CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY url + ADD CONSTRAINT url_session_fkey FOREIGN KEY (session) REFERENCES session(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: url_url_selector_fkey; Type: FK CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY url + ADD CONSTRAINT url_url_selector_fkey FOREIGN KEY (url_selector) REFERENCES url_selector(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: url_verification_attempt_fkey; Type: FK CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY url_verification + ADD CONSTRAINT url_verification_attempt_fkey FOREIGN KEY (attempt) REFERENCES verification_attempt(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: url_verification_redirect_to_fkey; Type: FK CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY url_verification + ADD CONSTRAINT url_verification_redirect_to_fkey FOREIGN KEY (redirect_to) REFERENCES url(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: url_verification_url_fkey; Type: FK CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY url_verification + ADD CONSTRAINT url_verification_url_fkey FOREIGN KEY (url) REFERENCES url(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: verification_attempt_session_fkey; Type: FK CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY verification_attempt + ADD CONSTRAINT verification_attempt_session_fkey FOREIGN KEY (session) REFERENCES session(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: verification_attempt_usr_fkey; Type: FK CONSTRAINT; Schema: url_verify; Owner: evergreen +-- + +ALTER TABLE ONLY verification_attempt + ADD CONSTRAINT verification_attempt_usr_fkey FOREIGN KEY (usr) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +SET search_path = vandelay, pg_catalog; + +-- +-- Name: authority_match_eg_record_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY authority_match + ADD CONSTRAINT authority_match_eg_record_fkey FOREIGN KEY (eg_record) REFERENCES authority.record_entry(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: authority_match_queued_record_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY authority_match + ADD CONSTRAINT authority_match_queued_record_fkey FOREIGN KEY (queued_record) REFERENCES queued_authority_record(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: bib_match_eg_record_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY bib_match + ADD CONSTRAINT bib_match_eg_record_fkey FOREIGN KEY (eg_record) REFERENCES biblio.record_entry(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: bib_match_queued_record_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY bib_match + ADD CONSTRAINT bib_match_queued_record_fkey FOREIGN KEY (queued_record) REFERENCES queued_bib_record(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: bib_queue_item_attr_def_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY bib_queue + ADD CONSTRAINT bib_queue_item_attr_def_fkey FOREIGN KEY (item_attr_def) REFERENCES import_item_attr_definition(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: import_bib_trash_fields_grp_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_bib_trash_fields + ADD CONSTRAINT import_bib_trash_fields_grp_fkey FOREIGN KEY (grp) REFERENCES import_bib_trash_group(id); + + +-- +-- Name: import_bib_trash_group_owner_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_bib_trash_group + ADD CONSTRAINT import_bib_trash_group_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id); + + +-- +-- Name: import_item_attr_definition_owner_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_item_attr_definition + ADD CONSTRAINT import_item_attr_definition_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: import_item_definition_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_item + ADD CONSTRAINT import_item_definition_fkey FOREIGN KEY (definition) REFERENCES import_item_attr_definition(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: import_item_import_error_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_item + ADD CONSTRAINT import_item_import_error_fkey FOREIGN KEY (import_error) REFERENCES import_error(code) ON UPDATE CASCADE ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: import_item_record_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_item + ADD CONSTRAINT import_item_record_fkey FOREIGN KEY (record) REFERENCES queued_bib_record(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: imported_as_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY import_item + ADD CONSTRAINT imported_as_fkey FOREIGN KEY (imported_as) REFERENCES asset.copy(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: match_bucket_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY bib_queue + ADD CONSTRAINT match_bucket_fkey FOREIGN KEY (match_bucket) REFERENCES container.biblio_record_entry_bucket(id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: match_set_owner_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY match_set + ADD CONSTRAINT match_set_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) ON DELETE CASCADE; + + +-- +-- Name: match_set_point_match_set_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY match_set_point + ADD CONSTRAINT match_set_point_match_set_fkey FOREIGN KEY (match_set) REFERENCES match_set(id) ON DELETE CASCADE; + + +-- +-- Name: match_set_point_parent_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY match_set_point + ADD CONSTRAINT match_set_point_parent_fkey FOREIGN KEY (parent) REFERENCES match_set_point(id); + + +-- +-- Name: match_set_point_svf_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY match_set_point + ADD CONSTRAINT match_set_point_svf_fkey FOREIGN KEY (svf) REFERENCES config.record_attr_definition(name); + + +-- +-- Name: match_set_quality_match_set_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY match_set_quality + ADD CONSTRAINT match_set_quality_match_set_fkey FOREIGN KEY (match_set) REFERENCES match_set(id) ON DELETE CASCADE; + + +-- +-- Name: match_set_quality_svf_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY match_set_quality + ADD CONSTRAINT match_set_quality_svf_fkey FOREIGN KEY (svf) REFERENCES config.record_attr_definition(name); + + +-- +-- Name: merge_profile_owner_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY merge_profile + ADD CONSTRAINT merge_profile_owner_fkey FOREIGN KEY (owner) REFERENCES actor.org_unit(id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: queue_match_set_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queue + ADD CONSTRAINT queue_match_set_fkey FOREIGN KEY (match_set) REFERENCES match_set(id) ON UPDATE CASCADE ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: queue_owner_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queue + ADD CONSTRAINT queue_owner_fkey FOREIGN KEY (owner) REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: queued_authority_record_attr_field_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_authority_record_attr + ADD CONSTRAINT queued_authority_record_attr_field_fkey FOREIGN KEY (field) REFERENCES authority_attr_definition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: queued_authority_record_attr_record_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_authority_record_attr + ADD CONSTRAINT queued_authority_record_attr_record_fkey FOREIGN KEY (record) REFERENCES queued_authority_record(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: queued_authority_record_import_error_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_authority_record + ADD CONSTRAINT queued_authority_record_import_error_fkey FOREIGN KEY (import_error) REFERENCES import_error(code) ON UPDATE CASCADE ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: queued_authority_record_imported_as_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_authority_record + ADD CONSTRAINT queued_authority_record_imported_as_fkey FOREIGN KEY (imported_as) REFERENCES authority.record_entry(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: queued_authority_record_queue_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_authority_record + ADD CONSTRAINT queued_authority_record_queue_fkey FOREIGN KEY (queue) REFERENCES authority_queue(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: queued_bib_record_attr_field_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_bib_record_attr + ADD CONSTRAINT queued_bib_record_attr_field_fkey FOREIGN KEY (field) REFERENCES bib_attr_definition(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: queued_bib_record_attr_record_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_bib_record_attr + ADD CONSTRAINT queued_bib_record_attr_record_fkey FOREIGN KEY (record) REFERENCES queued_bib_record(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: queued_bib_record_bib_source_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_bib_record + ADD CONSTRAINT queued_bib_record_bib_source_fkey FOREIGN KEY (bib_source) REFERENCES config.bib_source(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: queued_bib_record_import_error_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_bib_record + ADD CONSTRAINT queued_bib_record_import_error_fkey FOREIGN KEY (import_error) REFERENCES import_error(code) ON UPDATE CASCADE ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: queued_bib_record_imported_as_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_bib_record + ADD CONSTRAINT queued_bib_record_imported_as_fkey FOREIGN KEY (imported_as) REFERENCES biblio.record_entry(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: queued_bib_record_queue_fkey; Type: FK CONSTRAINT; Schema: vandelay; Owner: evergreen +-- + +ALTER TABLE ONLY queued_bib_record + ADD CONSTRAINT queued_bib_record_queue_fkey FOREIGN KEY (queue) REFERENCES bib_queue(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: public; Type: ACL; Schema: -; Owner: postgres +-- + +REVOKE ALL ON SCHEMA public FROM PUBLIC; +REVOKE ALL ON SCHEMA public FROM postgres; +GRANT ALL ON SCHEMA public TO postgres; +GRANT ALL ON SCHEMA public TO PUBLIC; + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/Open-ILS/src/sql/schema/revert/README.revert b/Open-ILS/src/sql/schema/revert/README.revert new file mode 100644 index 0000000000..9bfa013391 --- /dev/null +++ b/Open-ILS/src/sql/schema/revert/README.revert @@ -0,0 +1,5 @@ +Keep this file here so Git will retain the directory. + +Revert scripts are added by 'sqitch add'. They can be useful for development +and testing, however they should be removed from the repository when +merging changes to master. diff --git a/Open-ILS/src/sql/schema/sqitch.conf b/Open-ILS/src/sql/schema/sqitch.conf new file mode 100644 index 0000000000..b86f2739d0 --- /dev/null +++ b/Open-ILS/src/sql/schema/sqitch.conf @@ -0,0 +1,14 @@ +[core] + engine = pg +[target "evergreen"] + # override at run time with --db-user and/or --db-host + uri = postgresql://evergreen@127.0.0.1/evergreen +[engine "pg"] + target = evergreen +[deploy] + verify = false + # only revert the last (failed) change by default. + # this helps avoid an unintended chain reaction of reverts. + mode = change +[rebase] + verify = false diff --git a/Open-ILS/src/sql/schema/sqitch.plan b/Open-ILS/src/sql/schema/sqitch.plan new file mode 100644 index 0000000000..970b0cd568 --- /dev/null +++ b/Open-ILS/src/sql/schema/sqitch.plan @@ -0,0 +1,12 @@ +%syntax-version=1.0.0 +%project=evergreen +%uri=https://evergreen-ils.org/ + +schema.base 2016-04-27T21:47:46Z Bill Erickson # Base 2.10 Schema +data.base [schema.base] 2016-04-27T21:50:18Z Bill Erickson # Base 2.10 seed data +data.MODS-xsl [data.base] 2016-04-28T14:13:39Z Bill Erickson # data.MODS-xsl +data.MODS3-xsl [data.MODS-xsl] 2016-04-28T14:14:18Z Bill Erickson # data.MODS-xsl +data.MODS32-xsl [data.MODS3-xsl] 2016-04-28T14:14:31Z Bill Erickson # data.MODS32-xsl +data.marc21expand880 [data.MODS32-xsl] 2016-04-28T14:14:54Z Bill Erickson # data.marc21expand880 +data.MODS33-xsl [data.MODS32-xsl] 2016-04-28T14:15:14Z Bill Erickson # data.MODS33-xsl +data.tag-tables [data.MODS33-xsl] 2016-04-27T22:02:38Z Bill Erickson # Tag table data diff --git a/Open-ILS/src/sql/schema/tools/create_database_extensions.sql b/Open-ILS/src/sql/schema/tools/create_database_extensions.sql new file mode 100644 index 0000000000..b73a87168e --- /dev/null +++ b/Open-ILS/src/sql/schema/tools/create_database_extensions.sql @@ -0,0 +1,22 @@ +-- This file is intended to be called by eg_db_config.pl + +-- If manually calling: +-- Connect to the postgres database initially +-- Specify the database to create as -vdb_name=DATABASE +-- Specify the postgres contrib directory as -vcontrib_dir=CONTRIBDIR +-- You can get the contrib directory using pg_config --sharedir and adding a /contrib to it + +-- NOTE: This file does not do transactions +-- This is intentional. Please do not wrap in BEGIN/COMMIT. +DROP DATABASE IF EXISTS :db_name; + +CREATE DATABASE :db_name TEMPLATE template0 ENCODING 'UNICODE' LC_COLLATE 'C' LC_CTYPE 'C'; + +\connect :db_name + +CREATE LANGUAGE plperlu; + +CREATE EXTENSION tablefunc; +CREATE EXTENSION xml2; +CREATE EXTENSION hstore; +CREATE EXTENSION intarray; diff --git a/Open-ILS/src/sql/schema/verify/README.verify b/Open-ILS/src/sql/schema/verify/README.verify new file mode 100644 index 0000000000..095df64f43 --- /dev/null +++ b/Open-ILS/src/sql/schema/verify/README.verify @@ -0,0 +1,5 @@ +Keep this file here so Git will retain the directory. + +Verify scripts are added by 'sqitch add'. They can be useful for development +and testing, however they should be removed from the repository when +merging changes to master. diff --git a/Open-ILS/src/sql/test-data/deploy/acq.sql b/Open-ILS/src/sql/test-data/deploy/acq.sql new file mode 100644 index 0000000000..d2e4174ee2 --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/acq.sql @@ -0,0 +1,119 @@ +-- Deploy evergreen-test-data:acq to pg +-- requires: neg_bal_custom_transactions + +BEGIN; + +-- note: using hard-coded ID's for most objects or this +-- would require 3 times as much SQL. + +INSERT INTO acq.funding_source (id, owner, name, currency_type, code) VALUES + (1, 1, 'LSTA', 'USD', 'LSTA'), + (2, 2, 'State', 'USD', 'ST'), + (3, 4, 'Foundation', 'USD', 'FNTN'); + +SELECT SETVAL('acq.funding_source_id_seq'::TEXT, 3); + +INSERT INTO acq.funding_source_credit (amount, funding_source) VALUES + ('10000',1), ('5000', 2), ('5000', 3); + +INSERT INTO acq.fund (id, org, year, currency_type, name, code) VALUES + (1, 1, EXTRACT(year FROM now()), 'USD', 'Adult', 'AD'), + (2, 2, EXTRACT(year FROM now()), 'USD', 'AV', 'AV'), + (3, 3, EXTRACT(year FROM now()), 'USD', 'AV', 'AV'), + (4, 4, EXTRACT(year FROM now()), 'USD', 'Juvenile', 'JUV'), + (5, 5, EXTRACT(year FROM now()), 'USD', 'Young Adult', 'YA'), + (6, 6, EXTRACT(year FROM now()), 'USD', 'Juvenile', 'JUV'), + (7, 7, EXTRACT(year FROM now()), 'USD', 'Young Adult', 'YA'), + (8, 2, EXTRACT(year FROM now()), 'USD', 'Reference', 'RF'), + (9, 2, EXTRACT(year FROM now()), 'USD', 'Fiction Print', 'FP'), + (10, 2, EXTRACT(year FROM now()), 'USD', 'Fiction Non-Print', 'FNP'), + (11, 3, EXTRACT(year FROM now()), 'USD', 'Fiction Print', 'FP'), + (12, 3, EXTRACT(year FROM now()), 'USD', 'Fiction Non-Print', 'FNP'); + +SELECT SETVAL('acq.fund_id_seq'::TEXT, 12); + +INSERT INTO acq.fund_allocation + (funding_source, fund, amount, allocator) VALUES + (1, 1, '3000', 1), + (1, 2, '3000', 1), + (1, 3, '3000', 1), + (2, 9, '500', 1), + (2, 10, '500', 1), + (3, 4, '2000', 1); + +INSERT INTO acq.provider + (id, name, owner, currency_type, code, holding_tag, san) VALUES + (1, 'Ingram', 1, 'USD', 'INGRAM', '970', '1697978'), + (2, 'Brodart', 2, 'USD', 'BRODART', '970', '1697684'), + (3, 'Baker & Taylor', 1, 'USD', 'BT', '970', '3349659'), + (4, 'Initech', 4, 'USD', 'IT', '970', '1001001'); + +SELECT SETVAL('acq.provider_id_seq'::TEXT, 4); + +INSERT INTO acq.provider_holding_subfield_map (provider, name, subfield) VALUES + (1, 'quantity', 'q'), + (1, 'estimated_price', 'p'), + (1, 'owning_lib', 'o'), + (1, 'call_number', 'n'), + (1, 'fund_code', 'f'), + (1, 'circ_modifier', 'm'), + (1, 'note', 'z'), + (1, 'copy_location', 'l'), + (1, 'barcode', 'b'), + (1, 'collection_code', 'c'); + +-- give every provider the same holding subfield maps +INSERT INTO acq.provider_holding_subfield_map (provider, name, subfield) + SELECT 2, name, subfield + FROM acq.provider_holding_subfield_map + WHERE provider = 1; + +INSERT INTO acq.provider_holding_subfield_map (provider, name, subfield) + SELECT 3, name, subfield + FROM acq.provider_holding_subfield_map + WHERE provider = 1; + +INSERT INTO acq.provider_holding_subfield_map (provider, name, subfield) + SELECT 4, name, subfield + FROM acq.provider_holding_subfield_map + WHERE provider = 1; + +INSERT INTO acq.purchase_order (id, owner, creator, + editor, ordering_agency, provider, state, order_date) VALUES + (1, 1, 1, 1, 4, 1, 'pending', NULL), + (2, 1, 1, 1, 4, 2, 'on-order', NOW()); + +SELECT SETVAL('acq.purchase_order_id_seq'::TEXT, 2); + +INSERT INTO acq.lineitem (id, creator, editor, selector, + provider, purchase_order, state, cancel_reason, + estimated_unit_price, eg_bib_id, marc) VALUES + (1, 1, 1, 1, 1, 1, 'new', NULL, '25.00', 1, + (SELECT marc FROM biblio.record_entry WHERE id = 1)), + (2, 1, 1, 1, 1, 1, 'new', NULL, '15.00', 2, + (SELECT marc FROM biblio.record_entry WHERE id = 2)), + (3, 1, 1, 1, 1, 2, 'on-order', NULL, '12.00', 3, + (SELECT marc FROM biblio.record_entry WHERE id = 3)), + (4, 1, 1, 1, 1, 2, 'cancelled', 1283, '18.50', 4, + (SELECT marc FROM biblio.record_entry WHERE id = 4)), + (5, 1, 1, 1, 1, 2, 'cancelled', 1, '22.00', 5, + (SELECT marc FROM biblio.record_entry WHERE id = 5)); + +SELECT SETVAL('acq.lineitem_id_seq'::TEXT, 5); + +INSERT INTO acq.fund_debit (id, fund, origin_amount, + origin_currency_type, amount, debit_type) VALUES + (1, 1, '12.00', 'USD', '12.00', 'purchase'), + (2, 1, '12.00', 'USD', '12.00', 'purchase'), + (3, 1, '18.50', 'USD', '12.00', 'purchase'); + +SELECT SETVAL('acq.fund_debit_id_seq'::TEXT, 4); + +INSERT INTO acq.lineitem_detail (lineitem, fund, fund_debit, eg_copy_id, + barcode, cn_label, owning_lib, location, cancel_reason) VALUES + (3, 1, 1, 3, 'ACQ0001', 'ACQ001', 4, 113, NULL), + (3, 1, 2, 103, 'ACQ0002', 'ACQ002', 5, 125, NULL), + (4, 1, 3, 4, 'ACQ0002', 'ACQ002', 4, 118, 1), + (5, 1, NULL, 5, 'ACQ0002', 'ACQ002', 4, 123, 1283); + +COMMIT; diff --git a/Open-ILS/src/sql/test-data/deploy/assets_concerto.sql b/Open-ILS/src/sql/test-data/deploy/assets_concerto.sql new file mode 100644 index 0000000000..82e050fe03 --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/assets_concerto.sql @@ -0,0 +1,141 @@ +-- Create call numbers +SELECT evergreen.populate_call_number(4, 'ML 2533 B34 C', 'IMPORT CONCERTO', 3); -- BR1 +SELECT evergreen.populate_call_number(5, 'ML1263F', 'IMPORT CONCERTO', 3); -- BR2 +SELECT evergreen.populate_call_number(6, 'MT130M8 G', 'IMPORT CONCERTO', 3); -- BR3 +SELECT evergreen.populate_call_number(7, 'ML 60 R', 'IMPORT CONCERTO', 3); -- BR4 +SELECT evergreen.populate_call_number(9, 'MT 125 .H667 C', 'IMPORT CONCERTO', 3); -- BM1 +SELECT evergreen.populate_call_number(4, '780 B', 'IMPORT CONCERTO', 2); -- BR1 +SELECT evergreen.populate_call_number(5, '780 A', 'IMPORT CONCERTO', 2); -- BR2 +SELECT evergreen.populate_call_number(6, '781 D', 'IMPORT CONCERTO', 2); -- BR3 +SELECT evergreen.populate_call_number(7, '781 G', 'IMPORT CONCERTO', 2); -- BR4 +SELECT evergreen.populate_call_number(9, '780 R', 'IMPORT CONCERTO', 2); -- BM1 + +-- Create copies +SELECT evergreen.populate_copy(4, 4, 'CONC40000', 'M'); -- BR1 +SELECT evergreen.populate_copy(5, 5, 'CONC50000', 'M'); -- BR2 +SELECT evergreen.populate_copy(6, 6, 'CONC60000', 'M'); -- BR3 +SELECT evergreen.populate_copy(7, 7, 'CONC70000', 'M'); -- BR4 +SELECT evergreen.populate_copy(9, 9, 'CONC90000', 'M'); -- BM1 + +SELECT evergreen.populate_copy(4, 4, 'CONC41000', 'M'); -- BR1 +SELECT evergreen.populate_copy(5, 5, 'CONC51000', 'M'); -- BR2 +SELECT evergreen.populate_copy(6, 6, 'CONC61000', 'M'); -- BR3 +SELECT evergreen.populate_copy(7, 7, 'CONC71000', 'M'); -- BR4 +SELECT evergreen.populate_copy(9, 9, 'CONC91000', 'M'); -- BM1 + +SELECT evergreen.populate_copy(4, 4, 'CONC42000', 'M'); -- BR1 +SELECT evergreen.populate_copy(5, 5, 'CONC52000', 'M'); -- BR2 +SELECT evergreen.populate_copy(6, 6, 'CONC62000', 'M'); -- BR3 +SELECT evergreen.populate_copy(7, 7, 'CONC72000', 'M'); -- BR4 +SELECT evergreen.populate_copy(9, 9, 'CONC92000', 'M'); -- BM1 + +SELECT evergreen.populate_copy(4, 4, 'CONC43000', 'M'); -- BR1 +SELECT evergreen.populate_copy(5, 5, 'CONC53000', 'M'); -- BR2 +SELECT evergreen.populate_copy(6, 6, 'CONC63000', 'M'); -- BR3 +SELECT evergreen.populate_copy(7, 7, 'CONC73000', 'M'); -- BR4 +SELECT evergreen.populate_copy(9, 9, 'CONC93000', 'M'); -- BM1 + +SELECT evergreen.populate_copy(4, 4, 'CONC44000', 'M'); -- BR1 +SELECT evergreen.populate_copy(5, 5, 'CONC54000', 'M'); -- BR2 +SELECT evergreen.populate_copy(6, 6, 'CONC64000', 'M'); -- BR3 +SELECT evergreen.populate_copy(7, 7, 'CONC74000', 'M'); -- BR4 +SELECT evergreen.populate_copy(9, 9, 'CONC94000', 'M'); -- BM1 + +SELECT evergreen.populate_copy(4, 4, 'CONC40000', '780'); -- BR1 +SELECT evergreen.populate_copy(5, 5, 'CONC50000', '780'); -- BR2 +SELECT evergreen.populate_copy(6, 6, 'CONC60000', '780'); -- BR3 +SELECT evergreen.populate_copy(7, 7, 'CONC70000', '780'); -- BR4 +SELECT evergreen.populate_copy(9, 9, 'CONC90000', '780'); -- BM1 + +SELECT evergreen.populate_copy(4, 4, 'CONC41000', '780'); -- BR1 +SELECT evergreen.populate_copy(5, 5, 'CONC51000', '780'); -- BR2 +SELECT evergreen.populate_copy(6, 6, 'CONC61000', '780'); -- BR3 +SELECT evergreen.populate_copy(7, 7, 'CONC71000', '780'); -- BR4 +SELECT evergreen.populate_copy(9, 9, 'CONC91000', '780'); -- BM1 + +-- Delete some copies, call numbers, and bib records +DELETE FROM biblio.record_entry + WHERE id IN (10, 20); + +DELETE FROM asset.call_number + WHERE record IN (30, 40) AND owning_lib = 4; + +DELETE FROM asset.copy + WHERE call_number IN ( + SELECT id FROM asset.call_number + WHERE record IN (50, 60) + ) AND circ_lib = 5; + +-- Add some prefixes and suffixes +INSERT INTO asset.call_number_prefix (owning_lib, label) VALUES + (4, 'REF BR1'), (5, 'DVD BR2'), (7, 'STORAGE BR4'); + +INSERT INTO asset.call_number_suffix (owning_lib, label) VALUES + (4, 'REFERENCE'), (5, 'MEDIA'), (7, 'DEPOSITORY'); + +-- Some call numbers will have both prefixes and suffixes +UPDATE asset.call_number + SET prefix = 1, suffix = 1 + WHERE owning_lib = 4 AND record IN (35, 45); + +UPDATE asset.call_number + SET prefix = 2, suffix = 2 + WHERE owning_lib = 5 AND record IN (55, 65); + +-- Some call numbers will have either a prefix or a suffix +UPDATE asset.call_number + SET prefix = 3 + WHERE owning_lib = 7 AND record IN (75); + +UPDATE asset.call_number + SET suffix = 3 + WHERE owning_lib = 7 AND record IN (85); + +-- Create some bibliographic parts +INSERT INTO biblio.monograph_part (record, label) VALUES + -- "Virtuoso wind concertos" + (84, 'DISC 1'), (84, 'DISC 2'), (84, 'DISC 3'), (84, 'DISC 4'), + -- "6 double concertos" + (53, 'DISC 1'), (53, 'DISC 2'), (53, 'DISC 3'), (53, 'DISC 4'); + +-- Create additional copies for the parts +INSERT INTO asset.copy (call_number, circ_lib, creator, editor, loan_duration, fine_level, barcode) + SELECT id, owning_lib, 1, 1, 1, 1, 'CONC70001' || id::text + FROM asset.call_number + WHERE record IN (53, 84) AND label LIKE 'M%' AND owning_lib = 7; + +INSERT INTO asset.copy (call_number, circ_lib, creator, editor, loan_duration, fine_level, barcode) + SELECT id, owning_lib, 1, 1, 1, 1, 'CONC70002' || id::text + FROM asset.call_number + WHERE record IN (53, 84) AND label LIKE '78%' AND owning_lib = 7; + +-- Assign the copies to the parts +INSERT INTO asset.copy_part_map (target_copy, part) + SELECT DISTINCT ON (ac.id) ac.id, bmp.id + FROM asset.copy ac INNER JOIN asset.call_number acn + ON ac.call_number = acn.id + INNER JOIN biblio.monograph_part bmp + ON acn.record = bmp.record + WHERE bmp.record IN (53, 84) + AND ac.circ_lib = 7; + +-- Create some conjoined items: +-- Create a new conjoined item type +INSERT INTO biblio.peer_type (name) + VALUES ('Media player'); + +-- Create additional copies for the conjoined items +INSERT INTO asset.copy (call_number, circ_lib, creator, editor, loan_duration, fine_level, barcode) + SELECT id, owning_lib, 1, 1, 1, 1, 'PEERBIB' || record::text + FROM asset.call_number + WHERE record = 15 AND label LIKE 'M%' AND owning_lib = 4; + +-- Create the peer bib copy map +INSERT INTO biblio.peer_bib_copy_map (peer_type, peer_record, target_copy) + SELECT bpt.id, acn.record, ac.id + FROM biblio.peer_type bpt + INNER JOIN asset.copy ac ON bpt.name = 'Media player' + INNER JOIN asset.call_number acn ON ac.barcode LIKE 'PEERBIB%' + AND ac.circ_lib = 4 + AND acn.record IN (24, 93, 97, 100) + GROUP BY bpt.id, acn.record, ac.id; diff --git a/Open-ILS/src/sql/test-data/deploy/assets_extras.sql b/Open-ILS/src/sql/test-data/deploy/assets_extras.sql new file mode 100644 index 0000000000..2fe73d89bd --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/assets_extras.sql @@ -0,0 +1,167 @@ +-- Deploy evergreen-test-data:assets_extras to pg +-- requires: assets_rda + +BEGIN; + +-- copy locations +-- copy location groups +-- copy stat cats +-- ... + +-- TODO: +-- This applies locations to copies without regard for the type +-- of record of each copy. This leads to nonsensical copy / location +-- pairings. (E.g. a violin concerto copy with a "Newspapers" location). +-- An improvement would be to create locations first, then select +-- locations for copies as they are inserted. Time will tell if there will +-- ever be a large enough variety of data to do this in a meaningful way. +-- Also, it's kind of a pain, so, maybe later.. + +INSERT INTO asset.copy_location (owning_lib, name) VALUES +(1, 'Reference'), +(4, 'Reference'), +(4, 'Easy Reader'), +(5, 'Easy Reader'), +(6, 'Easy Reader'), +(2, 'Fiction'), +(3, 'Fiction'), +(2, 'Non-Fiction'), +(3, 'Non-Fiction'), +(2, 'Juvenile Non-Fiction'), +(3, 'Juvenile Non-Fiction'), +(2, 'Young Adult Fiction'), +(4, 'Young Adult Fiction'), +(5, 'Young Adult Fiction'), +(6, 'Young Adult Fiction'), +(2, 'Children''s Fiction'), +(3, 'Children''s Fiction'), +(4, 'Audio/Video'), +(5, 'Audio/Video'), +(5, 'Music'), +(6, 'Music'), +(6, 'Audio/Video'), +(4, 'Science Fiction'), +(7, 'Science Fiction'), +(5, 'Genealogy'), +(6, 'Genealogy'), +(4, 'Biography'), +(5, 'Biography'), +(6, 'Local History'), +(7, 'Local History'), +(6, 'Federal Documents'); + + +-- non-holdable, non-circulating +INSERT INTO asset.copy_location + (owning_lib, name, holdable, circulate) VALUES +(4, 'Periodicals', FALSE, FALSE), +(6, 'Periodicals', FALSE, FALSE), +(5, 'Magazines', FALSE, FALSE), +(7, 'Magazines', FALSE, FALSE), +(4, 'Newspapers', FALSE, FALSE); + +-- non-holdable +INSERT INTO asset.copy_location (owning_lib, name, holdable) VALUES +(4, 'Reserves', FALSE), +(5, 'Reserves', FALSE), +(3, 'Reserves', FALSE), +(5, 'Theses', FALSE), +(7, 'Theses', FALSE), +(2, 'Special Collections', FALSE), +(6, 'Special Collections', FALSE), +(7, 'Special Collections', FALSE); + + +-- different settings per org level +INSERT INTO asset.copy_location + (owning_lib, name, holdable, opac_visible, circulate) VALUES +(2, 'Display', FALSE, FALSE, TRUE), +(4, 'Display', FALSE, FALSE, FALSE), +(5, 'Display', TRUE, FALSE, FALSE), +(6, 'Display', TRUE, FALSE, FALSE), +(7, 'Display', FALSE, FALSE, FALSE), +(1, 'New Arrivals', TRUE, TRUE, TRUE), +(2, 'New Arrivals', FALSE, TRUE, TRUE), +(4, 'New Arrivals', TRUE, TRUE, FALSE), +(5, 'New Arrivals', TRUE, TRUE, TRUE); + +-- copy location groups + +INSERT INTO asset.copy_location_group (name, owner) + VALUES ('Juvenile Collection', 2); + +INSERT INTO asset.copy_location_group_map (lgroup, location) + SELECT CURRVAL('asset.copy_location_group_id_seq'), id + FROM asset.copy_location + WHERE owning_lib IN (2, 4, 5) AND + opac_visible AND + name IN ( + 'Young Adult Fiction', + 'Children''s Fiction', + 'Easy Reader', + 'Juvenile Non-Fiction' + ); + +INSERT INTO asset.copy_location_group (name, owner) + VALUES ('Local Interest Collection', 3); + +INSERT INTO asset.copy_location_group_map (lgroup, location) + SELECT CURRVAL('asset.copy_location_group_id_seq'), id + FROM asset.copy_location + WHERE owning_lib IN (3, 6, 7) AND + opac_visible AND + name IN ( + 'Geneology', + 'Special Collections', + 'Local History' + ); + +-- Distribute copies evenly across copy locations whose owning_lib +-- matches the copy circ lib. To provide some level of repeatable +-- outcome, we loop instead of applying locations at randon within +-- a given owning_lib. +DO $$ + DECLARE cur_loc INTEGER; + DECLARE cur_copy asset.copy%ROWTYPE; + DECLARE cur_cn INTEGER; +BEGIN + cur_loc := 0; + cur_cn := 0; + + FOR cur_copy IN SELECT * FROM asset.copy + WHERE location = 1 ORDER BY circ_lib, call_number, id LOOP + + -- Move to the next copy location if we are changing call numbers. + -- This provides some visual consistency between call numbers and + -- copy locations and helps avoid having practically every copy in + -- view residing in a different location. + IF cur_cn <> cur_copy.call_number THEN + + -- find the next location for the current copy's circ lib + SELECT INTO cur_loc id FROM asset.copy_location + WHERE owning_lib = cur_copy.circ_lib AND id > cur_loc + ORDER BY id LIMIT 1; + + IF NOT FOUND THEN + -- start back over at the front of the list + cur_loc := 0; + SELECT INTO cur_loc id FROM asset.copy_location + WHERE owning_lib = cur_copy.circ_lib AND id > cur_loc + ORDER BY id LIMIT 1; + END IF; + + IF NOT FOUND THEN + -- no copy location at this circ lib, leave the default (1) + CONTINUE; + END IF; + + cur_cn := cur_copy.call_number; + END IF; + + UPDATE asset.copy SET location = cur_loc WHERE id = cur_copy.id; + END LOOP; +END $$; + +UPDATE asset.copy SET location = 1 WHERE id = 2905; + +COMMIT; diff --git a/Open-ILS/src/sql/test-data/deploy/assets_fic.sql b/Open-ILS/src/sql/test-data/deploy/assets_fic.sql new file mode 100644 index 0000000000..617dff331e --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/assets_fic.sql @@ -0,0 +1,28 @@ +-- Create call numbers +SELECT evergreen.populate_call_number(4, 'FIC ', 'IMPORT FIC', NULL); -- BR1 +SELECT evergreen.populate_call_number(5, 'FIC ', 'IMPORT FIC', NULL); -- BR2 +SELECT evergreen.populate_call_number(6, 'FIC ', 'IMPORT FIC', NULL); -- BR3 +SELECT evergreen.populate_call_number(7, 'FIC ', 'IMPORT FIC', NULL); -- BR4 +SELECT evergreen.populate_call_number(9, 'FIC ', 'IMPORT FIC', NULL); -- BM1 + +-- Create copies +SELECT evergreen.populate_copy(4, 4, 'FIC40000', 'FIC'); -- BR1 +SELECT evergreen.populate_copy(5, 5, 'FIC50000', 'FIC'); -- BR2 +SELECT evergreen.populate_copy(6, 6, 'FIC60000', 'FIC'); -- BR3 +SELECT evergreen.populate_copy(7, 7, 'FIC70000', 'FIC'); -- BR4 +SELECT evergreen.populate_copy(9, 9, 'FIC90000', 'FIC'); -- BM1 + +SELECT evergreen.populate_copy(4, 4, 'FIC41000', 'FIC'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'FIC42000', 'FIC'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'FIC43000', 'FIC'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'FIC44000', 'FIC'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'FIC45000', 'FIC'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'FIC46000', 'FIC'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'FIC47000', 'FIC'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'FIC48000', 'FIC'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'FIC49000', 'FIC'); -- BR1 + +SELECT evergreen.populate_copy(5, 5, 'FIC51000', 'FIC'); -- BR2 +SELECT evergreen.populate_copy(6, 6, 'FIC61000', 'FIC'); -- BR3 +SELECT evergreen.populate_copy(7, 7, 'FIC71000', 'FIC'); -- BR4 +SELECT evergreen.populate_copy(9, 9, 'FIC91000', 'FIC'); -- BM1 diff --git a/Open-ILS/src/sql/test-data/deploy/assets_fre.sql b/Open-ILS/src/sql/test-data/deploy/assets_fre.sql new file mode 100644 index 0000000000..dcf0081a03 --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/assets_fre.sql @@ -0,0 +1,26 @@ +-- Create call numbers +SELECT evergreen.populate_call_number(4, 'FRE ', 'IMPORT FRE', NULL); -- BR1 +SELECT evergreen.populate_call_number(5, 'FRE ', 'IMPORT FRE', NULL); -- BR2 +SELECT evergreen.populate_call_number(6, 'FRE ', 'IMPORT FRE', NULL); -- BR3 +SELECT evergreen.populate_call_number(7, 'FRE ', 'IMPORT FRE', NULL); -- BR4 +SELECT evergreen.populate_call_number(9, 'FRE ', 'IMPORT FRE', NULL); -- BM1 + +-- Create copies +SELECT evergreen.populate_copy(4, 4, 'FRE40000', 'FRE'); -- BR1 +SELECT evergreen.populate_copy(5, 5, 'FRE50000', 'FRE'); -- BR2 +SELECT evergreen.populate_copy(6, 6, 'FRE60000', 'FRE'); -- BR3 +SELECT evergreen.populate_copy(7, 7, 'FRE70000', 'FRE'); -- BR4 +SELECT evergreen.populate_copy(9, 9, 'FRE90000', 'FRE'); -- BM1 + +SELECT evergreen.populate_copy(4, 4, 'FRE41000', 'FRE'); -- BR1 +SELECT evergreen.populate_copy(5, 5, 'FRE51000', 'FRE'); -- BR2 +SELECT evergreen.populate_copy(6, 6, 'FRE61000', 'FRE'); -- BR3 +SELECT evergreen.populate_copy(7, 7, 'FRE71000', 'FRE'); -- BR4 +SELECT evergreen.populate_copy(9, 9, 'FRE91000', 'FRE'); -- BM1 + +-- delete the last 10 FRE copies +DELETE FROM asset.copy WHERE id IN ( + SELECT id + FROM asset.copy + WHERE barcode LIKE 'FRE%' + ORDER BY id DESC LIMIT 10); diff --git a/Open-ILS/src/sql/test-data/deploy/assets_graphic_880.sql b/Open-ILS/src/sql/test-data/deploy/assets_graphic_880.sql new file mode 100644 index 0000000000..d97cb66910 --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/assets_graphic_880.sql @@ -0,0 +1,19 @@ +-- Create call numbers +SELECT evergreen.populate_call_number(4, 'G880 ', 'IMPORT G880', NULL); -- BR1 +SELECT evergreen.populate_call_number(5, 'G880 ', 'IMPORT G880', NULL); -- BR2 +SELECT evergreen.populate_call_number(6, 'G880 ', 'IMPORT G880', NULL); -- BR3 +SELECT evergreen.populate_call_number(7, 'G880 ', 'IMPORT G880', NULL); -- BR4 +SELECT evergreen.populate_call_number(9, 'G880 ', 'IMPORT G880', NULL); -- BM1 + +-- Create copies +SELECT evergreen.populate_copy(4, 4, 'G88040000', 'G880'); -- BR1 +SELECT evergreen.populate_copy(5, 5, 'G88050000', 'G880'); -- BR2 +SELECT evergreen.populate_copy(6, 6, 'G88060000', 'G880'); -- BR3 +SELECT evergreen.populate_copy(7, 7, 'G88070000', 'G880'); -- BR4 +SELECT evergreen.populate_copy(9, 9, 'G88090000', 'G880'); -- BM1 + +SELECT evergreen.populate_copy(4, 4, 'G88041000', 'G880'); -- BR1 +SELECT evergreen.populate_copy(5, 5, 'G88051000', 'G880'); -- BR2 +SELECT evergreen.populate_copy(6, 6, 'G88061000', 'G880'); -- BR3 +SELECT evergreen.populate_copy(7, 7, 'G88071000', 'G880'); -- BR4 +SELECT evergreen.populate_copy(9, 9, 'G88091000', 'G880'); -- BM1 diff --git a/Open-ILS/src/sql/test-data/deploy/assets_rda.sql b/Open-ILS/src/sql/test-data/deploy/assets_rda.sql new file mode 100644 index 0000000000..fbd2b53ad7 --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/assets_rda.sql @@ -0,0 +1,28 @@ +-- Create call numbers +SELECT evergreen.populate_call_number(4, 'RDA ', 'IMPORT RDA', NULL); -- BR1 +SELECT evergreen.populate_call_number(5, 'RDA ', 'IMPORT RDA', NULL); -- BR2 +SELECT evergreen.populate_call_number(6, 'RDA ', 'IMPORT RDA', NULL); -- BR3 +SELECT evergreen.populate_call_number(7, 'RDA ', 'IMPORT RDA', NULL); -- BR4 +SELECT evergreen.populate_call_number(9, 'RDA ', 'IMPORT RDA', NULL); -- BM1 + +-- Create copies +SELECT evergreen.populate_copy(4, 4, 'RDA40000', 'RDA'); -- BR1 +SELECT evergreen.populate_copy(5, 5, 'RDA50000', 'RDA'); -- BR2 +SELECT evergreen.populate_copy(6, 6, 'RDA60000', 'RDA'); -- BR3 +SELECT evergreen.populate_copy(7, 7, 'RDA70000', 'RDA'); -- BR4 +SELECT evergreen.populate_copy(9, 9, 'RDA90000', 'RDA'); -- BM1 + +SELECT evergreen.populate_copy(4, 4, 'RDA41000', 'RDA'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'RDA42000', 'RDA'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'RDA43000', 'RDA'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'RDA44000', 'RDA'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'RDA45000', 'RDA'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'RDA46000', 'RDA'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'RDA47000', 'RDA'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'RDA48000', 'RDA'); -- BR1 +SELECT evergreen.populate_copy(4, 4, 'RDA49000', 'RDA'); -- BR1 + +SELECT evergreen.populate_copy(5, 5, 'RDA51000', 'RDA'); -- BR2 +SELECT evergreen.populate_copy(6, 6, 'RDA61000', 'RDA'); -- BR3 +SELECT evergreen.populate_copy(7, 7, 'RDA71000', 'RDA'); -- BR4 +SELECT evergreen.populate_copy(9, 9, 'RDA91000', 'RDA'); -- BM1 diff --git a/Open-ILS/src/sql/test-data/deploy/auth_concerto.sql b/Open-ILS/src/sql/test-data/deploy/auth_concerto.sql new file mode 100644 index 0000000000..9034456b8a --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/auth_concerto.sql @@ -0,0 +1,76 @@ +\set xact_id '''IMPORT CONCERTO''' + +INSERT INTO authority.record_entry(marc, last_xact_id) VALUES +('00189nz a2200073O 45003022CONIFER19970725125544.0970601nnbacnnnabbn a ana uGirdlestone, Cuthbert Morton,1895-19753022authority', :xact_id), +('03250cz a2200565n 45001116068CONIFER20060301104318.0800801nn acannaabn a aaa n 50043095 (OCoLC)oca00078265(DLC)n 50043095DLCDLCDLCMoSW-MuDLCCtY-MusDLCOOCCaOWAKabalevsky, Dmitry Borisovich,1904-1987.Kabalevsky, Dmitry Borisovich,1904-Kabelevsky, Dmitri M.,1904-Kabalewsky, D.,1904-Kabalewski, Dmitri,1904-Kabalevsky, Dmitri,1904-Kabalewskij, Dmitri M.,1904-nnaKabalevskii, Dmitrii Borisovich,1904-Kabalevskij, Dmitrij,1904-Kabalevskii, D.(Dmitrii),1904-Kabalevsky, D.(Dmitri),1904-Kabalevsky, Dimitry,1904-Kabalevskii, Dm.(Dmitrii),1904-Kabalewski, Dimitri,1904-Kabalevskij, Dmitrij Borissovic,1904-Kabalevsky, Dimitri,1904-Kabalevsky, Dm.(Dmitri),1904-Kabarefusuki, Domitori,1904-Kabalevski, Dmitri,1904-Kabalewsky, Dmitri,1904-Kabalevski, Dimitri,1904-His Sonatina in C major for piano, 1945.Ency. brit.(Kabalevksy, Dmitry Borisovich, b. 1904)Linde, B. Konsert for violin och orkester, op. 18 [SR] p1972:label (Dmitrij Kabalevskij)His Piano concerto no. 4, op. 99 [SR] 1982:label (Dmitri Kabalevsky; D. Kabalevskii) container (D. Kabalevsky)Washington post, 2/19/87:obit. (Dimitry Kabalevsky; d. at age 83)His Pedagogicheskie razmyshleniiı̐aı̐Ł, 1986:t.p. (Dm. Kabalevskii)Zaritskaya, I. Russische Meisterwerke [SR] p1985:container (Dimitri Kabalewski)Pribegina, G. Moskovskaiı̐aı̐Ł konservatoriiı̐aı̐Ł, 1991:p. 213 (Dmitrii Borisovich Kabalevskii; Dmitry Borisovich Kabalevsky; 1904-1986)His Twenty-four preludes [SR] 1991:container (Dmitrij Borissovic Kabalevskij)His Piano concerto no. 3 [SR] 1991?:label (Dimitri Kabalevsky)Kabalevsky, D.B. Un compositeur parle de l''education musicale, c1987:t.p. (Dm. Kabalevsky) p. 4 of cover (Dmitri Kabalevsky)Tokyo-to Kokyo Gakudan. Kodomo no shinfoni, p1980:label (Dmitri Kabalevsky) container (Domitori Kabarefusuki)Baker''s biographical dictionary of twentieth-century classical musicians, c1997(Kabalevsky, Dmitri (Borisovich); b. Dec. 30, 1904, St. Petersburg; d. Feb. 14, 1987, Moscow; Russian composer)Savenko, V. English poets, Russian romances [SR] p2001:container (Dmitry Kabalevsky) insert (Dmitri Kabalevski; Dmitri Kabalewski)Kabalevsky, D.B. Klaviersonaten 2 & 3 [SR] p2001:label (Dmitri Kabalewsky) insert (Dmitri Kabalewsky; Dmitri Borissowitsch Kabalewsky; Dmitri Kabalevsky; Dmitri Borisovich Kabalevsky; Dimitri Kabalevski; Dimitri Borissovitch Kabalevski)composer, musician10386981116068authority', :xact_id), +('01959cz a2200349n 45001122809CONIFER20060706093222.0910528nn acannaabn a aaa cno 91013518 (OCoLC)oca02961636(DLC)no 91013518InU-MuengInU-MuDLCPPi-MACaOWAKabalevsky, Dmitry Borisovich,1904-1987.Detskie p£esy,op. 27Kabalevsky, Dmitry Borisovich,1904-Detskie p£esy,op. 27Kabalevsky, Dmitry Borisovich,1904-1987.KinderstuckeKabalevsky, Dmitry Borisovich,1904-1987.30 detskikh p£esKabalevsky, Dmitry Borisovich,1904-1987.30 pieces for childrenKabalevsky, Dmitry Borisovich,1904-1987.Thirty pieces for childrenKabalevsky, Dmitry Borisovich,1904-1987.Pieces for children,op. 27Kabalevsky, Dmitry Borisovich,1904-1987.Tridtı̐sı̐Łat£ detskikh p£esKabalevsky, Dmitry Borisovich,1904-1987.Thirty children''s piecesKabalevsky, Dmitry Borisovich,1904-1987.30 children''s piecesKabalevsky, Dmitry Borisovich,1904-1987.Children''s piecesKabalevsky, Dmitry Borisovich,1904-1987.30 piano pieces for young peopleKabalevsky, Dmitry Borisovich,1904-1987.Thirty piano pieces for young peopleKabalevsky, Dmitry Borisovich,1904-1987.Piano pieces for young peopleKabalevsky, Dmitry Borisovich,1904-1987.Pieces pour enfants,op. 27Kabalevsky, Dmitry Borisovich,1904-1987.30 pieces pour enfantsKabalevsky, Dmitry Borisovich,1904-1987.Trente pieces pour enfantsKabalevsky, D.B. Kinderstucke, 1946-51:t.p. (Kinderstucke : op. 27)Muz. entı̐sı̐Ł.(Detskie p£esy for piano became very popular; 30 detskikh p£es (1938))10474311122809authority', :xact_id), +('00529cz a2200157n 45001125297CONIFER20060822085121.0980127nn acannaabn n aaa cno 98045360 (OCoLC)oca04629698(DLC)no 98045360OCoLCOCoLCTxDN-MuCaOWAKabalevsky, Dmitry Borisovich,1904-Sonatas,violoncello, piano,op. 71,B́Ư majorMachine-derived authority record.LCCN 95-750305: Kabalevsky, D.B. Chamber and piano music, p199410455601125297authority', :xact_id), +('00226nz a2200073O 4500392923CONIFER20020226160736.0020226nneacnnnabbn a aaa uKabalevsky, Dmitry Borisovich,1904-1987.Concertos,piano,no. 2,op. 23392923authority', :xact_id), +('00684cz a2200193n 45001079351CONIFER20070810104842.0880211nnbacannaabn n aaa 0055A8795(CaOONL)0055A8795CaOONLnnnCaOONLCaOWAnlcML410.F4565BiographyFinzi, Gerald,1901-1956Lovreglio, D. [Fantasia sull''opera La traviata] Fantasia on "La traviata" [sound recording].His Prelude and fugue for string trio, c1942.New Grove(Finzi, Gerald (Raphael); b. 7-14-01, London, d. 9-27-56, Oxford; English composer)LCNA 1977-1986. AA2. Dates.9266851079351authority', :xact_id), +('00789cz a2200181n 45001125403CONIFER20060823091605.0970903nn acannaabn a aaa n 97088234 (OCoLC)oca04422229(DLC)n 97088234DLCDLCOOCCaOWAFinzi, Gerald,1901-1956.Let us garlands bringFinzi, Gerald,1901-1956.Shakespearean songsFinzi, Gerald,1901-1956.Apportons des guirlandesHarper, H. Songs for soprano and baritone [SR] 195-?:label (Shakespearean songs)New Grove(op. 18, Let us garlands bring (Shakespeare), bar, pf: Come away, death, 1938; Who is Sylvia?; Fear no more the heat o'' the sun, 1929; O mistress mine, 1942; It was a lover, 1940)1051531125403authority', :xact_id), +('00474nz a2200157n 45001125580CONIFER20060825090736.0971229nn acannaabn n aad cno 97081251 (OCoLC)oca04568256(DLC)no 97081251OCoLCOCoLCCaOWAFinzi, Gerald,1901-1956.Young man''s exhortationMachine-derived authority record.LCCN 86-754132: Finzi, G. Earth and air and rain, p198510512511125580authority', :xact_id), +('01537cz a2200205n 45001095206CONIFER20050131084135.0990609nn acannaabn a aaa cno 99041152 nr 00009485 (OCoLC)oca05003451(DLC)no 99041152ViBlbVViBlbVDLCCaOWAPetrov, Nikolai(Nikolai Vladimirovich)Petrov, Nikolai VladimirovichPoliticheskii al£manakh Rossii 1997, c1998:t.p. (Nikolai Petrov)OCLC, June 7, 1999(hdgs.: Petrov, Nikolai; Petrov, Nikolai (Nikolai Vladimirovich); Petrov, Nikolai Vladimirovich; usage: Nikolai Petrov, Nikolai Vladimirovich Petrov)Aleksandr Lebed£ v Krasnoiı̐aı̐Łrskom krae, 1999:t.p. (Nikolai Petrov) ob avtore (Petrov Nikolai Vladimorovich, kandidat geograficheskikh nauk, chlen nauchnogo soveta Moskovskogo Tı̐Sı̐Łentr Karnegi)www.ceip.org/files/news(Nikolai Petrov has served as chief organizer of the Analysis and Forecast Division in the Supreme Soviet, advisor and analyst for the Russian Presidential Administration, and a scholar at the Kennan Institute for Advanced Russian Studies. Petrov earned his Ph.D. from Moscow State University. Petrov also heads the Center for Political Geographic Research and is a senior research associate with the Institute of Geography at the Russian Academy of Sciences)www.politstudies.ru/archive/authors(Petrov Nikolai Vladimirovich; doktor geograficheskikh nauk10117221095206authority', :xact_id), +('00163nz a2200073O 4500391673CONIFER19991109155912.0991109nnbadnnnabbn a aaa uPetrov, Nikolai391673authority', :xact_id), +('00164nz a2200073O 4500391674CONIFER19991109155932.0991109nnbadnnnabbn a aaa uKitaenko, Dmitri391674authority', :xact_id), +('00172nz a2200073O 4500391677CONIFER19991109162048.0991109nnbadnnnabbn a aaa uGilels, Emil,1916-1985391677authority', :xact_id), +('00159nz a2200073O 4500391675CONIFER19991109160012.0991109nnbadnnnabbn a aaa uPopov, Yuri391675authority', :xact_id), +('00160nz a2200073O 4500391015CONIFER19990106135522.0990106nnbacnnnabbn a aaa uHeino, Laura391015authority', :xact_id), +('00175nz a2200073O 4500390853CONIFER19990106113208.0981014nnbacnnnabbn a aaa uHall, Robert George,1954-390853authority', :xact_id), +('00225nz a2200073O 4500393366CONIFER20030124120048.0030124nneacnnnabbn a aaa uHandel, George Frideric,1685-1759.Samson.Vocal score.English & German393366authority', :xact_id), +('01323mz a2200265r 4500971714CONIFER19970516191853.0800624nn acannaabn a aaa n 79129204 ULCAD0379DLCDLCDLCCaOWAHandel, George Frideric,1685-1759Haendel, Georges-Frederic,1685-1759nnaHandel, Georg Friedrich,1685-1759Handel, G. F.(George Frideric),1685-1759Haendel, G. F.(Georg Friedrich),1685-1759Haendel, Georg Friedrich,1685-1759Hendelis, G. F.,1685-1759Handel, George Frederic,1685-1759Handel, George Frederick,1685-1759Thematic catalog numbers are from the Handel-Handbuch. They are used in uniform titles for types of composition, excluding op. 2-7, and other works as required under AA2 25.31B. E.g.: Concertos, organ, orchestra, HWV 295, F major; Sonatas, oboe, continuo, HWV 366, C minor; Trio sonatas, violins, continuo, HWV 393, G minor; Suites, harpsichord, HWV 430, E major.His The ways of Zion do mourn, 1979:t.p. (G.F. Handel)His The flocks shall leave the mountains, c1988:t.p. (George Frederic Handel)AAA4694chj glob 94/11/24971714authority', :xact_id), +('00698mz a2200193r 4500971715CONIFER19970516191853.0851231nn acannaabn a aaa cn 85205494 ULCAD0380WMUWDLCDLCCaOWAHandel, George Frideric,1685-1759.Harpsichord musicHandel, George Frideric,1685-1759.Cembalo-WerkeHandel, George Frideric,1685-1759.Samtliche CembalowerkeHandel, George Frideric,1685-1759.ClavierwerkHandel, George Frideric,1685-1759.Keyboard worksnnaHandel, Georg Friedrich,1685-1759.Works,harpsichordAAA4404chj971715authority', :xact_id), +('01095cz a2200241n 45001022224CONIFER20010117150921.0000428n| acabcaaan |a aaa n 86731951 (OCoLC)oca01847712DLCDLCDLCM3.H26 1983 // NOTE: This is not the Barenreiter 1955 edition, for which we are getting added vols. For that multi-volume set, see bib.#418418. chj 2001/01/17Handel, George Frideric,1685-1759.Works.1983Handel, George Frideric,1685-1759.Hallische Handel-Ausgabe.1983Hallische Handel-Ausgabe.1983Ser. 4, Bd. 10/2DLCLeipzigDeutscher Verlag fur MusikfDLCtDLCcDLCsDLCNOTE: This is not the Barenreiter 1955 edition, for which we are getting added vols. For that multi-volume set, see bib.#418418. chj 2001/01/17Handel, G.F. Sieben Sonaten fur zwei Violinen und Basso continuo Opus 5 ... 1985:series t.p. (Hallische Handel-Ausgabe)1022224authority', :xact_id), +('00674cz a2200205n 45001061944CONIFER20021007152024.0830404n| acabbaaa| |a ana ||| n 42010680 (DLC)n 42010680DLCDLCDLCHandel, George Frideric,1685-1759.Works.1979nnaaHandel, Georg Friedrich,1685-1759.Works.SelectionsHandel, George Frideric,1685-1759.Novello Handel edition.1979Novello Handel edition.1979Borough Green, KentNovellofDLCtDLCsDLCHandel, G. F. The ways of Zion do mourn, 1979.1061944authority', :xact_id), +('00864cz a2200205n 45001122009CONIFER20060621081535.0811230nn acannaabe a aaa n 81133945 (DLC)n 81133945DLCDLCDLCCaOWAHandel, George Frideric,1685-1759.Concertos,organ, orchestrannaaHandel, Georg Friedrich,1685-1759.Concertos,organHandel, George Frideric,1685-1759.Organ concertiHandel, George Frideric,1685-1759.Concertos,harpsichord, orchestraHandel, George Frideric,1685-1759.Concertos,piano, orchestraHandel, George Frideric,1685-1759.OrgelkonzerteHandel, George Frideric,1685-1759.Concerti d''organoHandel, George Frideric,1685-1759.Organ concertos10425141122009authority', :xact_id), +('00284nz a2200097n 45001122024CONIFER20060621084442.0060621nn acannaaba n aaa CaOWACaOWAHandel, George Frideric,1685-1759.Faramondo1042514 Handel, George Frideric. Handel, 20041122024authority', :xact_id), +('01142cz a2200253n 45001122023CONIFER20060621083824.0800320nn acannaabn a aaa n 80008124 (OCoLC)oca00390691(DLC)n 80008124DLCengDLCDLCMoSW-MuDLCPPi-MACaOWAHandel, George Frideric,1685-1759.Water musicHandel, George Frideric,1685-1759.Musica sull''acquaHandel, George Frideric,1685-1759.Concertos,orchestra,no. 25Handel, George Frideric,1685-1759.WassermusikHandel, George Frideric,1685-1759.Concerti grossi,no. 25Handel, George Frideric,1685-1759.Water musickHandel, George Frideric,1685-1759.Musica sobre el aguaHandel, George Frideric,1685-1759.Handel''s celebrated Water musick compleatHandel, George Frideric,1685-1759.Water musick compleatHandel, G.F. Water music [SR] 1993?:label (Water music = Wassermusik)Handel-Handbuch(348-350. Water music)10425141122023authority', :xact_id), +('01950cz a2200325n 45001120293CONIFER20060523075720.0820108nn acannaabn a aaa n 81133640 (DLC)n 81133640DLCDLCDLCCaOWAHandel, George Frideric,1685-1759.Suites,harpsichord,HWV 430,E major.Air con variazioniHandel, George Frideric,1685-1759.Favourite air with variationsHandel, George Frideric,1685-1759.Grobschmied-VariationenHandel, George Frideric,1685-1759.Harmonious blacksmithHandel, George Frideric,1685-1759.Aria con variazioni,harpsichord,HWV 430, no. 4,E majorHandel, George Frideric,1685-1759.Herrero armoniosonnaHandel, Georg Friedrich,1685-1759.Suite,harpsichord,1st collection, no. 5,E major.AirHandel, George Frideric,1685-1759.Airs,harpsichord,HWV 430, no. 4,E majorHandel, George Frideric,1685-1759.Air and variations "The harmonious blacksmith"Handel, George Frideric,1685-1759.Harmonische GrobschmiedHandel, George Frideric,1685-1759.Forgeron harmonieuxHandel, George Frideric,1685-1759.Air and variations,harpsichord,HWV 430, no. 4,E majorHandel, George Frideric,1685-1759.Air with variations,harpsichord,HWV 430, no. 4,E majorHandel, George Frideric,1685-1759.Air con variazioni,harpsichord,HWV 430, no. 4,E majorHandel, George Frideric,1685-1759.Aire and variations "Harmonious blacksmith"Handel, George Frideric,1685-1759.Harmonious blacksmith variationsHandel, George Frideric,1685-1759.Harmonieux forgeronHandel-Handbuch(430, Suite Nr. 5 E-Dur: 4. Air con variazioni)10442061120293authority', :xact_id), +('01132cz a2200241n 45001124603CONIFER20060809123207.0840531nn acannaabn a aaa n 84016630 n 82271077 no 97074447 (OCoLC)oca01115639(DLC)n 84016630DLCDLCDLCMnMpUMNXCaOWAHandel, George Frideric,1685-1759.Harpsichord music.SelectionsHandel, George Frideric,1685-1759.Virtuoso HandelHandel, George Frideric,1685-1759.Stucke und ImprovisationenHandel, George Frideric,1685-1759.Music for harpsichord (1733)Handel, George Frideric,1685-1759.Suites de pieces,2e v.Handel, George Frideric,1685-1759.Harpsichord pieces from the Aylesford collectionHandel, George Frideric,1685-1759.Piano compositionsHandel, George Frideric,1685-1759.Ausgewahlte Stucke, Klavier zu zwei HandenHis The virtuoso Handel [SR] p1982.His Ausgewahlte Stucke, Klavier zu zwei Handen, 1931?10501471124603authority', :xact_id), +('00622cz a2200193n 45001125928CONIFER20060831075927.0831115nn acannaabn a aaa n 83153234 (DLC)n 83153234DLCDLCDLCCaOWAHandel, George Frideric,1685-1759.JephthaHandel, George Frideric,1685-1759.JephtaHandel, George Frideric,1685-1759.JepthaHandel, George Frideric,1685-1759.Handel''s oratorio, JephthaHis Jephta [SR] 197-.Bell(Jephtha)New Grove(Jephtha)10518021125928authority', :xact_id), +('01151cz a2200217n 45001121209CONIFER20060612134816.0850207nn acannaabn a aaa n 84183686 (DLC)n 84183686DLCDLCDLCCaOWAHandel, George Frideric,1685-1759.Concertos,oboe, string orchestra,HWV 287,G minor;arr.Handel, George Frideric,1685-1759.Concertos,bassoon, piano,G minorHandel, George Frideric,1685-1759.Concertos,trombone, harpsichord,HWV 287,G minorHandel, George Frideric,1685-1759.Concertos,trombone, harpsichord,B. 5.No. 3Handel, George Frideric,1685-1759.Sonatas,violoncello, piano,G minorHandel, George Frideric,1685-1759.Concertos,trombone, piano,HWV 287,F minorHandel, George Frideric,1685-1759.Concertos,trumpet, piano,HWV 287,F minorSauer, R. Vox Gabrieli [SR] p1983.LC data base, 7/25/86(hdg.: Handel, George Frideric, 1685-1759. Concertos, oboe, string orchestra, B. 5. No. 3; arr.)10450181121209authority', :xact_id), +('00601cz a2200181n 45001122007CONIFER20060621080218.0820628nn acannaabn a aaa n 82066674 (OCoLC)oca00763509(DLC)n 82066674DLCengDLCDLCPPi-MACaOWAHandel, George Frideric,1685-1759.MessiahHandel, George Frideric,1685-1759.MessiasHandel, George Frideric,1685-1759.MessieHandel, G.F. The Messiah, c1947.Grove music online, Jan. 21, 2004(HWV 56. Messiah)10425141122007authority', :xact_id), +('01166cz a2200265n 45001122014CONIFER20060621082806.0860604nn acannaabn a aaa n 86134485 (OCoLC)oca01642232(DLC)n 86134485DLCengDLCDLCOOxM-MuDLCCaOWAHandel, George Frideric,1685-1759.Cantatas.SelectionsHandel, George Frideric,1685-1759.Duello amorosoHandel, George Frideric,1685-1759.Italian cantatasHandel, George Frideric,1685-1759.Geistliche KantatenHandel, George Frideric,1685-1759.Six cantates profanesHandel, George Frideric,1685-1759.6 cantates profanesHandel, George Frideric,1685-1759.Cantates profanesHandel, George Frideric,1685-1759.Italian secular cantatasHandel, George Frideric,1685-1759.Latin motetsHandel, George Frideric,1685-1759.Cantatas for alto and continuoHandel, George Frideric,1685-1759.Arcadian duetsHis Il duello amoroso [SR] p1985.10425141122014authority', :xact_id), +('01290cz a2200277n 45001122015CONIFER20060621083054.0810116nn acannaabn a aaa n 80166824 (OCoLC)oca00545959(DLC)n 80166824DLCengDLCDLCPPi-MACaOWAHandel, George Frideric,1685-1759.Coronation anthemsHandel, George Frideric,1685-1759.Anthems for the coronation of George IIHandel, George Frideric,1685-1759.Coronation anthems for George IIHandel, George Frideric,1685-1759.Hymnes du couronnementHandel, George Frideric,1685-1759.Festlieder fur eine KronungHandel, George Frideric,1685-1759.Four coronation anthemsHandel, George Frideric,1685-1759.4 coronation anthemsHandel, George Frideric,1685-1759.KronungskantatenHandel, George Frideric,1685-1759.Kronungshymnen fur Konig Georg IIHandel, G.F. Four coronation anthems, c1990.Bell(78. Coronation anthems for George II)New Grove(Coronation anthems)Handel-Handbuch(Coronation anthems fur George II; HWV 258-261)10425141122015authority', :xact_id), +('00928nz a2200241n 45001122008CONIFER20060621081243.0870129nn acabaaaan a aaa n 86740906 (DLC)n 86740906DLCDLCDLCCaOWAHandel, George Frideric,1685-1759.Chamber musicHandel, George Frideric,1685-1759.Complete instrumental chamber music of G.F. Handel (1685-1759)Handel, George Frideric,1685-1759.Instrumental chamber music of G.F. Handel (1685-1759)Complete instrumental chamber music of G.F. Handel (1685-1759)Instrumental chamber music of G.F. Handel (1685-1759)v. 2DLCLondonCRDfDLCtDLCsDLCHandel, G. F. The trio sonatas op. 2 for two violins and continuo [SR] p1982:container10425141122008authority', :xact_id), +('01263cz a2200229n 45001122004CONIFER20060621080109.0870429nn acannaabn a aaa n 87827713 (OCoLC)oca01845221(DLC)n 87827713DLCengDLCDLCOCoLCPPi-MACaOWAHandel, George Frideric,1685-1759.Brockes-PassionHandel, George Frideric,1685-1759.Passion nach Barthold Heinrich BrockesHandel, George Frideric,1685-1759.Fur die Sunde der Welt gemarterte und sterbende JesusHandel, George Frideric,1685-1759.Passionoratorium nach Barthold Heinrich BrockesHandel, George Frideric,1685-1759.Fur die Sunden der Welt gemarterte und sterbende JesusHandel, George Frideric,1685-1759.Passion of ChristHis Passion nach Barthold Heinrich Brockes, 1985.Handel-Handbuch(HWV 48. Der fur die Sunde der Welt gemarterte und sterbende Jesus : Passionoratorium nach Barthold Heinrich Brockes. Running title: Brockes-Passion)Grove music online, Jan. 22, 2004(HWV 48. Der fur die Sunde der Welt gemarterte und sterbende Jesus (Brockes Passion))10425141122004authority', :xact_id), +('00552nz a2200169n 45001122005CONIFER20060621080139.0950630nn acannaabn a aaa cno 95031605 (OCoLC)oca03867757(DLC)no 95031605MoSW-MuMoSW-MuCaOWAHandel, George Frideric,1685-1759.BelshazzarHandel, George Frideric,1685-1759.BelsazarHandel, G.F. Belshazzar [SR] p1991.LC, 6-30-95(hdg.: Handel, George Frideric, 1685-1759. Belshazzar)10425141122005authority', :xact_id), +('00480nz a2200157n 45001122010CONIFER20060621081602.0971216nn acannaabn n aad cno 97072861 (OCoLC)oca04555559(DLC)no 97072861OCoLCOCoLCCaOWAHandel, George Frideric,1685-1759.Concerti grossiMachine-derived authority record.LCCN 81-067183: Handel, G.F. Complete concerti grossi, 198110425141122010authority', :xact_id), +('01627cz a2200313n 45001122011CONIFER20060621081628.0820208nn acannaabn a aaa n 81144352 n 82167597 (OCoLC)oca00689136(DLC)n 81144352DLCengDLCDLCPPi-MACaOWAHandel, George Frideric,1685-1759.Music for the royal fireworksnnaaHandel, Georg Friedrich,1685-1759.Fireworks musicHandel, George Frideric,1685-1759.Orchesterkonzert Nr. 26Handel, George Frideric,1685-1759.FeuerwerksmusikHandel, George Frideric,1685-1759.Royal fireworks musicHandel, George Frideric,1685-1759.Musique pour feux d''artifices royauxHandel, George Frideric,1685-1759.Boulez conducts HandelHandel, George Frideric,1685-1759.Fireworks musicHandel, George Frideric,1685-1759.Feuerwerks-MusikHandel, George Frideric,1685-1759.Musick for the royal fireworksHandel, George Frideric,1685-1759.Musica per i reali fuochi d''artificioHandel, George Frideric,1685-1759.Suite for the royal fireworksHandel, George Frideric,1685-1759.Musica para los reales fuegos articialesHandel, George Frideric,1685-1759.Music for royal fireworksHandel, G.F. Water music [SR] 1993?:label (Music for the royal fireworks = Feuerwerksmusik)Handel-Handbuch(351. Music for the royal fireworks)10425141122011authority', :xact_id), +('01749cz a2200349n 45001122013CONIFER20060621082605.0810624nn acannaabn a aaa n 81063048 (DLC)n 81063048DLCDLCDLCCaOWAHandel, George Frideric,1685-1759.Deutsche AriennnaaHandel, Georg Friedrich,1685-1759.Deutsche Arien (ca. 1724-27)Handel, George Frideric,1685-1759.9 deutsche ArienHandel, George Frideric,1685-1759.Neun deutsche ArienHandel, George Frideric,1685-1759.Neuf airs allemandsHandel, George Frideric,1685-1759.9 airs allemandsHandel, George Frideric,1685-1759.Airs allemandsHandel, George Frideric,1685-1759.German ariasHandel, George Frideric,1685-1759.Nine German ariasHandel, George Frideric,1685-1759.9 German ariasHandel, George Frideric,1685-1759.Devat nemeckych ariiHandel, George Frideric,1685-1759.9 nemeckych ariiHandel, George Frideric,1685-1759.Nemecke arieHandel, George Frideric,1685-1759.9-tsu no Doitsu ariaHandel, George Frideric,1685-1759.Doitsu ariaHandel, George Frideric,1685-1759.Kokonotsu no Doitsu ariaDo not confuse with his [Deutsche Lieder] i.e. 3 deutsche Lieder, B. 3The Baroque bassoon [SR] 1980 (subdiv.)Bell(79 Neun deutsche Arien)Handel-Handbuch, c1978-1986:Bd. 2, p. 625 (HWV 202-210; Neun deutsche Arien; text Barthold Heinrich Brockes)10425141122013authority', :xact_id), +('00496cz a2200145n 45001122016CONIFER20060621083307.0830919nn acannaabn n aaa n 83144021 (DLC)n 83144021DLCDLCDLCCaOWAHandel, George Frideric,1685-1759.RinaldoKubik, R. Handels Rinaldo, c1982 (subj.)t.p. (Handels Rinaldo)Handel-Handbuch(HWV 7a, Rinaldo (1. Fassung); HWV 7b, Rinaldo (2./3. Fassung))10425141122016authority', :xact_id), +('00404nz a2200145n 45001122017CONIFER20060621083335.0811211nn acannaabn a aaa n 81143166 (DLC)n 81143166DLCDLCCaOWAHandel, George Frideric,1685-1759.ImeneoHandel, George Frideric,1685-1759.HymenaeusHis Imeneo, 1980.10425141122017authority', :xact_id), +('00475cz a2200145n 45001122019CONIFER20060621083415.0820303nn acannaabn a aaa n 82010134 (DLC)n 82010134DLCDLCDLCCaOWAHandel, George Frideric,1685-1759.Acis and GalateaHandel, George Frideric,1685-1759.Atı̐sı̐Łis i Galateiı̐aı̐ŁHandel, George Frideric,1685-1759.Acis und Galatea10425141122019authority', :xact_id), +('01276cz a2200265n 45001122021CONIFER20060621083722.0861007nn acannaabn a aaa n 86857012 (OCoLC)oca01696225(DLC)n 86857012DLCDLCDLCMoSW-MuCaOWABohm, Georg,1661-1733.Passion nach dem Evangelisten JohannesHandel, George Frideric,1685-1759.Passion nach dem Evangelisten JohannesBohm, Georg,1661-1733.Johannes-PassionBohm, Georg,1661-1733.Passion according to Saint JohnBohm, Georg,1661-1733.Passion according to St. JohnBohm, Georg,1661-1733.Saint John PassionBohm, Georg,1661-1733.St. John PassionBohm, Georg,1661-1733.Janos-PassioHis Passion nach dem Evangelisten Johannes, c1958.Bell:p. 394 (?7. St. John Passion (Passion nach dem Evang. Johannes) now generally held to be by a German contemporary (Georg Bohm?) publ. as v. 9 in Handel-Gesellschaft ed.)New Grove:v. 2, p. 853 (Bohm, Georg. St. John Passion, 1704; formerly attr. Handel)1042514Handel-Handbuch, Bd. 2.1122021authority', :xact_id), +('00551nz a2200157n 45001122355CONIFER20060626104514.0850614nn acannaabn a aaa n 85006148 (DLC)n 85006148WMUWDLCCaOWAHandel, George Frideric,1685-1759.Floridante.Alma miaHandel, George Frideric,1685-1759.Alma miaPons, L. Lily Pons [SR] 196-?:label (Floridante (Handel) Alma mia)Handel-Handbuch: Bd. 1, Nr. 14(Il Floridante: 5. Alma mia)10465071122355authority', :xact_id), +('01368cz a2200277n 45001126991CONIFER20060919091850.0880216nn acannaabn a aaa n 88611383 (OCoLC)oca02204592(DLC)n 88611383DLCengDLCDLCPPi-MACaOWAHandel, George Frideric,1685-1759.Ode for St. Cecilia''s DayHandel, George Frideric,1685-1759.Ode for Saint Cecilia''s DayHandel, George Frideric,1685-1759.From harmony, from heav''nly harmonyHandel, George Frideric,1685-1759.Cacilien-OdeHandel, George Frideric,1685-1759.Ode a sainte CecileHandel, George Frideric,1685-1759.Ode per il giorno di S. CeciliaHandel, George Frideric,1685-1759.Ode pour la fete de Sainte-CecileHandel, George Frideric,1685-1759.Ode on St. Cecilia''s DayHandel, George Frideric,1685-1759.CacilienodeHandel, George Frideric,1685-1759.Ode auf St. CaeciliaHis Ode for St. Cecilia''s Day [SR] p1986.Handel-Handbuch(76. Ode for St. Cecilia''s Day: From harmony, from heav''nly harmony)LC data base, 2-16-88(hdg.: Handel, George Frideric, 1685-1759. Ode for St. Cecilia''s Day)10535421126991authority', :xact_id), +('00682cz a2200169n 45001124749CONIFER20060811113547.0830321nn acannaabn a aaa n 83047128 (DLC)n 83047128DLCDLCDLCCaOWAHandel, George Frideric,1685-1759.Orchestra music.SelectionsnnaHandel, Georg Friedrich,1685-1759.Works,orchestra.SelectionsHandel, George Frideric,1685-1759.Great orchestral worksHandel, George Frideric,1685-1759.Great concerti and overtures of George Frideric HandelHandel, George Frideric,1685-1759.Great oboe music10503271124749authority', :xact_id), +('00845cz a2200205n 45001125607CONIFER20060825110026.0881230nn acannaabn a aaa n 88682588 (OCoLC)oca02432131(DLC)n 88682588DLCDLCDLCOOCCaOWAHandel, George Frideric,1685-1759.Rodelinda.Dove sei? amato bene!Handel, George Frideric,1685-1759.Dove seiHandel, George Frideric,1685-1759.Dove sei? amato bene!Handel, George Frideric,1685-1759.Pompe vane di morte!Handel, George Frideric,1685-1759.Art thou troubled?Drottningholms barockensemble. Barock [SR] 1976:label (Dove sei, ur Rodelinda)Handel-Handbuch:v. 1 (19. Rodelinda: 7. Dove sei? amato bene!)10512891125607authority', :xact_id), +('01481cz a2200253n 45001125654CONIFER20060828080834.0960301nn acannaabn a aaa cno 96010886 (OCoLC)oca04019648(DLC)no 96010886OOCOOCCtY-MusPU-AMLCaOWAHandel, George Frideric,1685-1759.Solomon.What though I trace each herb and flow''rHandel, George Frideric,1685-1759.What though I trace each herb and flow''rHandel, George Frideric,1685-1759.What though I trace each herbHandel, George Frideric,1685-1759.What tho'' I trace each herb and flow''rHandel, George Frideric,1685-1759.Solomon.Blest be the Lord, who look''d with gracious eyesHandel, George Frideric,1685-1759.Blest be the Lord, who look''d with gracious eyesHandel, George Frideric,1685-1759.Bless''d be the LordHandel, G.F. English arias [SR] p1995:container (What though I trace each herb : [from] Solomon)Handel-Handbuch, c1984:Bd. 2 (HWV 67, Solomon. 8, Air: What though I trace each herb and flow''r)Handel, G. F. Sacred arias [SR] 2001:container (Solomon. Recitatif "Bless''d be the Lord", Air "What though I trace")Handel-Handbuch, c1984:Bd. 2 (HWV 67, Solomon. Recitative: Blest be the Lord; 8, Air: What though I trace each herb and flow''r)10513321125654authority', :xact_id), +('00909cz a2200193n 45001125930CONIFER20060831081144.0890127nn acannaabn a aaa n 89604357 (DLC)n 89604357DLCDLCDLCCaOWAHandel, George Frideric,1685-1759.Tolomeo.Non lo diro col labbroHandel, George Frideric,1685-1759.Non lo diro col labbroHandel, George Frideric,1685-1759.Non lo diro col labroHandel, George Frideric,1685-1759.Silent worshipHandel, George Frideric,1685-1759.I shall not put into wordsConcert Royal (Musical group : Great Britain). Music at Bowes [SR] p1981:label (Silent worship = Non lo diro col labro [sic]) container (from the opera Ptolemy)Handel-Handbuch:Bd. 1 (25. Tolomeo: Non lo diro col labbro)10518031125930authority', :xact_id), +('01284cz a2200217n 45001126955CONIFER20060918135630.0850624nn acannaabn a aaa n 85023900 (DLC)n 85023900DLCDLCDLCCaOWAHandel, George Frideric,1685-1759.Concerti a due coriHandel, George Frideric,1685-1759.Concerti a due cori,B. 162-164Handel, George Frideric,1685-1759.Concerti a due cori,no. 1-3Handel, George Frideric,1685-1759.Concerti a due cori,HWV 332-334Catalog as a setHandel, G. Music for the royal fireworks [SR] p1984.New Grove(Concerti a due cori, comp. 1747; no. 1, B́Ư major; no. 2, F major; no. 3, F major)Bell(B. 162, Concerto a due cori in B́Ư major; B. 163, Concerto a due cori in F major; B. 164, Concerto a due cori in F major; 1st ed. 1797)Handel-Handbuch(332, Concerto (a due cori) B-Dur fur 2 Blaserchore und Streicher (Concerto made from choruses); 333, Concerto (a due cori) F-Dur fur 2 Blaserchore und Streicher; 334, Concerto (a due cori) F-Dur fur 2 Blaserchore und Streicher (Concerto in the oratorio of Judas Maccabaeus))10534471126955authority', :xact_id), +('00751nz a2200181n 45001126990CONIFER20060919091722.0970211nn acannaabn a aaa n 97014732 (DLC)n 97014732DLCDLCCaOWAHandel, George Frideric,1685-1759.Praise of harmonyHandel, George Frideric,1685-1759.Look down, harmonious saintHandel, George Frideric,1685-1759.Cantate "Praise of harmony"Handel, George Frideric,1685-1759.Preis der TonkunstHommage a Teresa Stich-Randall, 1995?:container (Cantate "Praise of harmony")Handel-Handbuch(HWV 124, [The praise of harmony:] Look down, harmonious saint)10535421126990authority', :xact_id), +('01237cz a2200229n 45001127488CONIFER20060927102056.0860731nn acannaabn a aaa n 86145384 (OCoLC)oca01651176(DLC)n 86145384DLCengDLCDLCTxU-MuCaOWAHandel, George Frideric,1685-1759.Concertos,oboe, string orchestra,HWV 287,G minorHandel, George Frideric,1685-1759.Concertos,oboe, string orchestra,no. 1,G minorHandel, George Frideric,1685-1759.Concertos,oboe, string orchestra,B. 5.No. 3Handel, George Frideric,1685-1759.Concertos,oboe, string orchestra,no. 3,G minorHandel, George Frideric,1685-1759.Concerti grossi,no. 10,G minorHandel, George Frideric,1685-1759.Concertos,flute, string orchestra,HWV 287,G minorHis Concerto 1. g-Moll, c1985.LC data base, 7/25/86(hdg.: Handel, George Frideric, 1685-1759. Concertos, oboe, string orchestra, B. 5. No. 3)Handel-Handbuch(287, Konzert g-Moll fur Oboe und Orchester (Oboenkonzert Nr. 3); Orchester: v. i, ii, va., cont.)10543831127488authority', :xact_id), +('01012cz a2200205n 45001127490CONIFER20060927103504.0831216nn acannaabn a aaa n 82235648 (OCoLC)oca01075447(DLC)n 82235648DLCengDLCDLCPPi-MACaOWAHandel, George Frideric,1685-1759.Trio sonatas,violins, continuo,HWV 393,G minor;arr.Handel, George Frideric,1685-1759.Sonatas,piano, violas (2),op. 2, no. 8,G minorHandel, George Frideric,1685-1759.Trio sonatas,violas, continuo,HWV 393,G minorHandel, George Frideric,1685-1759.Trio sonatas,double basses, continuo,HWV 393,G minorHandel, George Frideric,1685-1759.Trio sonatas,viole da gamba, continuo,HWV 393,G minorHis Sonata in G minor, opus 2, no. 8, for two violas and piano, c1982.Bell(68, No. 8; originally for 2 violins and continuo)10543851127490authority', :xact_id), +('01297cz a2200229n 45001131831CONIFER20070111124400.0820813nn acannaabn a aaa n 82109757 (OCoLC)oca00806211(DLC)n 82109757DLCengDLCDLCOOCCaOWAHandel, George Frideric,1685-1759.Sonatas,recorder, continuo,HWV 367a,D minorHandel, George Frideric,1685-1759.Fitzwilliam sonata,no. 3Handel, George Frideric,1685-1759.Sonatas,recorder, continuo,B. 156, no. 3,D minorHandel, George Frideric,1685-1759.Sonatas,recorder, continuo,op. 1, no. 9,D minorHandel, George Frideric,1685-1759.Fitzwilliam-Sonate,no. 3Handel, George Frideric,1685-1759.Sonatas,flute, continuo,HWV 367a,D minorBruggen, F. Frans Bruggen interpretiert Handel, Bach, Mozart, Hotteterre [SR] p1979:label (Sonate d-Moll fur Blockflote und B.c. : Fitzwilliam-Ms.)Bell(156. The ''Fitzwilliam'' sonatas for treble recorder and cembalo (with violoncello or viola da gamba ad lib.))Handel-Handbuch(367a, Sonate d-Moll fur Blockflote und B.c. (Fitzwilliam sonata III))10608461131831authority', :xact_id), +('01255cz a2200241n 45001132198CONIFER20070118092606.0910124nn acannaabn a aaa n 91007450 n 94096471 (DLC)n 91007450DLCDLCDLCCtY-MusCaOWAHandel, George Frideric,1685-1759.Sonatas,violin, continuo,HWV 370,F major;arr.Handel, George Frideric,1685-1759.Sonatas,marimba, piano,no. 3Handel, George Frideric,1685-1759.Sonatas,trumpet, piano,no. 3Handel, George Frideric,1685-1759.Sonatas,horn, piano,HWV 370,F majorHandel, George Frideric,1685-1759.Sonatas,double bass, piano,no. 3,G majorHandel, George Frideric,1685-1759.Sonatas,double bass, piano,HWV 370,G majorHandel, George Frideric,1685-1759.Sonatas,trombone, piano,HWV 370,F majorHandel, George Frideric,1685-1759.Sonatas,trumpet, organ,F majorHis Third Handel sonata for marimba and piano, c1966.His Sonata no. 3 for trumpet and piano, c1965.Handel Handbuch(370, Sonate F-Dur fur Violine und B.c.)10615601132198authority', :xact_id), +('00236nz a2200085O 45001003CONIFER19970725135256.0970601nnbacnnnabbn a ana uHandel, George Frideric,1685-1759Handel, Georg Friedrich,1685-17591003authority', :xact_id), +('00192nz a2200073O 45004874CONIFER19981117195632.0970601 nbacannbabn a ana dHandel, George Frideric, 1685-1759.Operas4874authority', :xact_id), +('00339nz a2200109O 45005158CONIFER19981117195426.0970601 nbacannbabn a ana dHandel, George Frideric,1685-1759Handel, Georg Friedrich, 1685-1759Handel, George Friedrich, 1685-1759Handel, George Frederick, 1685-17595158authority', :xact_id), +('00191nz a2200073O 45006184CONIFER19981117195540.0950228 neanknnbabn a ana Handel, George Frideric, 1685-1759.Humor6184authority', :xact_id), +('00195nz a2200073O 45005344CONIFER19981117195700.0970601 nbacannbabn a ana dHandel, George Frideric, 1685-1759.Oratorios5344authority', :xact_id), +('00202nz a2200073O 4500391686CONIFER19991117145848.0991117nneadnnnabbn a aaa uHandel, George Frideric,1685-1759.Samson.English391686authority', :xact_id), +('00203nz a2200073O 4500392696CONIFER20011003150856.0011003nneacnnnabbn a aaa uHandel, George Frideric,1685-1759.Orlando.Italian392696authority', :xact_id), +('03405cz a2200505n 4500943013CONIFER20070927163047.0800624n| acannaabn |a aaa n 79129204 no 98020932(DLC)n 79129204(OCoLC)oca00360706DLCengDLCDLCCtY-MusDLCPPi-MADLCML410.H13BiographyHandel, George Frideric,1685-1759Haendel, Georges-Frédéric,1685-1759Gendelʹ, Georg Fridrikh,1685-1759Khendel, G. F.(Georg Fridrikh),1685-1759Khendel, Georg Fridrikh,1685-1759nnaHändel, Georg Friedrich,1685-1759Handel, G. F.(George Frideric),1685-1759Haendel, G. F.(Georg Friedrich),1685-1759Haendel, Georg Friedrich,1685-1759Gendelʹ, G. F.(Georg Fridrikh),1685-1759Handel, Geʼorg-Fridrikh,1685-1759Hendelis, G. F.,1685-1759Henderu, Georuku Furīdorihhi,1685-1759Haendel, George Frideric,1685-1759Handel, George Frederick,1685-1759Hendel, George Frideric,1685-1759Handel, George Fredrick,1685-1759Thematic catalog numbers are from the Händel-Handbuch. They are used in uniform titles for types of composition, excluding op. 2-7, and other works as required under AACR2 25.31B. E.g.: Concertos, organ, orchestra, HWV 295, F major; Sonatas, oboe, continuo, HWV 366, C minor; Suites, harpsichord, HWV 430, E major.His The ways of Zion do mourn, 1979:t.p. (G.F. Handel)His Georg Friedrich Haendel [SR] 1978:labels (G.F. Haendel)Sonate au 18ème siècle [SR] c1977:labels (Georges-Frédéric Haendel)Bach, J.S. Si͡uita no. 2 si minor, V. 1067 [SR] 1968? (a.e.)label (G.F. Gendelʹ; Georga Fridrikha Gendeli͡a)Gorali, M. ha-Tanakh bi-yetsirot Geʼorg-Fridrikh Handel, c1982:t.p. (Geʼorg-Fridrikh Handel)His L''Allegro, il Pensieroso ed il Moderato [SR] 1981:labels (G.F. Hendelis)His The flocks shall leave the mountains, c1988:t.p. (George Frederic Handel)Bach, J.S. Sonata za oboĭ i piano v sol minor [SR] 1981?:label (G.Fr. Khendel) container (Georg Fridrikh Khendel)Botts, T.R. Calligraphic word pictures inspired by the music and text of George Frederick Handel''s Messiah, c1991.His Neun deutsche Arien, 1981:label (Händel) container (Georg Friedrich Händel; Georuku Furīdorihhi Henderu)Sémélé, Haendel, 1996:p. 7 (George Frideric Haendel)His Bibletone presents the Messiah, 1947?:cover (George Frederick Handel)New Grove(Handel (Händel, Hendel), George Frideric (Georg Friederich (Friedrich)); b. Feb. 23, 1685, Halle, d. Apr. 14, 1759, London; English (naturalized) composer of German birth; "He was baptized Georg Friederich Händel, the usual spelling of his name in Germany then and now. He used the spelling Hendel in Italy and at first in England, but later always signed himself Handel without the Umlaut; in England he generally used the forms of his first names shown above [i.e. George Frideric]")His Gavotte, c2003:t.p. (George Fredrick Handel)943013authority', :xact_id), +('00721nz a2200193n 45001125726CONIFER20060828135509.0860728nn acannaabn a aaa n 86001629 (DLC)n 86001629DLCDLCDLCCaOWAHandel, George Frideric,1685-1759.ScipioneHandel, George Frideric,1685-1759.ScipioHandel, George Frideric,1685-1759.ScipionHandel, George Frideric,1685-1759.Publio Cornelio ScipioneHandel, G.F. Scipio [SR] 1984:label (Scipio) container (Scipion) insert p. 5 (Scipione)Handel-Handbuch(Publio Cornelio Scipione)New Grove(Scipione)10513941125726authority', :xact_id), +('00854cz a2200217n 45001122307CONIFER20060626084118.0851004nn acannaabn a aaa n 85064890 (OCoLC)oca01457052(DLC)n 85064890DLCengDLCDLCCtY-MusPPi-MACaOWAHandel, George Frideric,1685-1759.Giulio CesareHandel, George Frideric,1685-1759.Julius CaesarHandel, George Frideric,1685-1759.Giulio Cesare in EgittoHandel, George Frideric,1685-1759.Jules CesarHandel, George Frideric,1685-1759.Julius Caesar in AgyptenHis Julius Caesar [SR] p1985.LC data base, 10-2-85(hdg.: Handel, George Frideric, 1685-1759. Giulio Cesare)New Grove(Giulio Cesare)10464671122307authority', :xact_id), +('00627cz a2200157n 45001127470CONIFER20060927075115.0860117nn acannaabn a aaa n 85170584 (DLC)n 85170584DLCDLCDLCCaOWAHandel, George Frideric,1685-1759.Sonatas,violin, continuo,HWV 361,A major;arr.Handel, George Frideric,1685-1759.Sonatas,viola, piano,A majorHandel, George Frideric,1685-1759.Sonatas,viola, continuo,HWV 361,A majorHis Sonata, c1957:cover (Sonata in A major for viola and piano)10543471127470authority', :xact_id), +('00219nz a2200073O 4500390107CONIFER19971022111554.0971022nneacnnnabbn a aaa Handel, George Frideric,1685-1759.Funeral anthem for Queen Caroline390107authority', :xact_id), +('00221nz a2200073O 4500390118CONIFER19971022135624.0971022nneacnnnabbn a aaa uHandel, George Frideric,1685-1759.Sonatas, violin, harpsichord, op. 1390118authority', :xact_id), +('00206nz a2200073O 45005160CONIFER19981117195512.0970601 nbacannbabn a ana dHandel, George Frideric, 1685-1759History and criticism5160authority', :xact_id), +('00213nz a2200073O 45005161CONIFER19981117195456.0970601 nbacannbabn a ana dHandel, George Frideric, 1685-1759Criticism and interpretation5161authority', :xact_id), +('00193nz a2200073O 45005159CONIFER19981117195610.0970601 nbacannbabn a ana dHandel, George Frideric, 1685-1759.Messiah5159authority', :xact_id), +('00290nz a2200097O 45001057CONIFER19970725125544.0970601nnbacnnnabbn a ana uMoscow Philharmonic Symphony OrchestraMoskovskaia gosudarstvennaia filarmoniiaMoscow Philharmonic Orchestra1057authority', :xact_id), +('00748cz a2200217n 45001074870CONIFER20040429140044.0810225nn acannaabn a ana n 81014472 n 50053468 (OCoLC)oca00560354DLCDLCDLCCaOWALondon Symphony OrchestraLSOOrchestre symphonique de LondresL.S.O.Londonskii simfonicheskii orkestrLondon Symphony Orch.Beethoven, L. van. Overtures.Liszt, F. Kontı̐sı̐Łert no. 1 ... [SR] 1980:labels (Londonskii simfonicheskii orkestr)Schumann, R. Concerto in A minor, op. 54 [SR] 194-?:labels (London Symphony Orch.)9968171074870authority', :xact_id), +('00879cz a2200217n 45001088682CONIFER20040907094619.0820208nn acannaabn a ana n 81149803 (OCoLC)oca00694555(DLC)n 81149803DLCDLCDLCPPi-MACaOWALondon Symphony ChorusnnaLondon Symphony Orchestra.ChorusKhor Londonskogo simf. orkestraKhor Londonskogo simfonicheskogo orkestraLondon Symphony ChoirBritten, B. [Cantata academica. Latin] [Phonodisc] Cantata academica, 1961.Prokofiev, S. Aleksandr Nevskii [SR] 1988, c1976:labels (Khor Londonskogo simf. orkestra) container (Khor Londonskogo simfonicheskogo orkestra)Handel, G.F. Messiah [SR] 1987?, p1966:container (London Symphony Choir)10024131088682authority', :xact_id), +('00174nz a2200073O 45004266CONIFER19970725125544.0960911nneacnnnabbn za ana uLondon Symphony Orchestra4266authority', :xact_id) +; diff --git a/Open-ILS/src/sql/test-data/deploy/bibs_concerto.sql b/Open-ILS/src/sql/test-data/deploy/bibs_concerto.sql new file mode 100644 index 0000000000..b84f6a491e --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/bibs_concerto.sql @@ -0,0 +1,104 @@ +\set bib_tag '''IMPORT CONCERTO''' + +INSERT INTO marcxml_import (tag, marc) VALUES +(:bib_tag,'01121nam a2200265 a 450001-011210119970801080052.0970701s1989 it a u000 0 ita u(Sirsi) 01-0112101UtOrBLWML''2533''B34''C3''1989Baldazzi, Gianfranco.La canzone italiana del Novecento :da Piedigrotta al Festival di Sanremo, dal caffè-concerto all''opera rock, una storia della società italiana attraverso le sue canzoni più belle e i loro grandi interpreti : da Enrico Caruso a Eros Ramazzotti /Gianfranco Baldazzi ; introduzione di Lucio Dalla.Roma :Newton Compton,1989.335 p. :ill.Quest''Italia ;141Bibliogr.Songs, ItalianHistory and criticism.Vocal musicItaly19th centuryHistory and criticism.Modern Languages (Humanities)/Langues modernes (Humanités) 1-149495o9411a94207Sirsi_Auto94207'), +(:bib_tag,'00574nam a2200205 a 450003-000042519970807205236.0970701s1978 fr u000 0 fre u2130354467ML1263.F47Ferchault, GuyLe concerto /Guy Ferchault.Paris :Presses universitaires de France,1978.127 p. :musiqueQue sais-je? ;1717.Bibliogr.Concertoa336318Sirsi_Auto336318'), +(:bib_tag,'00858nam a2200193 a 450003-000064219981206131338.0970701s1964 nyu u000 0 eng 64-8198MT130.M8G62 1964Girdlestone, Cuthbert Morton,1895-1975.Mozart and his piano concertos /Cuthbert Girdlestone.New York, NY :Dover,1964.509 p. :music."An unabridged and corrected republication of the second (1958) edition of the work first published in 1948 by Cassell and Company, Ltd., London, under the title Mozart''s Piano Concertos." Translation of Mozart et ses concertos pour piano.Mozart, Wolfgang Amadeus,1756-1791.Concertos,piano.a336531Sirsi_Auto336531'), +(:bib_tag,'01176njm a2200277 a 450003-000102319991127191334.0991109s1992 enkuuu eng d5164Kabalevsky, Dmitry Borisovich,1904-1987Piano concertos nos. 2, 3 & 4London :Olympia,19921 sound disc :analog (digitally remastered), stereoCOMPACT DISC(S)D. Kabalevsky (1904-1987) ;4Nikolai Petrov, piano ; Moscow Philharmonic Orchestra ; Dmitri Kataenko, conductor (tracks 1-3) ; Emil Gilels, piano ; Large Radio and TV Symphony Orchestra ; Dmitri Kabalevsky, conductor (tracks 4-6) ; Yuri Popov, piano ; Moscow Philharmonic Orchestra ; Dmitri Kabalevsky, conductor (tracks 7-9)Concertos (Piano)Petrov, NikolaiKitaenko, DmitriGilels, Emil,1916-1985.Popov, YuriMoscow Philharmonic Symphony OrchestraLarge Radio and TV Symphony Orchestra (U.S.S.R.)a336882Sirsi_Auto336882'), +(:bib_tag,'01655njm a2200397 a 450003-000149420010920114342.0000127s1999 oncuuu eng d5177Huntington student recital, Dec. 6, 1999Sudbury, Ont. :Huntington University,19991 sound disc :digital, stereoCOMPACT DISC(S)Piano concerto in G minor, op. 25. Molto allegro con fuoco / Mendelssohn -- Vals, op. 8, no. 4 / Mangoré -- Samson. Plaintive notes / Handel -- Partita in C minor / J.S. Bach -- Morceau de concert / Saint-Saëns -- How high the moon / Lewis -- Autumn leaves / KosmaCathy Burns, Vira Kurchenko, Suzanne Roy-Wilson, piano ; Andy Burns, classical guitar ; Shannon Coyle, soprano ; Jennifer Bryan, Curtis Kennedy, jazz guitar ; Mike McArthur, tenor sax.Concertos (Piano)Excerpts.Suites (Harpsichord)Horn and piano musicJazzOperasExcerpts.Burns, CathyHeino, LauraHall, Robert George,1954-Roy-Wilson, SuzanneBryan, JenniferKennedy, CurtisMcArthur, MichaelBurns, AndyMendelssohn, Felix,1809-1847Barrios Mangoré, Agustín, 1885-1944Handel, George Frideric,1685-1759Bach, Johann Sebastian,1685-1750Saint-Saëns, Camille,1835-1921a337317Sirsi_Auto337317'), +(:bib_tag,'00778njm a2200181 a 450003-000157320000204150556.0000204s1999 enkuuu eng d5181Finzi, Gerald,1901-1956Finzi centenary 2001London :Boosey & Hawkes,19991 sound disc :digital, stereoCOMPACT DISC(S)Dies natalis -- Seven unaccompanied partsongs -- Clarinet concerto -- Intimations of immortality -- God is gone up -- Earth and air and rain -- Cello concerto -- In terra pax -- Grand fantasia and toccata -- Romance -- Lo, the full, final sacrifice -- Let us garlands bringa337385Sirsi_Auto337385'), +(:bib_tag,'00814njm a2200181 a 450003-000157820000204151818.0000204s1999 enkuuu eng d5180Ginastera, Alberto,1916-1983Sinidos sinfónicos :an orchestral samplerLondon :Boosey & Hawkes,19991 sound disc :digital, stereoCOMPACT DISC(S)Panambí -- Estancia -- Obertura para el ''Fausto'' Criollo -- Ollantay -- Varaciones concertantes -- Pampeana no. 3 -- Harp concerto -- Piano concerto no. 1 -- Violin concerto -- Concerto per corde -- Milena -- Glosses sobre temes de Pau Casals -- Cello concerto no. 2 -- Popol vuha337389Sirsi_Auto337389'), +(:bib_tag,'00687ncm a2200205 a 450003-000174520010528140116.0000330s1979 oncuuu eng dM 1011 B15 OP.38 1979Baker, Michael C.(Michael Conway),1941-Piano concerto, op. 38Oakville, Ont. :Frederick Harris Music,19792 scores (78 p. each)The Harris ensemble seriesDuration: 24:00.Concertos (Piano)2-piano scores.Piano music (Pianos (2)), Arrangeda337533Sirsi_Auto337533'), +(:bib_tag,'01343nam a2200181 a 450003-000190020020209140320.0000523s2000 mau 000 eng dML 60 R7848 2000Rosen, Charles,1927-Critical entertainments :music old and new /Charles RosenCambridge, MA :Harvard University Press,2000328 pPerformance and musicology / The aesthetics of stage fright -- The discipline of philology: oliver strunk -- The eighteenth century / Keyboard music of bach and handel -- The rediscovering of haydn -- Describing mozart -- Beaumarchais: inventor of morden opera - Radical, conventional mozart -- Beethoven''s career -- Brahms/ Brahms: influence, plagiarism, and inspiration -- Brahms the subversive -- Brahms: classicism and the inspiration of Awkardness -- Musical studies: contrasting views / The benefits of authenticity -- Dictionaries: the old harvard -- Dictionaries: the new grove''s -- The new musicology -- The crisis of the modern / Schoenberg: the possibilities of disquiet -- The performance of contemporary music: carter''s double concerto -- The irrelevance of serious musicMusicHistory and criticisma337673Sirsi_Auto337673'), +(:bib_tag,'00805njm a2200241 a 450003-000215620000621095430.0000621s1997 enkuuu eng d5221Khachaturian, Aram,1903-1978Piano concerto in D flat (1936) ; Sonatina (1959) ; Toccata (1932)London :ASV,19971 sound disc :digital, stereoCOMPACT DISC(S)Alberto Portugheis, piano ; London Symphony Orchestra ; Loris Tjeknavorian, conductorConcertos (Piano)Piano musicPortguheis, AlbertoTjeknavorian, LorisLondon Symphony Orchestraa337899Sirsi_Auto337899'), +(:bib_tag,'02724njm a2200529 a 450003-000289520020514155446.0000919s2000 oncuuu eng d5237Composition student recital, April 6, 2000, Huntington University / composition students of Daniel BédardSudbury, Ont. :Huntington University,20001 sound disc :digital, stereoCOMPACT DISC(S)Student composers'' concertSelections recorded live at the Social Centre, Huntington University, Sudbury, Ontario, on April 6, 2000.Off the top of my head / Joyce Van Eyk -- Monophonic for solo French horn / Bryan Lautenbach (Laura Heino, horn) -- Katabasis / Mitch Ross -- Working man''s concerto : for guitar and track / Andy Burns (Andy Burns, guitar) -- Woven flute voices / Joyce Van Eyk (Shannon Coyle, soprano ; Nancy Thurson, flute) -- Three impromptus / Chris Dixon [Dickson] (Desmond Maley, piano) -- Are you speaking? / Bryan Lautenbach -- 4600 : for fiddle and track / Sylvie Julien (Don Reed, violin) -- Wandering jazz night / Joyce Van Eyk (Sarah Toop, clarinet) -- Examine how they change : for sax and track / Mitch Ross (Mike McArthur, sax) -- Oohs / Sylvie Julien -- Eluding perception : for trumpets (3) and track / Bryan Lautenbach (Catherine Burns, Stefan Laakso, Tracy Finucane, trumpets) -- Fascinating / Mitch RossSaxophone and electronic musicTrumpets (3) and electronic musicPiano musicViolin and electronic musicHorn musicClarinet with electronics.Songs (High voice) with fluteVan Eyk, Joyce.Woven flute voicesVan Eyk, Joyce.Off the top of my headLautenbach, Bryan.Monophonic,hornLautenbach, Bryan.Eluding perceptionLautenbach, Bryan.Are you speaking?Ross, Mitchell.Examine how they changeBurns, Andy.Working man''s concertoDickson, Christopher.Impromptus (3),pianoRoss, Mitchell.FascinatingRoss, Mitchell.KatabasisJulien, Sylvie.4600Heino, Laura.prf.Coyle, Shannon.prf.Thurston, Nancy.prf.Reed, Don.prf.Toop, Sarah,prf.McArthur, Michael.prf.Maley, Desmond,1954-prf.Burns, Catherine.prf.Laakso, Stefan.prf.Finucane, Tracy.prf.Bédard, Daniel,1957-a338600Sirsi_Auto338600'), +(:bib_tag,'00817njm a2200241 a 450003-000292820020521145858.0000922s1999 enkuuu eng d5238Busoni, Ferruccio,1866-1924Piano concerto in C major, op. 39London :Hyperion,1999\\1 sound disc :digital, stereoCOMPACT DISC(S)The Romantic Piano Concerto ;# 22Marc-André Hamelin, piano ; City of Birmingham Symphony Orchestra ; Mark Elder, conductorConcertos (Piano)Hamelin, Marc-André,1961-Elder, MarkCity of Birmingham Symphony Orchestraa338628Sirsi_Auto338628'), +(:bib_tag,'01086njm a2200277 a 450003-000333420030124135156.0971014n nyuuuu eng 4523Brahms, Johannes,1833-1897.Concertos,violin, violoncello,op. 102,A minorDouble concerto in A minor, op. 102 ; Variations on a theme by Haydn, op. 56a ; Tragic overture, op. 81New York, NY :Columbia [Records].1 sound disc :33 1/3 rpm, mono.PHONO RECORDIsaac Stern, violin ; Leonard Rose, violoncello ; Philharmonic-Symphony of New York ; Bruno Walter, conductor.Concertos (Violin and violoncello)Stern, Isaac,1920-2001.Rose, Leonard,1918-1984Walter, Bruno,1876-1962New York PhilharmonicTragische OuvertüreVariationen über ein Thema von Haydn, op. 56aa339012Sirsi_Auto339012'), +(:bib_tag,'01088njm a2200301 a 450003-000345819971015135024.0971015s1996 sweuuu eng 4532Rouse, Christopher,1949-author: movement # 1Concertos,trombone(1991)Trombone concerto (1991) subject: americanDjursholm :Bis,19961 sound disc :digital, stereo.COMPACT DISC(S)American Trombone Concertos ;2Trombone concerto / Rouse -- Trombone concerto / Chávez -- Meditation / Thomas.Christian Lindberg, trombone ; BBC National Orchestra of Wales ; Grant Llewellyn, conductor.American -concertoWorking title: being and nothingnessChávez, Carlos,1899-1978Thomas, Augusta Read,1964-Lindberg, ChristianLlewellyn, GrantBBC National Orchestra of WalesMeditation,trombone, orchestraConcertos,trombone(1976-77)a339126Sirsi_Auto339126'), +(:bib_tag,'00990njm a2200277 a 450003-000360619991211181244.0971015s1966 enkuuu eng 4537Bartók, Béla,1881-1945.Concertos,violin,no. 2,(1938)Violin concerto no. 2 ; Six duos (from 44 Duos)London :Angel,19661 sound disc :33 1/3 rpm, stereo.PHONO RECORDYehudi Menuhin, violin ; Nell Gotkovsky, violin (for Duos only) ; New Philharmonia Orchestra ; Antal Dorati, conductor.Concertos (Violin)Violin music (Violins (2))Menuhin, Yehudi,1916-1999.Gotkovsky, NellDorati, Antal,1906-1988.New Philharmonia OrchestraDuos (44),violins (2). Selectionsa339264Sirsi_Auto339264'), +(:bib_tag,'00876njm a2200265 a 450003-000373019991127191334.0s 970701n nyu 00 eng u4538Bartók, Béla,1881-1945.Concertos,piano,no. 2Piano concertos 2 & 3New York, NY :Vox Turnabout,1972.1 sound disc :33 1/3 rpm, stereo.PHONO RECORDGyörgy Sándor, piano ; Pro Musica Orchestra, Vienna ; Michael Gielen, conductor.Concertos (Piano)Sándor, György,1912-Gielen, Michael,1927-Pro Musica Symphony (Vienna)Concertos,piano,no. 3,(1945)a339383Sirsi_Auto339383'), +(:bib_tag,'00934njm a2200241 a 450003-000374519991118131708.0971016n nyuuuu eng 4539Bartók, Béla,1881-1945.Concertos,piano,no. 1,Sz. 83(1926) Concertos,piano,no. 1,Sz. 83,(1926)Piano concerto no. 1 (1926) ; Rhapsody, op. 1 (1904)New York, NY :Vox1 sound disc :33 1/3 rpm, stereo.PHONO RECORDGyörgy Sándor, piano ; Sudwest[rund]funkorchester, Baden-Baden ; Rolf Reinhardt, conductor.Sándor, György,1912-Reinhardt, RolfSudwestrundfunkorchester (Baden-Baden, Germany)Rhapsodies,piano, orchestra,op. 1,Sz. 27,(1904)a339398Sirsi_Auto339398'), +(:bib_tag,'00849njm a2200241 a 450003-000377319991127191334.0971016n nyuuuu eng 4540Brahms, Johannes,1833-1897.Concertos,piano,no. 2,op. 83,B flat majorPiano concerto no. 2, op. 83, B flat majorNew York, NY :Vox1 sound disc :33 1/3 rpm, stereo.PHONO RECORDGyörgy Sándor, piano ; Südwest[rund]funkorchester, Baden-Baden ; Rolf Reinhardt, conductor.Concertos (Piano)Sándor, György,1912-Reinhardt, RolfSudwestrundfunkorchester (Baden-Baden, Germany)a339425Sirsi_Auto339425'), +(:bib_tag,'01229njm a2200301 a 450003-000402319991127191304.0971022s1960 enkuuu eng 4550Handel, George Frideric,1685-1759Concerto, op. 4, no. 6, B flat major ; Concerto, op. 4, no. 5, F major ; Concerto grosso, C major (Alexander''s feast)L''Oiseau-Lyre,19601 sound disc :33 1/3 rpm, stereo.PHONO RECORDThe 1st and 2nd works reconstructed by Thurston Dart from Handel''s organ concertos, op. 4.Desmond Dupré, lute ; Osian Ellis, harp ; Thurston Dart, organ and harpsichord continuo ; Philomusica (London) ; Granville Jones, conductor.Concertos (Harp), ArrangedConcertos (Harp and lute), ArrangedConcerti grossi.Dupré, DesmondEllis, OsianJones, GranvilleDart, Thurston,1921-1971Philomusica (London)Concerti grossi,violins (2), violoncello,HWV 318,C majora339658Sirsi_Auto339658'), +(:bib_tag,'00933njm a2200241 a 450003-000411819991127191330.0971022n nyuuuu eng 4555Handel, George Frideric,1685-1759Four concertos with oboe and string orchestraNew York, NY :Nonesuch1 sound disc :33 1/3 rpm, stereo.PHONO RECORDConcerto in B flat major, op. 3, no. 2 -- Concerto in D minor, op. 3, no. 5 -- Concerto in F major, op. 3, no. 4 -- Concerto in C minorRobert Casier, oboe ; Orchestra of the Cento Soli ; Anthony Bernard, conductor.Concertos (Oboe with string orchestra)Casier, RobertBernard, Anthony,1891-1963.Cento Soli. Orchestraa339751Sirsi_Auto339751'), +(:bib_tag,'00620nam a2200217 a 450003-000418219991127191306.0970701t19781973enk u000 0 eng u0571108652ML1263.H85 1978Hutchings, Arthur,1906-The Baroque concerto /by Arthur Hutchings.3rd rev. ed.London :Faber,1978, c1973.363 p. :maps, musicFaber paperbacksBibliogr.Concerto.a339812Sirsi_Auto339812'), +(:bib_tag,'00707nam a2200217 a 450003-000418419991127191306.0970701s1964 nyu u000 0 eng 63-195030486211789ML1263.V4 1964Veinus, Abraham.The concerto /Abraham Veinus.New York, NY :Dover,1964.317 p.Dover books on music"Revised republication of the work first published by Doubleday, Doran and Company in 1945, and by Cassell and Company Limited in 1948."Concerto.a339814Sirsi_Auto339814'), +(:bib_tag,'01864ncm a2200457 a 450003-000432019991211180904.0970701s1971 nyu 00 eng 72-1168260486226522M22.B82M34Brahms, Johannes,1833-1897Complete transcriptions, cadenzas, and exercises, for solo piano /Johannes Brahms ; edited by Eusebius Mandyczewski.The Vienna Gesellschaft der Musikfreunde ed.New York, NY :Dover,1971.xii, 178 p.MUSIC SCORE/PARTITION MUSICALERepublication of Bd. 15 of the Sämtliche Werke (Leipzig, Breitkopf & Härtel, ca. 1927).Includes English translation of editor''s pref.Piano music.Variations (Piano)Dances (Piano)Mandyczewski, Eusebius,1857-1929.Piano music.Studies (5), pianoTranscription of a Gavotte by Gluck, pianoStudy after Schubert''s Impromptu, op. 90, no. 2, piano, left handGigues (2), pianoSarabandes (2), pianoTheme and variations, pianoHungarian dances, pianoCadenza for J.S. Bach''s Clavier concerto,D minor.Cadenzas (2) for Mozart''s Piano concerto, K. 453, G majorCadenza for Mozart''s Piano concerto,K. 466,D minor.Cadenza for Mozart''s Piano concerto,K. 491,C minor.Cadenzas (2) for Beethoven''s Piano concerto, op. 58, G majorCadenza for Beethoven''s Piano concerto,op. 37,C minor.Exercises (51),piano.a339946Sirsi_Auto339946'), +(:bib_tag,'00704nam a2200193 a 450003-000438019970807230038.0970701s1970 enk u000 0 eng 72-5706670435814249MT125.H667 1970Hopkins, Anthony,1921-Talking about concertos :an analytical study of a number of well-known concertos from Mozart to the present day /diagrams and musical examples drawn by Jonathan Barkwith.London :Heinemann,1970.[9], 148 p. :music.ConcertosAnalytical guides.a340006Sirsi_Auto340006'), +(:bib_tag,'00751nam a2200229 a 450003-000439719981207192358.0970701s1974 enk u000 0 eng 75-3069240563127732MT130.C4W37 1974Warrack, John Hamilton,1928-Tchaikovsky symphonies and concertos /John Warrack.2nd ed.London :British Broadcasting Corporation,1974.64 p. :musicBBC music guides.Tchaikovsky, Peter Ilich, 1840-1893.Symphonies.Tchaikovsky, Peter Ilich, 1840-1893.Concertos.a340023Sirsi_Auto340023'), +(:bib_tag,'00622nam a2200205 a 450003-000439819991204193934.0970701s1948 nyu u000 0 eng 48-6816MT125.V4Veinus, Abraham.Victor book of concertos /by Abraham Veinus.New York, NY :Simon & Schuster,1948.xxv, 450 p. :music.Discogr.Orchestral musicDiscography.Orchestral musicAnalysis, appreciation.a340024Sirsi_Auto340024'), +(:bib_tag,'00800nam a2200229 a 450003-000440019981206131340.0970701s1950 enk u000 0 eng 50-14482MT130.M8H8 1950Hutchings, Arthur,1906-A companion to Mozart''s piano concertos /by Arthur Hutchings.2nd ed.London :Oxford University Press,1950.xiv, 211 p. :music"Thematic guide to Mozart''s concertos": pp. [xi]-xiv.Bibliogr.Mozart, Wolfgang Amadeus,1756-1791.Concertos,piano.Mozart, Wolfgang Amadeus, 1756-1791Thematic catalogs.a340026Sirsi_Auto340026'), +(:bib_tag,'00853nam a2200241 a 450003-000444719981111113740.0970701s1971 wau u000 0 eng 70-110118MT130.B43F6 1971Fiske, RogerBeethoven :concertos and overtures.Seattle, WA :University of Washington Press,1971.64 p. :musicBBC music guides. ;# 19."First published 1970 by the British Broadcasting Corporation."Beethoven, Ludwig van,1770-1827.Overtures.Beethoven, Ludwig van,1770-1827.Concertos.OverturesAnalysis, appreciation.ConcertosAnalysis, appreciation.a340073Sirsi_Auto340073'), +(:bib_tag,'00648nam a2200193 a 450003-000446520020430092042.0970701s1977 u000 0 eng uMT145.W4W4Webb, Douglas John,1935-1994.Serial techniques in John Weinzweig''s divertimentos and concertos (1945-1968) /Douglas J. Webb.[s.l. :s.n.],1977.180 p.Typescript (photocopy).Theses (Ph.D.) - Eastman School of Music.Weinzweig, John, 1913-2006.a340091Sirsi_Auto340091'), +(:bib_tag,'00888ncm a2200229 a 450003-000447520010920111220.0970701s1978 nyu 00 eng 77-157150486235998M1010.M95B6Mozart, Wolfgang Amadeus,1756-1791Piano concertos nos. 17-22 :in full score, with Mozart''s cadenzas for nos. 17-19, from the Breitkopf & Härtel complete works ed. /Wolfgang Amadeus Mozart.New York, NY :Dover,1978.1 score (370 p.)MUSIC SCORE/PARTITION MUSICALEConcertos (Piano)Scores.Concertos, piano. No. 17-22.a340101Sirsi_Auto340101'), +(:bib_tag,'02585ncm a2200541 a 450003-000449220010920113844.0970701s1969 nyu 00 eng 79-77393M1004.5.C663The concerto, 1800-1900 :a Norton music anthology /edited by Paul Henry Lang.1st ed.New York, NY :Norton,1969.xxvi, 1 score (869 p.)MUSIC SCORE/PARTITION MUSICALEViolin concerto and Piano concerto no. 5 / Beethoven -- Konzertstück / Weber -- Piano concerto no. 2 / Chopin -- Violin concerto no. 1 / Mendelssohn -- Piano concerto / Schumann -- Piano concerto no. 1 / Tchaikovsky -- Violin concerto and Piano concerto no. 2 / Brahms -- Violoncello concerto / Dvorak.Concertos (Piano)Scores.Concertos (Violin)Scores.Concertos (Violoncello)Scores.Piano with orchestraScores.Lang, Paul Henry,1901-1991.Beethoven, Ludwig van,1770-1827Weber, Carl Maria von,1786-1826Chopin, Frédéric,1810-1849Mendelssohn, Felix,1809-1847.Schumann, Robert,1810-1856Liszt, Franz,1811-1886Tchaikovsky, Peter Ilich,1840-1893Brahms, Johannes,1833-1897Dvorák, Antonín,1841-1904Concertos, violin, op. 61, D majorConcertos, piano, no. 5, op. 73, E flat major, "Emperor"Konzertstück, piano, F minorConcertos, piano, orchestra, no. 2, F minor, op. 21Concertos, violin, orchestra, op. 64, E minor.Concertos, piano, op. 54, A minorConcertos, piano, no. 1, E flat majorConcertos, piano, no. 1, op. 23, B flat minorConcertos, piano, no. 2, op. 83, B flat majorConcertos, violin, op. 77, D majorConcertos, violoncello, op. 104, B minora340118Sirsi_Auto340118'), +(:bib_tag,'01078ncm a2200277 a 450003-000452420010920111220.0970701s1987 nyu 00 eng 87-7509870486254682M1010.M95B59 1987Mozart, Wolfgang Amadeus,1756-1791Piano concertos nos. 11-16.New York, NY :Dover,1987.1 score (252 p.).MUSIC SCORE/PARTITION MUSICALEReprint. Previously published: Leipzig : Breitkopf & Hartel, 1878.Originally published in series: Wolfgang Amadeus Mozart''s Werke.Kritisch durchgesehene. Series 16, 22.Includes Mozart''s cadenzas for no. 12-16.No. 11 in F major, K.413 (1782-83). No. 12 in A major K.414 (1782) - [etc.]. No. 16 in D major, K.451 (1784).Concertos (Piano)Scores.Concertos, piano. No. 11-16.a340148Sirsi_Auto340148'), +(:bib_tag,'01106ncm a2200229 a 450003-000456519991204174538.0970701s1987 nyu 00 eng uM22.B11D63 1987Bach, Johann Sebastian,1685-1750Italian concerto, Chromatic fantasia and fugue and other works for keyboard /Bach.New York, NY :Dover,1987.1 v. of music (104 p.)MUSIC SCORE/PARTITION MUSICALEReprint. Originally published: Leipzig : Bach-Gesellschaft, 1853 (Johann Sebastian Bach''s Werke ; v. 3) (BWV 971, 831)Reprint. Originally published: Leipzig : Bach-Gesellschaft, 1890 (Johann Sebastian Bach''s Werke ; v. 36) (other works)Italian concerto, BWV 971 -- Overture in the French style : Partita in B minor, BWV 831 -- Chromatic fantasia and fugue in D minor, BWV 903 -- [etc.]Harpsichord music.Harpsichord music. Selections.a340189Sirsi_Auto340189'), +(:bib_tag,'00728ncm a2200217 a 450003-000458419991204174538.0970701s1977 au 00 ger uM24.B115S971Bach, Johann Sebastian,1685-1750Italienisches Konzert /edited by Klaus Engler.Italian concerto, BWV 971.1st ed.Wien :Wiener Urtext,1977.1 v. of music (27 p.)MUSIC SCORE/PARTITION MUSICALEHarpsichord music.Concerto nach Italienischen Gusto, harpsichord, BWV 971, F majora340208Sirsi_Auto340208'), +(:bib_tag,'00863njm a2200253 a 450003-000468919991127191346.0971027r19631952nyuuuu eng 4578Telemann, Georg Philipp,1681-1767Viola concerto in G majorNew York, NY :Vox,19631 sound disc :33 1/3 rpm, mono.PHONO RECORDViola concerto / Telemann -- Viola concerto in D major / Stamitz.Heinz Wigand, viola ; Pro Musica Orchestra, Stuttgart ; Rolf Reinhardt, conductor.Concertos (Viola)Stamitz, Carl,1745-1801Reinhardt, RolfWigand, HeinzPro Musica Orchestra (Stuttgart)a340312Sirsi_Auto340312'), +(:bib_tag,'00978ncm a2200241 a 450003-000490220010920111540.0970701s1978 nyu 00 eng 77-157190486236005M1010.M93NO.23-27Mozart, Wolfgang Amadeus,1756-1791Piano concertos nos. 23-27 :in full score, with Mozart''s cadenzas for nos.23 and 27, and the Concert rondo in D from the Breitkopf & Härtel complete works edition /Mozart.New York, NY :Dover,1978.1 score (311 p.)MUSIC SCORE/PARTITION MUSICALEConcertos (Piano)Scores.Rondos (Piano with orchestra)Scores.Concertos, piano. No. 23-27.a340512Sirsi_Auto340512'), +(:bib_tag,'00723ncm a2200205 a 450003-000490420010920111220.0970701s1943 enk 00 eng uM1010.P89OP.26MINISCOREProkofiev, Sergei,1891-1953.Piano concerto no. 3, C major, op. 26 /Prokofiev.London :Boosey & Hawkes,c1943.1 miniature score (180 p.)MUSIC SCORE/PARTITION MUSICALEHawkes Pocket Scores ;52.Concertos (Piano)Scores.Concertos, piano, no. 3, op. 26, C major.a340514Sirsi_Auto340514'), +(:bib_tag,'00683ncm a2200205 a 450003-000492120010920111232.0970701s1959 enk 00 eng uM1013.B33C6MINISCOREBartók, Béla,1881-1945Violin concerto no. 1, op. posth.London :Boosey & Hawkes,c1959.1 miniature score (64 p.)MUSIC SCORE/PARTITION MUSICALEHawkes Pocket Scores ;710.Concertos (Violin)Scores.Concertos, violin, (1907-08)a340531Sirsi_Auto340531'), +(:bib_tag,'00746ncm a2200205 a 450003-000492220010920111238.0970701n nyu 00 eng uM1017.S585OP.107MINISCOREShostakovich, Dmitrii Dmitrievich,1906-1975Cello concerto, op. 107 /Shostakovich.Melville, NY :Belwin Mills1 miniature score (73 p.)MUSIC SCORE/PARTITION MUSICALEKalmus Miniature Scores ;1484.Concertos (Violoncello)Scores.Concertos, violoncello, no. 1, op 107, E flat major.a340532Sirsi_Auto340532'), +(:bib_tag,'01521ncm a2200301 a 450003-000492420010920111154.0970701s1976 nyu 00 eng uM1040.B22C6Bach, Johann Sebastian,1685-1750The six Brandenburg concertos and the four orchestral suites :in full score /Bach.New York, NY :Dover,1976.1 score (xi, 273 p.)MUSIC SCORE/PARTITION MUSICALEFrom the Bach-Gesellchaft ed.Concertos edited by W. Rust ; suites by A. Dorffel."Summary of the editors'' prefaces (1871 & 1881)" : p. vii-xi.Concerti GrossiScores.Brandenburg concertos.Suites, orchestra, S. 1066-1069.a340534Sirsi_Auto340534'), +(:bib_tag,'01481ncm a2200325 a 450003-000493520010920111232.0970701s1985 nyu 00 eng 85-7529670486249891M1012.G8 1985Great romantic violin concertos in full score /Beethoven, Mendelssohn, Tchaikovsky.New York, NY :Dover,1985.1 v. of music (242 p.)MUSIC SCORE/PARTITION MUSICALEReprint (1st work). "From Serie 4. Fur Violine und orchester" of Ludwig van Beethoven''s Werke. Leipzig : Breitkopf & Hartel, 1862-1865.Reprint (2nd work). Originally published Wiesbaden : Breitkopf & Hartel, [18?].Reprint (3rd work). Originally published : Moscow : Gosudarstvennoe Muzykal''noe Izd-vo, 1949.D major, op. 61 / Beethoven -- E minor, op. 64 / Mendelssohn --- D major, op. 35 / Tchaikovsky.Concertos (Violin)Scores.Beethoven, Ludwig van,1770-1827Mendelssohn, Felix,1809-1847.Tchaikovsky, Peter Ilich,1840-1893Concertos, violin. Selections.Concertos, violin, op. 61, D majorConcertos, violin, orchestra, op. 64, E minor.Concertos, violin, orchestra, op. 35, D major. 1985.a340545Sirsi_Auto340545'), +(:bib_tag,'01067ncm a2200253 a 450003-000520220010920113024.0970701s1960 nyu 00 eng uM1031.H3Haydn, Joseph,1732-1809Concerto in E flat major, Hob. VIIe, no. 1 for trumpet and piano /edited and provided with cadenzas by Roger Voisin.New York, NY :International Music,1960.1 score (20 p.) +1 partMUSIC SCORE/PARTITION MUSICALEPublisher''s no.: 1985.With the orchestra acc. arranged for piano.Concertos (Trumpet)Solo with pianoScores.Voisin, RogerConcertos, trumpet, no. 1, H. VIIe, E flat major ; arr.Cadenzas to the Haydn trumpet concertos, no. 1, H.VIIe, E flat majora340791Sirsi_Auto340791'), +(:bib_tag,'01127njm a2200265 a 450003-000541319991127191330.0971106s1965 nyuuuu eng 4606Vivaldi, Antonio,1678-1741Concerto for oboe and bassoon in G major, P. 129 ; Concerto for 2 oboes and 2 clarinets in C major, P. 73 ; Oboe concerto in C major, P. 41 ; Bassoon concerto in A minor, P. 70New York, NY :Vox Turnabout,19651 sound disc :33 1/3 rpm, stereo.PHONO RECORDAlberto Caroldi, oboe ; Virginia Bianchi, bassoon ; Gli Accademici di Milano ; Piero Santi, conductor.Concertos (Oboe with string orchestra)Concertos (Bassoon and oboe with string orchestra)Concertos (Clarinets (2), oboes (2) with string orchestra)Concertos (Bassoon with string orchestra)Caroldi, AlbertoSanti, PieroGli Accademici (Milano)a340970Sirsi_Auto340970'), +(:bib_tag,'01349ncm a2200289 a 450003-000543820010920111238.0970701s1983 nyu 00 eng uM1016.G881 1983Great romantic cello concertos in full score.New York, NY :Dover,1983.1 score (188 p.)MUSIC SCORE/PARTITION MUSICALEReprint (1st work). Originally published: Leipzig : Breitkopf & Hartel, 1883.Reprint (2nd work). Originally published: Paris : Durand.Reprint (3rd work). Originally published: Berlin : Simrock, 1896.Cello concerto in A minor, op. 129 / Robert Schumann -- Cello concerto no. 1 in A minor, op. 33 / Camille Saint-Saens -- Cello concerto in B minor, op. 104 / Antonin Dvorak.Concertos (Violoncello)Scores.Schumann, Robert,1810-1856Saint-Saëns, Camille,1835-1921Dvorák, Antonín,1841-1904Concertos, violoncello, orchestra, op. 129, A minor. 1983Concertos, violoncello, orchestra, no. 1, op. 33, A minor, 1983Concertos, violoncello, orchestra, op. 104, B minor. 1983a340993Sirsi_Auto340993'), +(:bib_tag,'00800ncm a2200241 a 450003-000547020010920111220.0970701s1988 nyu 00 eng 88-7528330486258351M1010.C52OP.11 1988Chopin, Frédéric,1810-1849The piano concertos.New York, NY :Dover,1988.1 score (164 p.)MUSIC SCORE/PARTITION MUSICALEReprint. Originally published: Leipzig : Breitkopf & Härtel.No. 1 in E minor, op. 11 -- No. 2 in F minor, op. 21.Concertos (Piano)Scores.Concertos, piano.a341023Sirsi_Auto341023'), +(:bib_tag,'03625nam a2200241 a 450003-000548220020111112638.0970701s1977 inua u000 0 eng 76-485390253367204ML60.C22Carter, Elliott,1908-The writings of Elliott Carter :an American composer looks at modern music /compiled, edited, and annotated by Else Stone and Kurt Stone.Bloomington, IN :Indiana University,1977.xvii, 390 p. :ill.The New York Season, 1937 -- Late Winter, New York, 1937 -- The sleeping beauty -- Season''s end in New York, 1937 -- More about Balanchine -- Opening notes, New York, 1937 -- In the theatre, 1937 -- With the dancers, 1937 -- Homage to Ravel, 1875-1937, Vacation novelties, New York -- With the dancers, 1938 -- Musical reactions, bold and otherwise -- Orchestras and audiences, Winter, 1938 -- Recent festivals in Rochester, 1938 -- Season''send, New York, spring, 1938 -- Coolidge Crusade, WPA, New York Season, 1938 -- Once again swing, Also "American Music" -- The case of Mr. Ives, Further notes on the winter season, 1938/9 -- O fair world of music, At the hall of music -- Season of Hindemith and Americans, 1939 -- The New York season opens, 1939 -- American music in the New York scene, 1940 -- Stravinsky and other moderns in 1940 -- The changing scene, New York, 1940 -- Films and theatre, 1943 [March-April] -- American Figure, with landscape [ Henry Franklin Belknap Gilbert](cont.) Theatre and films, 1943 [May-June] -- Theatre and films, 1943 [November] -- Ives today: is version and challenge -- Music as a liberal art -- Gabriel Faure -- New publications for music -- Scores for Graham: Festival at Columbia, 1946 -- Fallacy of the mechanistic approach [The Schillinger system] -- Walter Piston -- The composer''s viewpoint [The League of Composers] -- An American destiny [Charles Edward Ives] -- The function of the composer, 1951 -- Wallingford Riegger -- The rhythmic basis of American music -- Current chronicle: New York, 1959 [Roger sessions: Violin concerto] -- Current chronicle: Italy [ISCM Festival, Rome, 1959] -- A further step/(1958) -- The composer''s choices -- Sixty staves to read -- Shop talk by an American composer -- Current chronicle: Germany, 1960 [Nicolas Nabokov: Rasputin''s end and Dmitri Shostakovitch: Lady MacBeth of Mzensk (Mtsensk)] -- The milieu of the American composer -- Letter from Europe -- Expressionism and American music -- The time dimension in music(cont.) Current chronicle: New York [Edward Steuermann] --Introduction to a poetry reading session by W. H. Auden -- Charles Ives remembered -- Sonata for cello and piano, Sonata for flute, oboe, cello and harpsichord [Program notes] -- String quartet no.2 [Program notes] -- String quartets no.1 and no.2 [Program notes] -- "The composer is a university commodity" -- The orchestral composer''s point of view -- Igor Stravinsky, 1882-1971 [Perspectives of new music] -- Igor Stravinsky, 1882-1971 [Eulogy] -- Variations for orchestra (1955) [program notes] -- Music criticism -- In memoriam: Stefan Wolpe, 1902-1972 -- String quartet no.3 [Program notes] -- Brass quintet -- Double concerto for harpsichord and piano with two chamber orchestras; Duo for violin and piano [program notes] -- Documents of a friendship with Ives -- Music and the time screen -- A symphony of three orchestras (1976).Music20th centuryHistory and criticism.Stone, KurtStone, Else,1912-a341035Sirsi_Auto341035'), +(:bib_tag,'01132njm a2200301 a 450003-000561219991211180908.0s 970701n nyu 00 eng u1306Rachmaninoff, Sergei,1873-1943The four Rachmaninoff concertos ;Rhapsody on a theme of Raganini.New York, NY :RCA Victor3 sound discs :33 1/3 rpm, mono.PHONO RECORDRed Seal Collectors IssueSergei Rachmaninoff, piano ; Philadelphia Orchestra ; Eugene Ormandy, Leopold Stokowski, conductors.Program notes (6 p.) include essay "As I saw Rachmaninoff" by Abram Chasins.Concertos (Piano)Variations (Piano with orchestra)Ormandy, Eugene,1899-1985.Stokowski, Leopold,1882-1977Philadelphia OrchestraConcertos, piano.Rapsodie sur un thème de Paganini, piano, orchestraa341158Sirsi_Auto341158'), +(:bib_tag,'01482njm a2200349 a 450003-000561720010920113134.0s 970701s1968 enk 00 eng u1301Beethoven, Ludwig van,1770-1827Portrait of the artist Yehudi Menuhin.London :Angel,1968.3 sound discs :33 1/3 rpm, stereo.PHONO RECORDYehudi Menuhin, conductor (in 1st work) and violin, with various orchestras, conductors, and instrumentalists.Program notes (4 p.), in part by N.D. Boyling, William Mann, and Bernard Jacobsen ; durations on container.The water music (complete) / Handel -- Violin concerto, op. 61 / Beethoven -- Sextet no. 1 in B flat major, op. 18 ; Allegro from the F.A.E. sonata / Brahms.Concertos (Violin)Sonatas (Violin and piano)Excerpts.String sextets (Violins (2), violas (2), violoncellos (2))Suites (Orchestra)Brahms, Johannes,1833-1897Handel, George Frideric,1685-1759Violin music.Water musicConcertos, violin, op. 61, D majorScherzos,violin,piano,C minor.Sextets,strings,no. 1, op. 18,B flat major.a341163Sirsi_Auto341163'), +(:bib_tag,'01510njm a2200349 a 450003-000566219991214125618.0s 970701s1983 onc 00 eng u1261Mozart, Wolfgang Amadeus,1756-1791The young Glenn Gould.West Hill, Ont. :Moss Music Group,1983.2 v. :33 1/3 rpm, analog, mono.PHONO RECORDLibrary has: v. 2.Glenn Gould, piano (1st-4th works) ; Alberto Guerrero, piano.Title on cover.Biographical and program notes by Michael Schulman on container.v. 2. Allegro from Sonata no. 5 in C, K. 521 (5:58) ; Andante with 5 variations in G, K. 501 (4:51) ; Allegro di molto from Sonata no. 4 in F, K. 497 (4:30) ; Fantasy no. 1 in F, K. 594 (5:52) / Mozart ; Italian concerto in F major, BWV 971 (11:59) / J.S. Bach.Piano music (4 hands)Sonatas (Piano, 4 hands)Piano music, Arranged.Bach, Johann Sebastian,1685-1750Gould, Glenn,1932-1982Guerrero, Alberto,1886-1959Piano music, 4 hands.Selections.Concerto nach Italienischen Gusto, harpsichord, BWV 971, F major.Adagio and allegro,mechanical organ,K. 594,F minor:arr.a341208Sirsi_Auto341208'), +(:bib_tag,'01194njm a2200337 a 450003-000569119991130190920.0s 970701s1986 enk 00 eng uengfreger1232Lalo, Edouard,1823-1892Cello concerto in D minor.London :London Records,1986.1 sound disc (51 min.) :digital, stereo.COMPACT DISC(S)Lynn Harrell, violoncello ; Radio-Symphonie-Orchester Berlin ; Riccardo Chailly, conductor.Program notes (10 p.) by James Harding with French and German translations.Concertos (Violoncello)Violoncello with orchestra.Saint-Saëns, Camille,1835-1921Fauré, Gabriel,1845-1924Harrell, Lynn,1944-Chailly, Riccardo,1953-Radio-Symphonie-Orchester BerlinConcertos, violoncello.Élegie,op. 24.Concertos, violoncello, no. 2, D minorhttp://example.com/Link text herePublic note herea341237Sirsi_Auto341237'), +(:bib_tag,'01461njm a2200361 a 450003-000570519991127191356.0s 970701s1983 enk 00 eng uengfreger1218Schumann, Robert,1810-1856Cello concerto.London :London Records,19831 sound disc (45 min.) :digital, stereo.COMPACT DISC(S)Lynn Harrell, violoncello ; Cleveland Orchestra ; Neville Marriner, conductor.Cadenza to the Schumann concerto composed by Lynn Harrell.Program notes by Lionel Salter with French and German translations inserted in container.Recorded at the Masonic Auditorium, Cleveland, Ohio, November 1981.Durations: 25:26 ; 19:00.Concerto / Schumann -- Concerto no. 1, op. 33 / Saint-Säens.Concertos (Violoncello)Harrell, Lynn,1944-Marriner, Neville,1924-Saint-Saëns, Camille,1835-1921Cleveland OrchestraConcertos, violoncello, orchestra, op. 129, A minor. 1983Cadenza to the Schumann violoncello concerto,op. 129.Concertos, violoncello, orchestra, no. 1, op. 33, A minor, 1983http://example.com/Link text herePublic note herea341251Sirsi_Auto341251'), +(:bib_tag,'01187njm a2200325 a 450003-000571519991211181244.0s 970701s1984 nju 00 eng uenggerfre1207Wieniawski, Henri,1835-1880Violin concerto no. 2 in D minor, op. 22.Ocean, NJ :Musical Heritage Society,1984.1 sound disc (53 min.) :33 1/3 rpm, stereo.PHONO RECORDVadim Brodsky, violin ; Polish Radio National Symphony Orchestra ; Thomas Michalak, conductor.Program notes and durations on container.Concertos (Violin)Violin with orchestra.Polonaises (Violin with orchestra)Michalak, ThomasBrodsky, Vadim,1950-Polskie Radio.Wielka Orkiestra Symfonicza (Warsaw, Poland)Concertos, violin, no. 2, op. 22, D minor.Légende, violin, op. 17Thème original varié, violin, op. 15http://example.com/Link text herePublic note herea341261Sirsi_Auto341261'), +(:bib_tag,'01183njm a2200301 a 450003-000575619991127191308.0s 970701s1983 gw 00 eng uengfregerjpn1167Vivaldi, Antonio,1678-17416 Double concertos.Hanover :Philips,1983.1 sound disc (53 min.) :digital, stereo.COMPACT DISC(S)Digital Classics.Academy of St. Martin-in-the-Fields, Neville Marriner, conductor.Durations: 6:44 ; 7:37 ; 12:23 ; 6:42 ; 6:45 ; 9:45.Concertos, trumpets (2), violin, RV 563, D major -- Concertos, mandolins (2), RV 532 -- Concertos, flutes (2) RV 533, C major -- Concertos, oboes (2), RV 536, A minor -- Concertos, oboe, bassoon, RV 545, G major.Concertos.Marriner, Neville,1924-Academy of St.Martin-in-the-Fields.Chamber EnsembleConcertos. Selections.Six double concertoshttp://example.com/Link text herePublic note herea341302Sirsi_Auto341302'), +(:bib_tag,'01069njm a2200313 a 450003-000582919991211182102.0s 970701s1988 onc 00 eng uengfre1379MasqueradeToronto, Ont. :Canadian Music Centre,1988.1 sound cassette :digital, stereo.AUDIO-CASSETTE(S)Fanfare and three masquerades / Malcolm Forsyth -- Concerto for harpsichord / R. Murray Schafer -- Third chamber concerto / Gary Kulesha.Wind ensembles.Wind nonets.Concertos (Harpsichord)Forsyth, Malcolm.Schafer, R. Murray(Raymond Murray),1933-Kulesha, Gary,1954-Canadian Chamber EnsembleFanfare and three masquerades, windsConcerto, harpsichordConcertos, chamber orchestra, no. 3http://example.com/Link text herePublic note herea341373Sirsi_Auto341373'), +(:bib_tag,'01210njm a2200325 a 450003-000586520010920113106.0s 970701s1975 nyu 00 eng u1156Strauss, Richard,1864-1949Bourgeois gentilhomme suite, op. 60 ;Horn concerto no. 1 in E-flat op. 11New York, NY :Columbia University Press,1975.1 sound disc (50 min.) :33 1/3 rpm, stereo.PHONO RECORDThe Fabulous Philadelphia Sound SeriesNotes on container by Phillip Ramey.Philadelphia Orchestra ; Mason Jones, horn (in the 2nd work) ; Eugene Ormandy, conductor.Durations: 33:46 ; 15:15.Suites (Orchestra)Incidental musicExcerpts.Concertos (Horn)Jones, MasonOrmandy, Eugene,1899-1985.Philadelphia OrchestraDer Bürger als Edelmann. SuiteConcertos, horn, no. 1, op. 11, E flat major, "Waldhornkonzert".http://example.com/Link text herePublic note herea341408Sirsi_Auto341408'), +(:bib_tag,'01053njm a2200265 a 450003-000588719991213195224.0s 970701s1982 mnu 00 eng u1134Mozart, Wolfgang Amadeus,1756-1791Violin concerto no. 3 in G, K. 216 ;Sinfonia concertante, K. 364, E flat majorMinneapolis, MN :Pro-Arte,1982.1 sound disc (54 min.) :digital, stereo. ; +1 pamphlet (4 p.)COMPACT DISC(S)Christian Altenburger, violin ; German Bach Soloists ; Helmut Winschermann, conductor.Violin and viola with orchestra.Concertos (Violin)Winschermann, HelmutAltenburger, Christian,1957-Concertos, violin, no. 3, K. 216, G majorSinfonia concertante,violin,viola,orchestra,K. 320d (364),E flat major.http://example.com/Link text herePublic note herea341429Sirsi_Auto341429'), +(:bib_tag,'00931njm a2200265 a 450003-000588920010305153110.0s 970701s1984 gw 00 eng uengger1132Shostakovich, Dmitrii Dmitrievich,1906-1975Cello concertosHanover :Philips,1984.1 sound disc (62 min.) :digital, stereo. +1 pamphlet (8 p.)COMPACT DISC(S)Heinrich Schiff, violoncello ; Symphonie-Orchester des Bayerischen Rundfunks ; Maxim Shostakovich, conductorConcertos (Violoncello)Schiff, Heinrich,1952-Shostakovich, Maksim Dmitrievich,1938-Bayerischer Rundfunk.Orchester.Concertos, violoncellohttp://example.com/Link text herePublic note herea341431Sirsi_Auto341431'), +(:bib_tag,'01072njm a2200289 a 450003-000589019991127191350.0s 970701s1986 gw 00 eng uenggerfreCD 1130Mozart, Wolfgang Amadeus,1756-1791Concerto for violin and orchestra no. 2 in D major, K. 211Hamburg :Deutsche Grammophon / Polydor International,1986.1 sound disc (42 min.) :digital, stereo. ; +1 pamphlet (8 p.)COMPACT DISC(S)Itzhak Perlman, violin ; Wiener Philharmoniker ; James Levine, conductor.With: Violin concerto no. 4, K. 218.Concertos (Violin)Perlman, Itzhak,1945-Levine, James,1943-Wiener PhilharmonikerConcertos, violin, no. 2, K. 211, D majorConcertos, violin, no. 4, K. 218, D majorhttp://example.com/Link text herePublic note herea341432Sirsi_Auto341432'), +(:bib_tag,'01024njm a2200301 a 450003-000589419991127191356.0s 970701s1985 nyu 00 eng uengfre1125Elgar, Edward,1857-1934.Cello concerto, op. 85New York, NY :CBS Records,1985.1 sound disc (59 min.) :digital stereo. ; +1 pamphlet (8 p.)COMPACT DISC(S)Yo-Yo Ma, violoncello ; London Symphony Orchestra ; André Previn, conductor.With: Cello concerto / Walton (30:06).Concertos (Violoncello)Walton, William,1902-1983.Ma, Yo-Yo,1955-Previn, André,1929-London Symphony OrchestraConcertos, violoncello, op. 85, E minor.Concertos, violoncellohttp://example.com/Link text herePublic note herea341436Sirsi_Auto341436'), +(:bib_tag,'01108njm a2200277 a 450003-000589519991204174540.0971119n nyuuuu eng 4639Albrechtsberger, Johann Georg,1736-1809,.Harpsichord concerto in B flat majorNew York, NY :Vox Turnabout1 sound disc :33 1/3 rpm, stereo.PHONO RECORDConcerto / Albrechtsberger -- Harpsichord concerto in A major / Dittersdorf -- Pastorale in G major for harpsichord and string orchestra / Werner.Janos Sebestyen, harpsichord ; Hungarian Chamber Orchestra ; V. Tatrai, conductor.Concertos (Harpsichord with chamber orchestra)Harpsichord with chamber orchestra.Dittersdorf, Karl Ditters von,1739-1799Werner, Gregor Joseph,1695-1766Sebestyen, JanosTatrai, V.Hungarian Chamber Orchestrahttp://example.com/Link text herePublic note herea341437Sirsi_Auto341437'), +(:bib_tag,'01224njm a2200361 a 450003-000590419991216192506.0s 970701s1981 cau 00 eng u1116Four trumpet concertosAngel / EMI,1981.1 sound disc (49 min.) :33 1/3 rpm, digital, stereo.PHONO RECORDNotes on container.Maurice André, trumpet : Wurttemberg Chamber Orchestra ; Jorg Faerber, conductorConcertos (Trumpet)Concerti grossi.Sonatas (Trumpet)André, MauriceAlbinoni, Tomaso,1671-1750Handel, George Frideric,1685-1759Otto, Luigi,fl. 1750Barsanti, Francesco,1690-1772Faerber, Jörg,1929-Württemberg.KammerorchesterConcertos, trumpetSonatas,op. 1,no. 12,F major.Concertos, trumpet, op. 9, no. 2, D minorConcerti grossi,op. 3, no. 12,D major.http://example.com/Link text herePublic note herea341446Sirsi_Auto341446'), +(:bib_tag,'00843njm a2200253 a 450003-000592419991127191350.0s 970701s1977 nyu 00 eng u1001Khachaturian, Aram,1903-1978.Violin concerto in D minorNew York, Ny :Odyssey / Melodiya,1977.1 sound disc :33 1/3 rpm, stereo.PHONO RECORDProgram notes on container."This album contains previously released material."Concertos (Violin)Oistrakh, David Fedorovich,1908-1974.Vsesoiuznoe radio.Bol''shoi simfonicheskii orkestrConcertos, violin.http://example.com/Link text herePublic note herea341466Sirsi_Auto341466'), +(:bib_tag,'00825njm a2200253 a 450003-000593819991127191334.0s 970701s1984 ohu 00 eng uCD 1015Beethoven, Ludwig van,1770-1827The five piano concertosCleveland, OH :Telarc,1984.3 sound discs (167 min.) :digital, stereo.COMPACT DISC(S)Rudolf Serkin, piano ; Boston Symphony Orchestra, Seiji Ozawa, conductor.Concertos (Piano)Serkin, Rudolf,1903-1991.Ozawa, Seiji,1935-Boston Symphony OrchestraConcertos, pianohttp://example.com/Link text herePublic note herea341480Sirsi_Auto341480'), +(:bib_tag,'01348njm a2200361 a 450003-000596820030320143054.0s 970701s1984 sw a 00 eng uengger1047Jolivet, André,1905-1974Suite en concert pour flûte et percussionStockholm :Bis,1984.1 sound disc (49 min.) :digital, stereo. +1 pamphlet 9((14] p. : ill.)COMPACT DISC(S)The Kroumata Percussion Ensemble with Manuela Wiesler, flute.The first work is also titled "2e concerto pour flûte."With: First concerto for flute and percussion / Lou Harrison (7:47) -- Amores / John Cage (9:16) -- Drums (12) / Sven David Sandström.Flute and percussion music.Concertos (Flute and percussion)Piano music.Harrison, Lou,1917-2003.Cage, John,1912-1992.Sandström, Sven David,1942-Suite en concert,flute,percussion.AmoresConcertos,flute,no. 2.Concertos,flute,percussion.Drums (12)http://example.com/Link text herePublic note herea341510Sirsi_Auto341510'), +(:bib_tag,'01204njm a2200301 a 450003-000598119991211181238.0s 970701s1975 nyu 00 eng u1058Carter, Elliott,1908-Double concerto for harpsichord and two chamber orchestrasNew York, NY :Nonesuch,1975.1 sound disc (40 min.) :33 1/3 rpm, stereo.PHONO RECORDProgram notes by the composer on container.Paul Jacobs, harpsichord ; Gilbert Kalish, piano ; Contemporary Chamber Ensemble, Arthur Weisberg, conductor (in the 1st work) : Paul Zukofsky, violin ; Gilbert Kalish, piano (in the 2nd work).With: Duo for violin and piano (17:24).Concertos (Harpsichord and piano)Violin and piano music.Jacobs, Paul,1930-Kalish, Gilbert,1935-Weisberg, Arthur,1931-Zukofsky, Paul,1943-Concertos, harpsichord, piano, chamber orchestras (2)http://example.com/Link text herePublic note herea341523Sirsi_Auto341523'), +(:bib_tag,'01177njm a2200325 a 450003-000599219991204211530.0s 970701q1969 nyu 00 eng u1069Haydn, Joseph,1732-1809Sonata no. 52 in E flat, op. 82New York, NY :Seraphim,1969?.1 sound cassette (49 min.) :analog, mono.AUDIO-CASSETTE(S)Vladimir Horowitz, piano ; London Symphony Orchestra, Albert Coates, conductor (for the concerto).Duratins: 14:50 ; 33:50.Selections recorded 1934-35 and 1930.With: Piano concerto no. 3 in D minor / Rachmaninoff.Sonatas (Piano)Concertos (Piano)Rachmaninoff, Sergei,1873-1943Horowitz, Vladimir,1904-1989.Coates, Albert,1882-1953London Symphony OrchestraSonatas, piano, no. 52, op. 82, E flat major.Concertos, piano, no. 3, op. 30, D minorhttp://example.com/Link text herePublic note herea341534Sirsi_Auto341534'), +(:bib_tag,'01204njm a2200301 a 450003-000600820000113190138.0s 970701s1964 enk 00 eng u1085Britten, Benjamin,1913-1976Symphony for cello and orchestra, op. 68London :London Records,1964.1 sound disc :33 1/3 rpm, stereo. +1 sheetPHONO RECORDMstislav Rostropovich, violoncello ; English Chamber Orchestra ; Benjamin Britten, conductor.With: Concerto in C for cello and orchestra / Haydn ; cadenzas by Benjamin Britten.Symphonies (Violoncello with orchestra)Concertos (Violoncello)Haydn, Joseph,1732-1809Rostropovich, Mstislav,1927-English Chamber OrchestraSymphonies,violoncello,orchestra,op. 68.Cadenzas for the violoncello concerto in C major, no. 1, H. VIIb by HaydnConcertos, violoncello, no. 1, H. VIIb, C majorhttp://example.com/Link text herePublic note herea341550Sirsi_Auto341550'), +(:bib_tag,'02083njm a2200445 a 450003-000604919991127191344.0s 970701s1974 nyu 00 eng u915Haydn, Joseph,1732-1809Concerto in E flat majorNew York, NY :RCA Red Seal,1974.2 sound discs (89) min. :33 1/3 rpm, stereo.PHONO RECORDThe Classic French Collection.Notes on container by Stoddard Lincoln.Title on label: Great trumpet concertos.Various ensembles ; Bamberg Symphony Orchestra ; Theodor Guschlbauer, conductor ; Jean-François Paillard, condcutor ; Lamoureux Orchestra ; Jean-Baptiste Mari, conductor ; Die Wiener Solisten ; Maurice André, Selmer trumpet.Concertos, trumpet, H. VIIe, 1, E flat major / Haydn -- Concertos, trumpet, A flat major ; Concertos, B flat major, P. 406 / Vivaldi -- Concertos, trumpet, E flat major / Hummel -- Concertos, trumpet, D major / Torelli -- Concertos, trumpet, B flat major / Albinoni -- Concertos, trumpet, D major ; Sonate de concert, D major / Telemann.Concertos (Trumpet)Guschlbauer, TheodorAndré, MauriceVivaldi, Antonio,1678-1741Hummel, Johann Nepomuk,1778-1837Torelli, Giuseppe,1658-1709Albinoni, Tomaso,1671-1750.Telemann, Georg Philipp,1681-1767Paillard, Jean François,1928-Bamberg Symphony OrchestraOrchestre des concerts LamoureuxConcertos, trumpet, no. 1, H. VIIe, E flat major.Concertos, trumpet, B flat majorConcertos, trumpet, D majorSonate de concert, D majorConcertos, trumpet, A flat majorConcertos, trumpet, P. 406, B flat majorhttp://example.com/Link text herePublic note herea341589Sirsi_Auto341589'), +(:bib_tag,'01245njm a2200313 a 450003-000608419990415153704.0s 970701q1960 enk 00 eng u941Beethoven, Ludwig van,1770-1827Triple concerto in C minor, op. 57London :Angel/EMI,1960?.1 sound disc (67 min.) :33 1/3 rpm, stereo.PHONO RECORDProgam notes on container.David Oistrakh, violin ; Sviatoslav Knushevitsky, violoncello ; Lev Oborin, piano ; Philharmonia Orchestra ; Sir Malcolm Sargent, conductor.With: Double concerto, A minor, op. 102 / Brahms.Concertos (Violin, violoncello)Concertos (Piano, violin, violoncello)Brahms, Johannes,1833-1897Sargent, Malcolm, Sir,1895-1967Oistrakh, David Fedorovich,1908-1974.Philharmonia Orchestra (London, England)Concertos, piano, violin, violoncello, op. 57Concertos, violin, violoncello, op. 102, A minorhttp://example.com/Link text herePublic note herea341622Sirsi_Auto341622'), +(:bib_tag,'01115njm a2200301 a 450003-000610320010920113104.0s 970701s1985 flu 00 eng u950, no. 129Beethoven, Ludwig van,1770-1827Rondo for concerto no. 1 in C majorClearwater, FL :Evatone,1985.1 sound disc :33 1/3 rpm, mono.PHONO RECORDPiano Quarterly ;129Russell Sherman, piano ; Czech Philharmonic Orchestra, Váslav Neumann, conductor."The entire concerto is digitally recorded on Pro-Arte Records (PAD 175)."Concertos (Piano)Excerpts.Sonatas (Piano)Sherman, RussellNeumann, Václav,1920-Czech Philharmonic OrchestraConcertos, piano, no. 1, op. 15, C major. RondoSonatas,piano,no. 23, op. 57,"Appassionata." Allegro.http://example.com/Link text herePublic note herea341641Sirsi_Auto341641'), +(:bib_tag,'00990njm a2200277 a 450003-000613120030124135200.0s 970701s1972 nyu 00 eng u1421Brahms, Johannes,1833-1897Piano concerto no. 1 in D minor, op. 15 ;Piano concerto no. 2 in B flat major, op. 83New York, NY :Columbia [Records],1972.2 sound discs :33 1/3 rpm, stereo.PHONO RECORDRudolf Serkin, piano ; Cleveland Orchestra ; George Szell, conductor.Durations given on album.Program notes by Gerald Anders on slipcase. Manual sequence.Concertos (Piano)Serkin, Rudolf,1903-1991.Szell, George,1897-1970Cleveland OrchestraConcertos, pianohttp://example.com/Link text herePublic note herea341668Sirsi_Auto341668'), +(:bib_tag,'00905njm a2200265 a 450003-000613219991127191334.0s 970701s1962 enk 00 eng u1422Brahms, Johannes,1833-1897Piano concerto no. 1 in D minor, op. 15London :London Records,1962.1 sound disc :33 1/3 rpm, mono.PHONO RECORDClifford Curzon, piano ; London Symphony Orchestra ; George Szell, conductor.Program notes by G. Stewart on slipcase.Concertos (Piano)Curzon, Clifford,1907-1982.Szell, George,1897-1970London Symphony OrchestraConcertos, piano, no. 1, D minor, op. 15http://example.com/Link text herePublic note herea341669Sirsi_Auto341669'), +(:bib_tag,'01052njm a2200289 a 450003-000613420000112183850.0s 970701s1967 nyu 00 eng u1424Mozart, Wolfgang Amadeus,1756-1791Piano concerto no. 15 in B flat major, K. 450 ;Symphony no. 36 in C major, K. 425, "Linz"New York, NY :London,1967.1 sound disc :33 1/3 rpm, stereo.PHONO RECORDVienna Philharmonic Orchestra, Leonard Bernstein, piano and conductor.Durations: 26:55 ; 30:20.Program notes in part by E. Smith on album.Concertos (Piano)Symphonies.Bernstein, Leonard,1918-1990.Wiener PhilharmonikerConcertos, piano, no. 15, K. 450, B flat major.Symphonies,K. 425,C major,"Linz".http://example.com/Link text herePublic note herea341671Sirsi_Auto341671'), +(:bib_tag,'00982njm a2200289 a 450003-000614119991204211548.0971120n enkuuu eng 4634Dohnányi, Ernst,1877-1960.Concertos,violoncello,op. 12Cello concerto, op. 12Angel1 sound disc :33 1/3 rpm, mono.PHONO RECORDConcerto / Dohnányi -- Sonata for solo cello, op. 8 / Kodály.Janos Starker, violoncello ; Philharmonia Orchestra ; Walter Susskind, conductor.Sonatas (Violoncello)Concertos (Violoncello)Kodály, Zoltán,1882-1967Starker, JanosSusskind, WalterPhilharmonia Orchestra (London, England)Sonatas,violoncello,op. 8http://example.com/Link text herePublic note herea341678Sirsi_Auto341678'), +(:bib_tag,'01057njm a2200289 a 450003-000614920020208111636.0s 970701s1959 enk 00 eng u1439Brahms, Johannes,1833-1897Violin concerto in D major, op. 77London :Angel,1959.1 sound disc :33 1/3 rpm, mono.PHONO RECORDGreat recordings of the century.Fritz Kreisler, violin ; London Philharmonic Orchestra ; Sir John Barbirolli, conductor.Recorded June 18, and 22, 1936, in London.Program notes by Marc Pincherle and Claude Rostand (16 p.) inserted in slipcase.Concertos (Violin)Kreisler, Fritz,1875-1962Barbirolli, John, Sir,1899-1970London Philharmonic OrchestraConcertos, violin, op. 77, D majorhttp://example.com/Link text herePublic note herea341686Sirsi_Auto341686'), +(:bib_tag,'00774njm a2200229 a 450003-000617119991211180908.0971121n enkuuu eng 4612Dohnányi, Ernst,1877-1960Variations on a nursery tune ; Piano concerto no. 2Angel1 sound disc :33 1/3 rpm, mono.PHONO RECORDErnst von Dohnányi, piano ; Royal Philharmonic Orchestra ; Sir Adrian Boult, conductor.Variations (Piano with orchestra)Concertos (Piano)Boult, Adrian, Sir,1889-1983Royal Philharmonic Orchestrahttp://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereSYS1a341708Sirsi_Auto341708'), +(:bib_tag,'00885njm a2200265 a 450003-000618819991127191350.0s 970701s1960 nyu 00 eng u1462Sibelius, Jean,1865-1957Violin concerto in D minor, op. 47New York, NY :RCA Victor,1960.1 sound disc :33 1/3 rpm, stereo.PHONO RECORDJascha Heifetz, violin ; Chicago Symphony Orchestra ; Walter Hendl, conductor.Program notes on slipcase.Concertos (Violin)Heifetz, Jascha,1901-1987.Hendl, Walter,1917-Chicago Symphony OrchestraConcerto,violin,op. 47,D minor.http://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereSYS1a341724Sirsi_Auto341724'), +(:bib_tag,'01060njm a2200289 a 450003-000619019991127191326.0s 970701s1954 onc 00 eng u1464Mozart, Wolfgang Amadeus,1756-1791Horn concertosToronto, Ont. :Angel Records,1954.1 sound disc :33 1/3 rpm, mono.PHONO RECORDTitle from slipcase.Dennis Brain, horn ; Philharmonia Orchestra ; Herbert von Karajan, conductor.Program notes by Mosco Carner on slipcase.No. 1, D major, K. 412 -- No. 3, E flat major, K. 447 -- No. 2, E flat major, K. 417 -- No. 4, E flat major, K. 495.Concertos (Horn)Brain, Dennis,1921-1957Karajan, Herbert von,1908-1989Philharmonia Orchestra (London, England)Concertos, hornhttp://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereSYS1a341726Sirsi_Auto341726'), +(:bib_tag,'01129njm a2200313 a 450003-000619319991127191350.0s 970701s1963 nyu 00 eng u1467Bruch, Max,1838-1920Violin concerto no. 1, in G minor, op. 26New York, NY :RCA Victor,1963.1 sound disc :33 1/3 rpm, mono.PHONO RECORDJascha Heifetz, violin ; New Symphony Orchestra of London ; Malcolm Sargent, conductor.Recorded in England.Duration: 21:58.Program notes by Samuel Chotzinoff on slipcase.With: Concerto, violin, K. 218, D major / Mozart.Concertos (Violin)Heifetz, Jascha,1901-1987.Sargent, Malcolm, Sir,1895-1967.Royal Albert Hall OrchestraConcertos, violin, no. 1, op. 26, G minorConcertos, violin, no. 4, K. 218, D major.http://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereSYS1a341729Sirsi_Auto341729'), +(:bib_tag,'01064njm a2200325 a 450003-000621119991204200044.0s 970701s1966 nyu 00 eng 66-3151485Schumann, Robert,1810-1856Piano concerto in A minor, op. 54New York, NY :RCA Victor,1966.1 sound disc :33 1/3 rpm, stereo.PHONO RECORDColumbia MasterworksLeonard Pennario, piano ; London Symphony Orchestra ; Seiji Ozawa, conductor.Duration: 30:28.Program notes by Douglas Watt on slipcase.With: Burleske / Richard Strauss.Concertos (Piano)Piano with orchestra.Pennario, LeonardOzawa, Seiji,1935-London Symphony OrchestraConcertos, piano, op. 54, A minorhttp://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereSYS1a341745Sirsi_Auto341745'), +(:bib_tag,'01113njm a2200289 a 450003-000621320030124135202.0s 970701s1963 nyu 00 eng u1487Handel, George Frideric,1685-1759Organ concertosNew York, NY :Columbia [Records],1963.1 sound disc :33 1/3 rpm, stereo.PHONO RECORDE. Power Biggs, organ ; London Philharmonic Orchestra ; Sir Adrian Boult, conductor.Recorded in the St. James Parish Church, Great Packington, England.Program notes by Biggs on slipcase.Op. 4, no. 2, B-flat major ; No. 13, F major ; Op. 4, no. 5, F major ; No. 16, F major.Concertos (Organ)Biggs, E. Power(Edward George Power),1906-1977.Boult, Adrian, Sir,1889-1983.London Philharmonic OrchestraConcertos, organ. Selections.http://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereSYS1a341747Sirsi_Auto341747'), +(:bib_tag,'01113njm a2200325 a 450003-000629019991204193930.0s 970701s1979 enk 00 eng u975Bridge, Frank,1879-1941Oration :concerto elegiaco for cello and orchestraBurnham :Lyrita,1979.1 sound disc :33 1/3 rpm, stereo.PHONO RECORDNotes on container.Julian Lloyd Webber, violoncello ; London Philharmonic Orchestra, Nicholas Braithwaite, conductor.With: Two poems (1915) -- Allegro moderato for string orchestra (1941).Concertos (Violoncello)Symphonic poemsOrchestral music.Braithwaite, NicholasLloyd Webber, Julian,1951-London Philharmonic OrchestraOrationPoems (2)Allegro moderato, string orchestrahttp://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereSYS1a341823Sirsi_Auto341823'), +(:bib_tag,'01083njm a2200313 a 450003-000630419991211180904.0s 970701s1985 enk 00 eng u988Vaughan Williams, Ralph,1872-1958Fantasia on a theme by TallisWyaston Leys :Nimbus Records,1985.1 sound disc (62 min.) :digital, stereo.COMPACT DISC(S)English String Orchestra, William Boughton, conductor.With: Oboe concerto -- Concerto grosso -- Fantasia on Greensleeves -- Five variants on Dives and Lazarus.Concertos (Oboe)Concerti grossi.Variations (Orchestra)String-orchestra musicFantasia on a theme by TallisConcertos, oboeFantasia on GreensleevesVariants on Dives and LazarusConcerto grossohttp://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereSYS1a341837Sirsi_Auto341837'), +(:bib_tag,'01760njm a2200385 a 450003-000635419991127191346.0971121n nyuuuu eng 4613Virtuoso wind concertosNew York, NY :Nonesuch1 sound disc :33 1/3 rpm, stereo.PHONO RECORDConcerto for flute and orchestra in A minor, P. 77, F. XII/11 -- Concerto for trumpet and orchestra in D major / Fasch -- Concerto oboe and orchestra in C major, op. 9, no. 4 / Albinoni -- Concerto for horn and orchestra in C major / Telemann -- Concerto for clarinet and orchestra in B flat major / Stamitz.Aurèle Nicolet, flute ; Maurice André, trumpet ; Helmut Winschermann, oboe ; Franz Klein, clarinet ; Erich Penzel, horn ; Beutsche Bachsolisten ; Cologne Soloists Ensemble ; Hlemut Winschermann, Helmut Müller-Brühl, conductors.Concertos (Flute with string orchestra)Concertos (Trumpet with chamber orchestra)Concertos (Oboe with string orchestra)Concertos (Clarinet with chamber orchestra)Vivaldi, Antonio,1678-1741Fasch, Johann Friedrich,1688-1758Albinoni, Tomaso,1671-1750Telemann, Georg Philipp,1681-1767Stamitz, Carl,1745-1801Nicolet, AurèleAndré, MauriceWinschermann, HelmutKlein, FranzPenzel, ErichMüller-Brühl, HelmutDeutsche BachsolistenCologne Soloists Ensemblehttp://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereSYS1a341886Sirsi_Auto341886'), +(:bib_tag,'00991ncm a2200229 a 450003-000637320010528140118.0970701s1931 gw 00 eng uM1011.H3Haydn, Joseph,1732-1809Konzert für Cembalo (Klavier) und Orchester, D-DurConcerto for piano and orchestra, D major / mit Begleitung eines zweiten Klaviers und Original-Kadenzen herausgegeben von Robert TeichmüllerFrankfurt :Peters,1931.1 2-piano score (38 p.) +supplement (5 p.)MUSIC SCORE/PARTITION MUSICALESupplement contains two other cadenzas to the concerto.Concertos (Piano)2-piano scores.Concertos, piano, H. XVIII, 11, D major ; arr.http://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereSYS1a341903Sirsi_Auto341903'), +(:bib_tag,'00878nam a2200253 a 450003-000645920010920111304.0001208s1974 gerg 000 eng dM 947 L54 K3 S32Ligeti, György,1923-Chamber concertoKammerkonzert (1969-1970) = Chamber concerto /György LigetiMainz :Schott Music,19741 score (106 p.)MUSIC SCORE/PARTITION MUSICALEEdition Schott ;6323Music of our timeFor 13 wind, string, and keyboard instrumentsDuration: ca. 21 min.Includes instructions for performance in German and EnglishInstrumental ensemblesScores.http://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereSYS1a341988Sirsi_Auto341988'), +(:bib_tag,'00707njm a2200217 a 450003-000666219991211181252.0971125n nyuuuu eng 4627Pergolesi, Giovanni Battista,1710-1736Six concertini for strings ; Sonata in the style of a concerto ; Sinfonia for violoncello and stringsNew York, NY :Angel2 sound discs :33 1/3 rpm, mono.PHONO RECORDI Musici.Concerti grossi.Violoncello with string orchestra.I Musicihttp://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereSYS1a342187Sirsi_Auto342187'), +(:bib_tag,'00995njm a2200301 a 450003-000679720000115151600.0s 970701s1986 nyu 00 eng u1552Carter, Elliott,1908-Piano concerto ;Variations for orchestraNew York, NY :New World Records,1986.1 sound disc :stereo.COMPACT DISC(S)Recorded Anthology of American Music.Ursula Oppens, piano ; Cincinnati Symphony Orchestra ; Michael Gielen, conductor.Durations: 22:35 ; 22:17.Concertos (Piano)Variations (Orchestra)Oppens, UrsulaGielen, Michael,1927-Cincinnati Symphony OrchestraWorks. SelectionsVariations, orchestra.http://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereSYS1a342315Sirsi_Auto342315'), +(:bib_tag,'00973njm a2200277 a 450003-000681719991127191334.0s 970701s1976 gw 00 ger ugerengfre1555Mozart, Wolfgang Amadeus,1756-1791Piano concertos no. 13 & 15Hamburg :Archiv Produktion,1976.1 sound disc :digital, stereo.COMPACT DISC(S)Malcolm Bilson, piano ; English Baroque Soloists ; John Eliot Gardiner, conductor ; performed on authentic instruments.Durations: 30:37 ; 21:28.Concertos (Piano)Bilson, MalcolmGardiner, John EliotConcertos, piano, no. 13, K. 415 (387b), C majorConcertos, piano, no. 15, K. 450, B flat majorhttp://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereSYS1a342335Sirsi_Auto342335'), +(:bib_tag,'01619njm a2200433 a 450003-000688320030127153314.0s 970701q1960 gw 00 eng uengfre1617Tchaikovsky, Peter Ilich,1840-1893Symphonies no. 4-6 ;Violin concerto ; Serenade for strings ; Nutcracker ballet suite ; Overture 1812 ; Capriccio italien ; Slavonic march ; Piano concerto no. 1Hamburg :Deutsche Grammophon,1960?.7 sound discs :33 1/3 rpm, stereo.PHONO RECORDChristian Ferras, violin ; Sviatoslav Richter, piano ; Don Cossack Choir Serge Jaroff ; Berlin Philharmonic Orchestra ; Herbert von Karajan, conductor.Concertos (Violin)Concertos (Piano)Symphonies.Overtures.Suites (Orchestra)Orchestral music.BalletsExcerpts.Ferras, ChristianRichter, Sviatoslav,1915-1997.Karajan, Herbert von,1908-1989Berliner PhilharmonikerWorks. SelectionsConcertos, piano, no. 1, op. 23, B flat minorSymphonies.No. 4-6.The nutcracker.Selections.Concertos, violin, op. 35, D major1812 overtureSerenades,strings,op. 48,C major.Capriccio italien.http://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereSYS1a342397Sirsi_Auto342397'), +(:bib_tag,'00976njm a2200277 a 450003-000689419991204180856.0s 970701s1977 hu 00 hun uhunenggerrus816Berg, Alban,1885-1935Chamber concertoBudapest :Hungaroton,1977.1 sound disc (60 min.) :33 1/3 rpm, stereo.PHONO RECORDNotes on cover.Laslo Kote, violin ; Lorant Szucs, piano ; Budapest Chamber Ensemble ; Andras Mihaly, conductor.Chamber concerto (30:29) -- Chamber concerto (18:40) / Gyorgy Ligeti.Concertos (Piano, violin with chamber orchestra)Instrumental ensembles.Ligeti, György,1923-Kammerkonzert,piano,violin,winds.http://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereBR3SYS1a342408Sirsi_Auto342408'), +(:bib_tag,'00686njm a2200229 a 450003-000689620030124135204.0s 970701s1979 nyu 00 eng u825Penderecki, Krzysztof,1933-Violin concertoNew York, NY :Columbia [Records],1979.1 sound disc (37 min.) :33 1/3 rpm, stereo.PHONO RECORDColumbia MasterworksProgram notes by M.A. Feldman.Concertos (Violin)Concertos, violin.http://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereBR3SYS1a342410Sirsi_Auto342410'), +(:bib_tag,'00993njm a2200277 a 450003-000689719991127191350.0s 970701s1982 cau 00 eng u826Prokofiev, Sergei,1891-1953.The two violin concertosHollywood, CA :Angel,1982.1 sound disc :33 1/3 rpm, digital, stereo.PHONO RECORDItzhak Perlman, violin ; BBC Symphony Orchestra ; Gennady Rozhdestvensky, conductor.Concerto, no. 1, D major, op. 19 -- Concerto no. 2, G minor, op. 63.Concertos (Violin)Perlman, Itzhak,1945-Rozhdestvensky, Gennady,1931-BBC Symphony OrchestraConcertos, violin, no. 1, op. 19, D majorConcertos, violin, no. 2, G minor, op. 63http://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereBR3SYS1a342411Sirsi_Auto342411'), +(:bib_tag,'01503nam a2200253 a 450003-000691420000329174802.0970701s1982 nyua u000 0 eng 82-718060801415454ML60.H4983M88 1982BHenze, Hans Werner,1926-Music and politics :collected writings, 1953-81 /translated by Peter LabanyiIthaca, NY :Cornell University Press,1982.286 p., [8] p. of plates :ill.Illustrations -- Publisher''s note -- Introduction -- Chronology -- First works -- German music in the 1940''s and 1950''s -- The bourgeois artist -- Naples -- The message of Music -- Visconti and opera production -- Castelli Romani -- Music as a means of resistance -- instrumental composition -- Gustav mahler -- Second piano concerto -- experiments and the avant-garde -- Does music have to be political? -- Art and the revolution -- Second violin concerto -- The task of revolutionary music -- musical life in Cuba -- Signs -- Opera belongs to all -- A new journal -- Music for Edward Bond''s orpheus -- Benjamin Britten -- Paul Dessau - The Montepulciano cantieri, 1976-80 -- A letter to young artists.Henze, Hans Werner,1926-ComposersGermanyBiography.Music and state.Music.Labanyi, Peterhttp://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereBR3SYS1a342428Sirsi_Auto342428'), +(:bib_tag,'01030njm a2200301 a 450003-000691619991211174128.0s 970701s1959 nyu 00 eng u1624Ravel, Maurice,1875-1937Piano concerto in GNew York, NY :RCA Victor,1959.1 sound disc :33 1/3 rpm, monoPHONO RECORDNicole Henriot-Schweitzer, piano ; Boston Symphony Orchestra ; Charles Munch, conductor.With: Symphony on a French mountain air / Vincent d''Indy.Symphonies.Concertos (Piano)Henriot-Schweitzer, NicoleIndy, Vincent d'',1851-1931Munch, Charles,1891-1968Boston Symphony OrchestraConcertos, piano, G majorSymphonie sur un chant montagnard françaishttp://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereBR3SYS1a342430Sirsi_Auto342430'), +(:bib_tag,'00623nam a2200181 a 450003-000693419971128095344.0971128s1996 nyu 000 0 eng ML 410 V82 E84 1996Everett, PaulVivaldi, The Four Seasons and other concertos, op. 8New York, NY :Cambridge University Press,1996104 p. :musicCambridge music handbooksVivaldi, Antonio,1678-1741.Cimento dell''armonia e dell''inventionehttp://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereBR3SYS1a342448Sirsi_Auto342448'), +(:bib_tag,'01555njm a2200385 a 450003-000693519991219133510.0s 970701q1970 enk 00 eng u1637Mozart, Wolfgang Amadeus,1756-1791Piano concerto no. 21 in CLondon :Angel,1970?.2 sound discs :33 1/3 rpm, stereo.PHONO RECORDTitle on cover: Close-up : Jacqueline Du Pré & Daniel Barenboim.Jacqueline Du Pré, violoncello ; Daniel Barenboim, piano ; English Chamber Orchestra, Daniel Barenboim, conductor.With: Cello concerto in B flat / Boccherini -- Appassionata sonata / Beethoven -- Cello sonata no. 2 in F / Brahms.Concertos (Piano)Concertos (Violoncello)Sonatas (Piano)Sonatas (Violoncello and piano)Boccherini, Luigi,1743-1805Beethoven, Ludwig van,1770-1827Brahms, Johannes,1833-1897Du Pré, Jacqueline,1945-1987Barenboim, Daniel,1942-English Chamber OrchestraConcertos, piano, no. 21, K. 467, C majorSonatas,piano,no. 23, op. 57,F minor,"Appassionata".Concertos, violoncello, B flat majorSonatas, violoncello, piano, no. 2, op. 99, F major.http://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereBR3SYS1a342449Sirsi_Auto342449'), +(:bib_tag,'00994njm a2200289 a 450003-000693720020208111636.0s 970701q1965 nyu 00 eng u1636Mozart, Wolfgang Amadeus,1756-1791Piano concerto no. 26 in D, "Coronation"New York, NY :Seraphim,1965?.1 sound disc :33 1/3 rpm, monoPHONO RECORDGreat recordings of the century.Wanda Landowska, piano and harpsichord ; with orchestra.Selections recorded in 1937.Concertos (Piano)Concertos (Harpsichord)Landowska, WandaHaydn, Joseph,1732-1809Concertos, piano, no. 26, K. 537, D major, "Coronation"Concertos, harpsichord, H. XVIII, 11, D majorhttp://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereBR3SYS1a342451Sirsi_Auto342451'), +(:bib_tag,'01231njm a2200313 a 450003-000699920030124135204.0s 970701q1960 nyu 00 eng u1686Walton, William,1902-1983Concerto for viola and orchestraNew York, NY :Columbia [Records],1960?.1 sound disc :33 1/3 rpm, monoPHONO RECORDWilliam Primrose, viola ; with Sir Malcolm Sargent conducting the Royal Philharmonic Orchestra (1st work) ; William Primrose, viola ; with John Pritchard conducting the Columbia Chamber Orchestra (2nd work).With: Der Schwanendreher : concerto for viola and small orchestra / Hindemith.Concertos (Viola)Hindemith, Paul,1895-1963Primrose, William,1904-1982.Sargent, Malcolm, Sir,1895-1967Pritchard, John,1921-1989Royal Philharmonic OrchestraColumbia Chamber OrchestraConcertos, violaDer Schwanendreherhttp://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereBR3SYS1a342511Sirsi_Auto342511'), +(:bib_tag,'01135njm a2200313 a 450003-000701719991127191358.0s 970701s1960 quc 00 eng u1704Boccherini, Luigi,1743-1805Concerto for cello in B-flatMontréal, Qué. :RCA Victor,1960.1 sound disc :33 1/3 rpm, monoPHONO RECORDAntonio Janigro, violoncello ; Solisti di Zagreb.Program notes on cover by Louis Biancolli.With: Cello concerto in D ; arr. / Vivaldi -- Cello concerto in G ; arr. / Vivaldi-Bach.Concertos (Violoncello)Janigro, AntonioVivaldi, Antonio,1678-1741Bach, Johann Sebastian,1685-1750I Solisti di ZagrebConcertos, violoncello, B flat major ; arr.Concertos, violoncello, G major ; arr.Concertos, violoncello, D major ; arr.http://example.com/Link text herePublic note herehttp://example.com/Link text herePublic note hereBR3SYS1a342529Sirsi_Auto342529') +; diff --git a/Open-ILS/src/sql/test-data/deploy/bibs_fic.sql b/Open-ILS/src/sql/test-data/deploy/bibs_fic.sql new file mode 100644 index 0000000000..c6e50f08e2 --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/bibs_fic.sql @@ -0,0 +1,22 @@ +\set bib_tag '''IMPORT FIC''' + +INSERT INTO marcxml_import (tag, marc) VALUES + +(:bib_tag,'00962cam a22002891 4500CONS20130416184900.0701012s1968 nyu 000 1 eng 690 68021584 //r933(SC LENDS)27848PZ3.S8894FatFICSTOStout, Rex,1886-1975The father hunt;a Nero Wolfe novel.New York,Viking Press[1968]183 p.21 cm.Twenty-two-year-old Amy Denovo needs Nero Wolfe''s help. She is determined to learn the identity of her father, a secret her mother scrupulously guarded — and took to her grave when struck by a hit-and-run driver. Now Wolfe and his sidekick, Archie, have just one clue to go on: a note from Amy''s mother and a box with over 50,000. Seems every month since Amy''s birth, her mother received ,000 from an unknown source and saved it for Amy''s future. It''s easily enough for Amy to afford Wolfe''s services, and he grudgingly agrees. But as the weeks go by, Wolfe realizes this may be one of his most challenging cases ever. Someone doesn''t want Amy''s pedigree discovered, and that someone appears to wield great power. It isn''t long before Wolfe and Archie come to believe that Amy''s mother was murdered — and that Amy could be next.Wolfe, Nero (Fictitious character)Fiction.Goodwin, Archie (Fictitious character)Fiction.Private investigatorsNew York (N.Y.)Fiction.New York (NY.)Fiction.Detective and mystery stories.gsafd[MYS] BCAF[MYS] HHAF03/23/199403/21/20003690690biblio'), +(:bib_tag,'00942cam a2200229Ka 4500687CONS20130416184621.0110401s2011 cau 000 1 eng d9781597802857(SC LENDS)1981659\FIC\JACJacobs, John Hornor.Southern Gods /John Hornor Jacobs.San Francisco, CA :Night Shade Books,2011.270 p. ;22 cm.Recent World War II veteran Bull Ingram is working as muscle when a Memphis DJ hires him to find Ramblin'' John Hastur. The mysterious blues man''s dark, driving music broadcast at ever-shifting frequencies by a phantom radio station is said to make living men insane and dead men rise.Blues musiciansFiction.Blues (Music)Fiction.Cthulhu MythosFiction.Horror FictionFiction.Suspense fiction.gsafd.687687biblio'), +(:bib_tag,'00959cam a2200253Ia 4500680CONS20130416184354.0950227s1995 nyu 000 0 eng d(SC LENDS)1121347Steinbeck, John,1902-1968.The winter of our discontent /John Steinbeck.New York :Book-of-the-Month Club,1961.311 p. ;22 cm.In awarding John Steinbeck the 1962 Nobel Prize in Literature, the Nobel committee stated that with The Winter of Our Discontent, he had "resumed his position as an independent expounder of the truth, with an unbiased instinct for what is genuinely American. Ethan Allen Hawley, the novel''s protagonist, works as a clerk in a grocery store that his prominent family once owned. Without status in the town, his wife is restless, and his teenage children are hungry for the tantalizing material comforts he cannot provide. Then one day, in a moment of moral crisis, Ethan decides to take a holiday from his own scrupulous standards. In The Winter of Our Discontent, John Steinbeck, perhaps the master writer of the American working class, explores the cultural malaise of the 1960s and its far-ranging implications: social, familial, and personal.New York (N.Y.)Fiction.EthicsFiction.Conduct of lifeFiction.American CultureFiction.F Steinbeck, JohnASISBAFI$25.0024781726X0SAL2 4680680biblio'), +(:bib_tag,'01055nam a2200337 a 4500679CONS20130416183812.0000811s2001 cau b 001 0 eng 00107749 9780764586767 (pbk. : alk. paper)(SC LENDS)1450806PS3537.T3234O475 2001813/.5221813.52Van KirkVan Kirk, Susan,1946-CliffsNotes Steinbeck''s Of mice and men /by Susan Van Kirk.Steinbeck''s Of mice and menOf mice and menFoster City, CA :IDG Books Worldwide,c2001.iv, 74 p. ;22 cm.Includes bibliographical references (p. [67]-69) and index.The original CliffsNotes study guides offer expert commentary on major themes, plots, characters, literary devices, and historical background. The latest generation of titles in the series also feature glossaries and visual elements that complement the classic, familiar format.Steinbeck, John,1902-1968.679679biblio'), +(:bib_tag,'03103cgm a2200601Ia 4500678CONS20130416184001.0111220s2012 cau120 vleng dvd cvaizq04339639491939491Columbia TriStar Home Entertainment(SC LENDS)1987537TEFMTTEFMTTEFMR0TEFengengspaengnwpr---PN1997.2.R86 2012791.43/7223DVDRUMThe rum diary[videorecording] /Film District and GK Films/Infinitum Nihil/Film Engine production ; produced by Johnny Depp, Christi Dembrowski ; screenplay by Bruce Robinson ; directed by Bruce Robinson.Culver City, CA :Sony Pictures Home Entertainment,c2011.1 videodisc (120 min.) :sd., col. ;4 3/4 in.DVD ; anamorphic widescreen (1.85:1) presentation ; Dolby digital 5.1 surround.In English, with optional subtitles in English or Spanish.Closed-captioned.Johnny Depp, Giovanni Ribisi, Aaron Eckhart, Amber Heard, Michael Rispoli, Richard Jenkins.Music, Christopher Young ; editor, Carol Littleton ; director of photography, Dariusz Wolski.Based on the novel by Hunter S. Thompson.DVD release of the 2011 motion picture.MPAA rating: R; for language, brief drug use and sexuality.Tired of the noise and madness of New York, journalist Paul Kemp moves to Puerto Rico to write for a local newspaper. Adopting the rum-soaked life of the island, Kemp becomes obsessed with the fiancee of Sanderson, a businessman involved in shady property development deals. When he is recruited by Sanderson to write favorably about his latest unsavory scheme, Kemp is presented with the choice to use his words for the corrupt businessman''s financial benefit, or use them to take him down.Video recordings.DVD-Video discs.JournalistsPuerto RicoDrama.Comedy films.lcgftDepp, Johnny.Eckhart, Aaron.Thompson, Hunter S.Rum Diary.Sony Pictures Home Entertainment (Firm)678678biblio'), +(:bib_tag,'01819nam a22005178a 4500692CONS20130416183107.0070119s2009 nyua j 000 1 eng 20061004412329777139780060838089 (trade bdg.)0060838086 (trade bdg.)9780060838096 (lib. bdg.)0060838094 (lib. bdg.)AU@000041229075NZ111217654IG#9780060838089(SC LENDS)1473635[E]22FICGAIGaiman, Neil.Blueberry girl /written by Neil Gaiman ; illustrated by Charles Vess.1st ed.New York :HarperCollinsPublishers,2009.1 v. (unpaged) :col. ill. ;13 cm.A poem written by Neil Gaiman on the occasion of his friend Tori Amos having a daughter. The poem takes the form of well wishes and advice on how to live life fully. Illustrated by Gaiman''s collaborator on the popular Stardust comics Charles Vess.GirlsFiction.Stories in rhyme.Picture books.Vess, Charles,ill.692692biblio'), +(:bib_tag,'01347nim a2200397Ia 4500681CONS20130416182817.0sd fungnnmmned060831s2006 nyunnn f eng d006115392397800611539219780061153921UACD 5520(5)Harper Audio(SC LENDS)1448052GECGECGECBAKERSCFAhq lc tv FICGAIBCDGaimanGaiman, Neil.Stardust[sound recording] /Neil Gaiman.Unabridged.[New York] :Harper Audio,p2006..5 sound discs (6 hr.) :digital ;4 3/4 in.Compact disc.Read by the author.The story of young Tristran Thorn and his adventures in the land of Faerie. He has fallen in love with beautiful Victoria Forester and in order to win her hand, he must retrieve a fallen star and deliver it to her. Young adult.Young menFiction.EnglandFiction.Fantasy fiction.gsafdAdventure stories.gsafdLove stories.gsafdAudiobooks.681681biblio'), +(:bib_tag,'01351pam a2200301 a 4500682CONS20130416182356.0030320t20032002meua jd 000 1 eng 20030478419780786255429 (lg print : hc)0786255420(SC LENDS)140801FICGAIGaiman, Neil.Coraline [Large Print] /Neil Gaiman ; with illustrations by Dave McKean.Large print ed.Waterville, ME :Thorndike Press,2003.184 p. (large print) :ill. ;22 cm.Thorndike Press large print young adult seriesOriginally published: New York : HarperCollins, 2002.Looking for excitement, Coraline ventures through a mysterious door into a world that is similar, yet disturbingly different from her own, where she must challenge a gruesome entity in order to save herself, her parents, and the souls of three others.Supernatural Juvenile fiction.Large type books Juvenile fiction.Horror stories Juvenile fiction.McKean, Dave,ill.2682682biblio'), +(:bib_tag,'02035cam a2200373Ia 4500689CONS20130416182209.09780321706287 0321706285 (sc)(SC LENDS)1991139BCL-BEAYCL-RHQA76.73.C15H55 2011QA76.73.O115H55 2011005.11722005.117Hillegass, Aaron.Objective-C programming :the Big Nerd Ranch guide /Aaron Hillegass.Objective-C programmingAtlanta, GA :Big Nerd Ranch,c2011.ix, 272 p. :ill. ;23 cm.Big Nerd Ranch guidesIncludes index.I. Getting started. You and this book -- Your first program -- II. How programming works. Variables and types -- if/else -- Functions -- Numbers -- Loops -- Addresses and pointers -- Pass by reference -- Structs -- The heap -- III. Objective-C and foundations. Objects -- more messages -- NSString -- NSArray -- Developer documentation -- Your first class -- Inheritance -- Object instance variables -- Preventing memory leaks -- Collection classes -- Constants -- Writing files with NSString and NSData -- Callbacks -- Protocols -- Property lists -- IV. Event-driven applications. Your first iOS application -- Your first Cocoa application -- V. Advanced Objective-C. init -- Properties -- Categories -- Blocks -- VI. Advanced C. C strings -- C arrays -- Command-line arguments -- Switch statements.Objective-C (Computer program language)Object-oriented programming.689689biblio'), +(:bib_tag,'01300cam a2200421 a 4500688CONS20130416181822.0080115s2008 wau e 000 f eng9781616648107 (hbk.)1616648104 (hbk.)(SC LENDS)1527082813/.5222FIC KLISF KlineSCFKline, Otis Adelbert.The swordsman of Mars /by Otis Adelbert Kline ; introduction by Michael Moorcock ; cover by Daren Bader.Bellevue, Wash. :Paizo Publishing,2008.229 p. ;22 cm.Planet stories library ;bk. 12PLANET STORIES is an imprint of Paizo Publishing, Bellevue, Washington.In Swordsman of Mars, Harry Thorne, outcast scion of a wealthy East Coast family, seeks the greatest adventure of his life. He exchanges bodies with his look-alike, Martian Sheb Takkor, and is transported millions of years into the past to a Mars peopled with mighty warriors, beautiful women, and fearsome beasts. Sheb Takkor, a great swordsman in his own right, must fight his way across the deserts and jungles of ancient Mars to save the lovely Princess Thane and to defeat his arch-enemy Sel Han - or die trying! Edgar Rice Burroughs was the first great writer of planetary adventures. His one true rival and equal at writing planet stories was Otis Adelbert Kline. Kline was on the original editorial staff of Weird Tales, and was literary agent to Robert E. Howard of Conan fame.Rebels on the red planet! Considered by many to be the only true equal of Edgar Rice Burroughs, Otis Adelbert Kline was a master of the sword and planet genre. From his position on the original editorial staff of Weird Tales and as the literary agent for Conan creator Robert E. Howard, Kline helped shape the face of science fiction as we know it. Now, in its first complete edition since 1933, Kline brings us the story of Harry Thorne, outcast scion of a wealthy East Coast family, who agrees to swap bodies with a Martian noble, thrusting him into a fierce and vibrant world of strange beasts and stranger people, where a man''s future is determined by the strength of his sword arm. Tasked with tracking down and neutralizing another Earthman before he establishes a corrupt empire, and trapped between the love of two beautiful and dangerous women, will Harry Thorne wind up a slave in the dolorous baridium mines, or will he step forward and claim his destiny as a swordsman of Mars?Life on other planets.Mars (Planet)Fiction.Science fiction.Moorcock, Michael,introd.Bader, Daren,ill.688688biblio'), +(:bib_tag,'02356cim a2200553La 4500686CONS20130416181618.0m h cz nza||||||||sz zunznnnznzu110906r20112011ohunnnn q f n eng d9781449846541144984654856987Recorded Books(SC LENDS)1979076RECBXRECBXWV1n-us-ilZJIBPS3602.U85G48 2011f813/.622PLAYAWAY - BUTButcher, Jim,1971-Ghost story[electronic resource] /Jim Butcher.Unabridged.[Solon, Ohio] :Playaway Digital Audio ;Prince Frederick, MD :[Distributed exclusively by] Recorded Books, LLC :[Manufactured by] Findaway World, LLC,[2011], p2011.1 sound media player (18 hr.) :digital, HD audio ;3 3/8 x 2 1/8 in.A novel of the Dresden filesTitle from container."HDAUDIO."Narrated by John Glover.Release date supplied by publisher.Recording originally produced by Penguin Audio, p2011, and released by Recorded Books, LLC.Issued on Playaway, a dedicated media audio player.One set of earphones and one AAA battery required for playback.Wizard detective Harry Dresden is in a tough spot--he''s dead. Murdered by an unknown assassin, Harry is no less determined to help his imperiled friends. The problem is he must do it without any assistance from magic. And complicating matters further, several dark spirits are roaming Chicago, looking for revenge against their powerless adversary.Dresden, Harry (Fictitious character)Fiction.WizardsFiction.Chicago (Ill.)Fiction.Occult fiction.gsafdFantasy fiction.gsafdUrban fantasy.gsafdAudiobooks.lcgftGlover, John,1944-nrtRecorded Books, LLC.Penguin Audio (Firm)Playaway Digital Audio.Butcher, Jim,1971-Dresden files (Audio)686686biblio'), +(:bib_tag,'01490cgm a2200229Ka 4500685CONS20130416181241.0vd cvaizq070101s2010 cau090 vleng d07806668528839291595292000043788Warner Brothers(SCLENDS)1970730DVD FIC AVEThe Avengers[videorecording] /Warners Bros. Pictures ; directed by Jeremiah Chechik.WidescreenBurbank, CA :Warner Brothers,2010.1 videodisc (90 min.) :sd., col. ;4 3/4 in.Originally released as a motion picture in 1998.Ralph Fiennes, Uma Thurman, Sean Connery, Jim Broadbent.Rated PG-13DVD, Dolby digital.Closed-captioned for the hearing impaired.English, French.Feature films.Video recordings for the hearing impaired.Video recordings.DVD-Video discs.Steed, John (Fictitious character)Fiction.Peel, Emma (Fictitious character)Fiction.Chechik, Jeremiah.Fiennes, Ralph.Thurman, Uma.Connery, Sean.685685biblio'), +(:bib_tag,'00895cam a2200289Ia 4500691CONS20130416180823.0120125s2012 nyu 000 1 eng 7277031919780756407117 (hc.)0756407117 (hc.)(SC LENDS)1986488FIC - SALAhmed, Saladin.Throne of the Crescent Moon /Saladin Ahmed.New York :DAW Books,c2012.274 p. ;23 cm.The Crescent Moon Kingdoms ;bk. 1From Saladin Ahmed, finalist for the Nebula and Campbell Awards, comes one of the year''s most anticipated fantasy debuts, THRONE OF THE CRESCENT MOON, a fantasy adventure with all the magic of The Arabian Nights.The Crescent Moon Kingdoms, land of djenn and ghuls, holy warriors and heretics, Khalifs and killers, is at the boiling point of a power struggle between the iron-fisted Khalif and the mysterious master thief known as the Falcon Prince. In the midst of this brewing rebellion a series of brutal supernatural murders strikes at the heart of the Kingdoms. It is up to a handful of heroes to learn the truth behind these killings:Doctor Adoulla Makhslood, "The last real ghul hunter in the great city of Dhamsawaat," just wants a quiet cup of tea. Three score and more years old, he has grown weary of hunting monsters and saving lives, and is more than ready to retire from his dangerous and demanding vocation. But when an old flame''s family is murdered, Adoulla is drawn back to the hunter''s path.Raseed bas Raseed, Adoulla''s young assistant, a hidebound holy warrior whose prowess is matched only by his piety, is eager to deliver God''s justice. But even as Raseed''s sword is tested by ghuls and manjackals, his soul is tested when he and Adoulla cross paths with the tribeswoman Zamia.Zamia Badawi, Protector of the Band, has been gifted with the near-mythical power of the Lion-Shape, but shunned by her people for daring to take up a man''s title. She lives only to avenge her father''s death. Until she learns that Adoulla and his allies also hunt her father''s killer. Until she meets Raseed.When they learn that the murders and the Falcon Prince''s brewing revolution are connected, the companions must race against time--and struggle against their own misgivings--to save the life of a vicious despot. In so doing they discover a plot for the Throne of the Crescent Moon that threatens to turn Dhamsawaat, and the world itself, into a blood-soaked ruin. - Amazon.com.Have you ever read a book and wanted it to be better than it was? No, not just in a “I’m spending my precious time on this” way but for external reasons as well? I’ve spent six months reading The Throne of the Crescent Moon. It is true I don’t get a lot of time to read but I also found this book easy to put down and interrupt with … well, most things. Now, I must admit my bias. I have a deep affection for mythic Arabian settings so this book appealed to me. I was also glad to have a book that wasn’t marketed as part of a trilogy or longer series. Additionally, this book was on several best of the year lists for 2012 so my hopes were high. Icarus found out what happens when things fly too high.The failings of Throne of the Crescent Moon are damning and easily enumerated. One, the characters are flat - they do not grow or change or surprise you. The dervish''s growth is a farce - you know what will happen to him in vague strokes within the first few pages of the book and by the time the bedouin girl is introduced you can guess the exact ending (and you will be right). Two, the plot is thin; the twists have nothing to surprise you much less go “wow I would have never thought of that.” And it’s third sin is that it isn''t a world, The Throne of the Crescent Moon is really a great Dungeons and Dragons campaign setting and if the author hasn’t played plenty of D&D in his life I would be shocked. I won’t list the details here but players of D&D will recognize the subtle conventions he obeys and the structures he fits things into. That is not a sin in and of itself - The Gentleman Bastard books show how you can take a gaming campaign and tell compelling stories in it. But, when you supply that kind of structure you are telling stories as you do in a game and the writer takes the place of the Dungeon Master. It’s a dangerous gamble because not only does the writer get to stack the deck but there aren’t really any players to make choices. To make the story that comes out of it compelling the writer has to be gifted enough to create that illusion. And that is where this failed. The characters are likeable to but too flat with no surprises and as a reader you never feel so invested that you cheer for them or feel as if their failures harm you. The structure is that of a classic adventure and that’s not a great thing for a novel. The threat is massive but fits into too small a story’s space. The book is too small. The book I was thrilled to see as a stand alone novel was resolved in half the space it should have been. It felt like we jumped from the prelude with the foot soldiers straight to killing the big bad without any twists in the plot. The challenges along the way are ... not significant. I bought into the grandeur of the kingdom and that made the adventure too small. The resolution feels like a deus ex machina. Perhaps the frustration is that the writer does know his craft. His sense of language is good and engaging. There are elements of the world’s construction that are forced and others that draw you in. The characters are too flat (is that the third time I’ve mentioned that?) but likeable and while not unique are not cliches either. There was enough good here that I want to read more in this world and I want to read more from this writer. There was enough good that I want to see him grow and be there to read his work as it improves. Did this debut novel blow me away? No, but it was a throw away enjoyable read in the end if disappointing because there at times hints of it’s greater potential. Heck, it was better than Steinbeck’s first book, Cup of Gold! Finally, there is something compelling about a writer with the cojones to just throw out there “here is my pseudo Muslim world of good versus evil and the good guys are good because they are the faithful of God.” Maybe that’s what I find hard to define but I like so far about the author’s attitude: he has audacity and a voice and sometimes those are the hardest things for an author to have. - http://www.goodreads.com/review/show/511797866Fantasy fiction.Adventure stories.Arabian Nights fiction.Fantasy fiction.Adventure stories.Ahmed, Saladin.Crescent Moon Kingdoms ;bk. 1.=852 4\gaaagplYCL-RHYCL-RHAdult FictionFIC 691691biblio'), +(:bib_tag,'01540nam a22003254a 4500684CONS20130416180316.0090420s2008 caua e 00 c eng d9781582406725 (pbk.)1582406723 (pbk.)(SC LENDS)1948733741.597322FIC - KIRGN - WALKING Kirkman, Robert.The walking dead.[Vol. 1]Days gone bye /Robert Kirkman, creator, writer, letterer ; Tony Moore, penciler, inker, gray tones ; Cliff Rathburn, additional gray tones].Days gone bye.Title on half title page:Image Comics presents the Walking dead.Orange, Calif. :Image Comics,c2008.1 v. (unpaged) :ill. ;26 cm.Police officer Rick Grimes is shot on the job and wakes up a month later to find that the world that he knows is gone. Zombies have taken over and are killing and eating those who are still alive. He sets out toward Atlanta in the hope that his family is still alive and endures may horrors along the way."Title, author and illustrators from cover."Originally published in single magazine format as the Walking dead, #1 - #6."...T.P. verso.ZombiesComic books, strips, etc.CannibalismComic books, strips, etc.Survival HorrorComic books, strips, etc.Post ApocalypticComic books, strips, etc.Horror comic books, strips, etc.gsafd.Comic books, strips, etc.gsafdGraphic novels.Moore, Tony.Rathburn, Cliff.Image Comics.684684biblio'), +(:bib_tag,'02002cam a2200481 a 4500693CONS20130416180042.0100402s2010 nyu 000 f eng20100138939780345497499 (hardcover : alk. paper)034549749X (hardcover : alk. paper)(SC LENDS)1520630e-uk-enPR6063.I265K73 2010823/.91422FIC - MiéMiéville, China.Kraken :an anatomy /China Miéville.1st ed.New York :Del Rey/Ballantine Books,c2010.1006509 p. ;25 cm.Being chased by cults, a maniac, and the sorcerers of the Fundamentalist and Sect-Related Crime Unit, cephalopod specialist Billy Harrow inadvertently learns that he holds the key to finding a missing squid that went missing against all logic.Museum curatorsEnglandFiction.Giant squidsFiction.MagicFiction.CephalapodsFiction.CultsFiction.Weird Fiction, English.Comedy, English.Fantasy fiction.693693biblio'), +(:bib_tag,'01872cjm a2200385 a 4500676CONS20130416175533.0940516s1994 nyumpn eng dsd zunznnmmneu9577384207567825192482519-2Atlantic(SC LENDS)1946843792.6 CROThe crow[sound recording] :original motion picture soundtrack.Music CDNew York :Atlantic Recording Corp.,p1994.1 sound disc :digital ;4 3/4 in.Various artists.Burn (the Cure) (6:39) -- Golgotha tenement blues (Machines of Loving Grace) (3:58) -- Big empty (Stone Temple Pilots) (4:55) -- Dead souls (Nine Inch Nails) (4:52) -- Darkness (Rage Against the Machine) (3:41) -- Color me once (Violent Femmes) (4:10) -- Ghostrider (Rollins Band) (5:44) -- Milktoast (Helmet) (3:59) -- The badge (Pantera) (3:53) -- Slip slide melting (For Love not Lisa) (5:45) -- After the flesh (My Life with the Thrill Kill Kult) (2:58) -- Snakedriver (the Jesus and Mary Chain) (3:39) -- Time baby III (Medicine) (3:50) -- It can''t rain all the time (Jane Siberry) (5:34).Motion picture music.Industrial music1991-2000.Grunge music1991-2000.Crow (Motion picture)676676biblio'), +(:bib_tag,'00456cam a2200181 a 4500675CONS20130416175204.0000515s1982 nyua 000 1 eng d0451115082(SCLENDS)656898FIC BACFIC/BACBachman, Richard.The running man /Richard Bachman.New York :Signet Book,c1982.219 p.Stephen King (writing as Richard Bachman) crafted The Running Man early in his career, though after such mega-hits as Carrie and The Shining. A bit of a departure from the supernatural horror that is most frequently associated with his work, the novel describes a science fiction dystopia where market capitalism and television game shows have spiraled out of control, and the separation between the haves and the have-nots has been formalized with separate currencies. King establishes characters quickly, creating sympathy in the first few pages for Ben Richards--whose 18-month-old baby girl is suffering from a horrible cough, perhaps pneumonia. Not able to afford medicine, Richards enters himself in the last-chance money-making scheme of the Free-Vee games. The games include Treadmill to Bucks, in which heart-attack prone contestants struggle to outlast a progressively demanding treadmill, or the accurately named Swim the Crocodiles. After a rigorous battery of physical and mental examinations, Richards is assigned "Elevator Six"--the path of a chosen few--that leads to The Running Man game. In this game, the stakes and the prizes are raised. Success means a life of luxury. Failure means death. Unfortunately, few ever win the game; in fact, as the producer tells Richards, in six years no one has survived.Horror tales, American.Adventure stories.Horror stories.King, Stephen.675675biblio') +; diff --git a/Open-ILS/src/sql/test-data/deploy/bibs_fre.sql b/Open-ILS/src/sql/test-data/deploy/bibs_fre.sql new file mode 100644 index 0000000000..2129b17187 --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/bibs_fre.sql @@ -0,0 +1,105 @@ +\set bib_tag '''IMPORT FRE''' + +INSERT INTO marcxml_import (tag, marc) VALUES + +(:bib_tag,'00582nam a2200217 a 450001-011879519970801114342.0970701s1919 quc u000 0 fre 20004418(Sirsi) a100065(Sirsi) 01-0118795UtOrBLWPS''9455''H68''S8Chouinard, Ernest,1856-1924.Sur mer et sur terreQuébec, Qué. :Le Soleil,1919.250 p.1PS 9455 H68 S8LC30007004052170YBOOKSDESM-CIRDESMARAISFR9110KS'), +(:bib_tag,'00551nam a2200181 a 450001-011894819970801114446.0970701s1904 fr u000 0 fre u(Sirsi) a100099PS''9455''H365''A86Chapman, W.(William),1850-1917.Les aspirations :poésies canadiennes /W. Chapman.Paris :Librairies-Imprimeries réunies,1904.353 p.FR9307pmPS 9455 H365 A86LC30007004049820YBOOKSDESM-CIRDESMARAIS1'), +(:bib_tag,'00720nam a2200253 a 450001-011913819970801114852.0970701s1908 fr u000 0 fre 08037650(Sirsi) a100212(Sirsi) 01-0119138UtOrBLWFC''51''L65''1908Loir, Adrien,1862-Canada et Canadiens /Adrien Loir.Paris :Guilmoto,1908.371 p 08037650 t_oclc1CanadaDescriptions et voyages1901-1950.CanadaCivilisation1867-1914.FC 51 L65 1908LC30007001319044YBOOKSDESM-CIRDESMARAIS9495f9410'), +(:bib_tag,'00709nam a2200229 a 450001-012050919990409113248.0970701s1869 be u000 0 fre 11022046(Sirsi) a101160(Sirsi) 01-0120509UtOrBLWPQ''1956''H8Huot, Paul,1816-Beaumarchais en Allemagne :révélations tirées des archives d''Autriche /par Paul HuotBruxelles :Lacroix, Verboeckhoven,1869.218 p.1Beaumarchais, Pierre Augustin Caron de,1732-1799.PQ 1956 H8LC30007004050398YBOOKSDESM-CIRDESMARAISFR9111JL'), +(:bib_tag,'00699nam a2200217 a 450001-001158619970729215752.0970701q1890 fr u000 0 fre u(Sirsi) a10176(Sirsi) 01-0011586UtOrBLWPQ263.F3 1890Faguet, Émile,1847-1916.Dix-huitième siècle :études littéraires /Émile Faguet.Paris :Boivin,1890?.xxxii, 555 p.Nouvelle bibliothèque littéraireBibliogr.1Littérature française18e siècleHistoire et critique.PQ263F3 1890LC30007001934487YBOOKSDESM-CIRDESMARAIS'), +(:bib_tag,'00594nam a2200205 a 450001-012168019970801131130.0970701s1908 quc u000 0 fre u(Sirsi) a102083(Sirsi) 01-0121680UtOrBLWPS''9476''O88''V47Mousseau, Joseph Alfred.Les vermoulures :roman d''actualité /par J. M. Afred MousseauMontréal, Qué. :[s.n.],1908.93 p.1PS 9476 O88 V47LC30007004327143YBOOKSDESM-CIRDESMARAISfr9207lys'), +(:bib_tag,'00659nam a2200217 a 450001-012168119970801131132.0970701s1912 quc u000 0 fre u(Sirsi) a102084(Sirsi) 01-0121681UtOrBLWPS''9503''E755''A8Bernier, Hector,1886-1947.Au large de l''écueil :roman canadien /Hector Bernier.Québec, Qué. :Imprimerie de L''Événement,1912.319 p.La page 133 est numérotée 331.1PS 9503 E755 A8LC30007004327127YBOOKSDESM-CIRDESMARAISFR9110RB'), +(:bib_tag,'00716nam a2200241 a 450001-012173619970801131332.0970701s1918 fr u000 0 fre 19007661(Sirsi) a102136(Sirsi) 01-0121736UtOrBLWBR''370''A8Autin, Albert,1883-L''échec de la réforme en France au XV1ieme siècle :contribution à l''histoire du sentiment religieux /Albert AutinParis :Colin,1918.vii, 286 p.Bibliogr.1RéformeFrance.BR 370 A8LC30007004327655YBOOKSDESM-CIRDESMARAIScwfr9502'), +(:bib_tag,'01012nam a2200253 a 450020080411154656.0970701m18811883quc u000 0 fre u(Sirsi) a102890(Sirsi) 01-0122617UtOrBLWD''919''A87Routhier, A. B.(Adolphe Basile),1839-1920.A travers l''Europe :impressions et paysages /par A. B. Routhier.Québec, Qué :Delisle,1881-1883.2 v.1EuropeDescriptions et voyages1801-1918.91-12 A11ALPHANUM30007004342878YBOOK_RAREDESM-RAREDESMARAIS.NOTE. A1RAREBOOKS91-15 A12ALPHANUM30007004342993YBOOK_RAREDESM-RAREDESMARAIS.NOTE. A1RAREBOOKSD 919 A872LC30007006096670YBOOKSDESM-CIRDESMARAISRAREBOOKSD 919 A871LC30007006096688YBOOKSDESM-CIRDESMARAISRAREBOOKSRare books/Livres rares7R9410'), +(:bib_tag,'01184nam a2200325 a 450001-012312120001009103242.0970701m1900uuuufr u000 0 fre 822193452222030501(Sirsi) a103297(Sirsi) i2222030501UtOrBLWK''830''R44''1982Reinecker, Heinrich.L''influence de la dépréciation monétaire sur les droits des obligations /par Heinrich Reinecker.Paris :Éditions du Centre national de la recherche scientifique,1900-v.Collection des travaux de l''Institut de recherches juridiques comparativesBibliogr.v. 2. République fédérale d''Allemagne.1Obligations (Droit)Dommages-intérêts.Indexation (Économie politique)Droit.Reinecker, Heinrich A.K 830 R44 19822LC3000700135149214.15YBOOKSDESM-CIRINPROCESSDESMARAISECONOMICSEconomics (Social sciences)/Sciences économiques (Sciences sociales) 2-219293f9208'), +(:bib_tag,'00550nam a2200169 a 450001-000128219970729172230.0970701s1919 fr a u000 0 fre u(Sirsi) a1034PS''9525''A754''R4Marie-Victorin, frère, É.C.,1885-1944.Récits laurentiens /Fr. Marie-Victorin, des E. C. ; préface d''Albert FerlandParis :Casterman,1919.212 p. :ill.er9205 mbPS 9525 A754 R4LC30007004393160YBOOKSDESM-CIRDESMARAIS1'), +(:bib_tag,'00602nam a2200217 a 450001-012345819970801142104.0970701s1913 quca u000 0 fre u(Sirsi) a103605(Sirsi) 01-0123458UtOrBLWPS''9453''L8''M3''1913Bluther, Floris.Marie-Anna :la canadienne /Floris Bluther2. éd.Québec, Qué. :[s.n.],1913.302 p. :ill.1PS 9453 L8 M3 1913LC30007000280783YBOOKSDESM-CIRDESMARAISFR9209dq'), +(:bib_tag,'00705nam a2200217 a 450001-012345919970801142106.0970701s1901 quca u000 0 fre u(Sirsi) a103606(Sirsi) 01-0123459UtOrBLWPS''9455''A68''V54Caouette, Jean Baptiste,1854-1922.Le vieux muet :ou, Un héros de Chateauguay /par J. B. Caouette ; avec une préface de m. l''abbé P. E. RoyQuébec, Qué. :Le Soleil,1901.viii, 412 p. :ill.1Héros de ChateauguayPS 9455 A68 V54LC30007000279306YBOOKSDESM-CIRDESMARAISfr9206vs'), +(:bib_tag,'00591nam a2200205 a 450001-012346019970801142106.0970701s1903 quc u000 0 fre u(Sirsi) a103607PS''9453''O8''R6Bouchette, Errol,1863-1912.Robert Lozé /Errol Bouchette.Montréal, Qué. :Pigeon,1903.170 p.Collection franco-ontarienne76642988 utlasfr9205mcsPS 9453 O8 R6LC30007000277979YBOOKSDESM-CIRDESMARAISFRANCOONT1'), +(:bib_tag,'00857nam a2200253 a 450001-001186319970729220538.0970701s1899 onca u000 0 fre u(Sirsi) a10413(Sirsi) 01-0011863NUCENGUtOrBLWBX''4705''D84''F4Fêtes jubilaires célébrées à Ottawa les 25 et 26 octobre 1899.Ottawa, Ont. :Boudreault,1899.vi, 156 p. :ill.Titre de la couverture: Fêtes jubilaires de Monseigneur J. C. Duhamel.1Duhamel, Joseph-Thomas,1841-1909.Ottawa (Diocèse)Ottawa (Ont.)Histoire religieuse.BX 4705 D84 F4LC30007001316289YBOOKSDESM-CIRDESMARAISFRANCOONTCollection franco-ontarienne9495f9412'), +(:bib_tag,'00974nam a2200253 a 450001-012465019970801150524.0970701s1910 fr a u000 0 fre 31024739(Sirsi) a104689(Sirsi) 01-0124650UtOrBLWHB''103''A2''C3Cannan, Edwin,1861-1935.Histoire des théories de la production et de la distribution dans l''économie politique anglaise de 1776-1848 /par Edwin Cannan ; traduction sur la 2e éd. anglaise par H. E. Barrault et Maurice Alfassa ; avec une introduction par H. E. Barrault.Paris :Giard et Brière,1910.xxxvii, 577 p. :ill.Bibliothèque internationale d''économie politiqueBibliogr.1Économie politiqueGrande-BretagneHistoire.HB 103 A2 C3LC30007004340526YBOOKSDESM-CIRDESMARAISFR9112RB'), +(:bib_tag,'00693nam a2200229 a 450001-001194919970729220750.0970701s1886 fr u000 0 fre 03009951(Sirsi) a10477(Sirsi) 01-0011949NUCFREUtOrBLWFC51.C43 1886Champion, Paul,1853-Le Canada /par Paul Champion.Paris :Société Bibliographique,1886.176 p.Voyages et découvertes géographiques1Canada.FC51C43 1886LC30007001929982YBOOKSDESM-CIRDESMARAISFRANCOONTCollection franco-ontarienne'), +(:bib_tag,'00717nam a2200229 a 450001-012485019970801151242.0970701s1894 fr u000 0 fre u(Sirsi) a104821(Sirsi) 01-0124850UtOrBLWHB''105''P8''S3''1894Sainte-Beuve, Charles Augustin,1804-1869.P.-J. Proughon :sa vie et sa correspondance, 1838-1848 /par C.-A. Sainte-Beuve6. éd.Paris :Calmann-Lévy,1894.352 p.1Proudhon, P.-J.,(Pierre Joseph),1809-1865.HB 105 P8 S3 1894LC30007004340633YBOOKSDESM-CIRDESMARAISFR9112RB'), +(:bib_tag,'00618nam a2200205 a 450001-012628319970801160252.0970701s1922 quc u000 0 fre u(Sirsi) a105963(Sirsi) 01-0126283UtOrBLWPS''9513''A35''D64Gagnier, Hervé.Dollard :pièce en trois actes et cinq tableaux /par Hervé GagnierMontréal, Qué. :Imprimerie des Éditeurs Limitée,1922.79 p.1PS 9513 A35 D64LC30007002437522YBOOKSDESM-CIRDESMARAIScwfr9407'), +(:bib_tag,'00727nam a2200241 a 450001-012653419970801161308.0970701s1920 fr a u000 0 fre u(Sirsi) a106206(Sirsi) 01-0126534UtOrBLWPQ''287''M75''1920Mornet, Daniel,1878-1954.Le romantisme en France au XVIIIe siècle /Daniel MornetParis :Hachette,1920.286 p. :ill.Bibliogr.1RomantismeFrance.Littérature française18e siècleHistoire et critique.PQ 287 M75 1920LC30007000004456YBOOKSDESM-CIRDESMARAISfr9204vs'), +(:bib_tag,'00735nam a2200241 a 450001-012668119970801161942.0970701s1912 fr u000 0 fre 00002253(Sirsi) a106351(Sirsi) 01-0126681UtOrBLWPQ''281''P3''1912Pellissier, Georges Jacques Maurice,1852-1918.Le mouvement littéraire aux XIXe siècle /par George Pellissier9. ed.Paris :Hachette,1912.382 p.1Littérature française19e siècleHistoire et critique.PQ 281 P3 1912LC30007000100221YBOOKSDESM-CIRDESMARAISfr9205mb'), +(:bib_tag,'00659nam a2200229 a 450001-012696319970801162916.0970701s1891 fr u000 0 fre u(Sirsi) a106623(Sirsi) 01-0126963UtOrBLWPQ''287''N5Nisard, Désiré,1806-1888.Essais sur l''école romantique /D. NisardParis :Calmann-Lévy,1891.357 p.1Littérature françaiseHistoire et critique.RomantismeFrance.PQ 287 N5LC30007000006220YBOOKSDESM-CIRDESMARAISgrr9311'), +(:bib_tag,'00663nam a2200217 a 450001-012718519970801163710.0970701s1914 quca u000 0 fre u(Sirsi) a106841(Sirsi) 01-0127185UtOrBLWFC''51''F74Frères des écoles chrétiennes.Histoire du Canada /par les Frères des Écoles chrétiennes.Montréal, Qué. :Frères des écoles chrétiennes,1914.634 p. :ill., cartes1CanadaHistoire.FC 51 F74LC30007000107689YBOOKSDESM-CIRDESMARAIS4r9310'), +(:bib_tag,'00591nam a2200217 a 450001-012725420030410130430.0970701s1916 fr u000 0 fre u(Sirsi) a106903(Sirsi) 01-0127254UtOrBLWDD''76''G7Lenotre, Gustave,1857-1935.Prussiens d''hier et de toujours /G. LenotreParis :Perrin,1916.338 p.Petite histoire1Prusse.DD 76 G7LC30007000280155YBOOKSDESM-CIRDESMARAISfr9502'), +(:bib_tag,'00739nam a2200229 a 450001-012746619970801164724.0970701s1908 fr u000 0 fre u(Sirsi) a107096(Sirsi) 01-0127466UtOrBLWPQ''287''L3''1919Lasserre, Pierre,1867-1930.Le romantisme français :essai sur la révolution dans les sentiments et dans les idées au XIX siècle /P. LasserreNouv. éd. augm. d''une préfaceParis :Garnier Frères,1908.xxxv, 547 p.1RomantismeFrance.PQ 287 L3 1919LC30007000006006YBOOKSDESM-CIRDESMARAISgrr9311'), +(:bib_tag,'00593nam a2200205 a 450001-012791519970801170402.0970701s1911 fr u000 0 fre u(Sirsi) a107529(Sirsi) 01-0127915UtOrBLWPQ''2635''O52''A7''1911Romains, Jules,1885-1972.L''armée dans la ville :drame en cinq actes, en vers.Paris :Mercure de France,1911.217 p.1PQ 2635 O52 A7 1911LC30007006282254YBOOKSDESM-CIRDESMARAIS5R9502'), +(:bib_tag,'00749nam a2200229 a 450001-012796519970801170602.0970701s1912 fr a u000 0 fre 13005100(Sirsi) a107579(Sirsi) 01-0127965UtOrBLWE''184''F8''M2Magnan, Denis Michel Aristides,1863-Histoire de la race française aux États-Unis /par D. M. A. Magnan ; ouvrage illustré de 18 gravures hors texte et d''une carte géographique.Paris :Amat,1912.xvi, 356 p. :ill.1FrançaisÉtats-Unis.E 184 F8 M2LC30007000557743YBOOKSDESM-CIRDESMARAISFR9204MBP'), +(:bib_tag,'01216nam a2200241 a 450001-012796619970801170602.0970701s1911 maua u000 0 fre 12011704(Sirsi) a107580(Sirsi) 01-0127966UtOrBLWE''184''F85''B4Belisle, Alexandre,1856.Histoire de la presse franco-américaine :comprenant l''historique de l''émigration des canadiens-français aux États-Unis, leur développement, et leurs progrès : cet ouvrage contient aussi un historique des journaux publiés depuis 1838 jusqu''à nos jours, les biographies des journalistes, défunts et vivants, et un supplément sur les journaux publiés par des Français à New-York, en Louisiane et ailleurs /par Alexandre Belisle ; avec une préface par J.-G. Le Boutillier.Worcester, MA :Ateliers typographiques de "L''Opinion publique",1911.456 p. :ill.1PresseÉtats-Unis.Périodiques canadiens-françaisÉtats-Unis.Canadiens françaisÉtats-Unis.E 184 F85 B4LC30007000557842YBOOKSDESM-CIRDESMARAISfr9204'), +(:bib_tag,'00883nam a2200289 a 450001-012804619991126083704.0970701s1914 fr u000 0 fre 36014479(Sirsi) a107647(Sirsi) 01-0128046UtOrBLWCT''144''F38Faure, Élie,1873-1937....Les constructeurs...Paris :Crès,1914.xxviii, 267 p.Collection "Les proses"1Cézanne, Paul,1839-1906.Lamarck, Jean Baptiste Pierre Antoine de Monet de,1744-1829.Michelet, Jules,1798-1874.Dostoyevsky, Fyodor,1821-1881.Nietzsche, Friedrich Wilhelm,1844-1900.CT 144 F38LC30007004093315YBOOKSDESM-CIRDESMARAISFR9109msp'), +(:bib_tag,'00706nam a2200217 a 450001-012808419970801171014.0970701s1909 quc u000 0 fre u(Sirsi) a107685(Sirsi) 01-0128084UtOrBLWqucitPS''9485''R869''C45Routhier, A. B.(Adolphe Basile),1839-1920.Le centurion :roman des temps messianiques /A. B. RouthierQuébec, Qué. :Action sociale ;Rome :Société de St-Jean l''Evangéliste, Desclée & Cie,1909.461 p.1PS 9485 R869 C45LC30007000012772YBOOKSDESM-CIRDESMARAIS6r9404'), +(:bib_tag,'00762nam a2200241 a 450001-012823519970801171520.0970701s1901 fr u000 0 fre u(Sirsi) a107829(Sirsi) 01-0128235UtOrBLWPQ''505''B7''1901Brunetière, Ferdinand,1849-1906.Conférences de l''Odéon :les époques du théâtre français, 1636-1850 /par Ferdinand Brunetière.5. éd.Paris :Hachette,1901.404 p.Bibliogr.1Théâtre (Genre littéraire) françaisHistoire et critique.PQ 505 B7 1901LC30007000558378YBOOKSDESM-CIRDESMARAISfr9303mb'), +(:bib_tag,'00751nam a2200253 a 450001-012823719970801171526.0970701s1890 fr u000 0 fre u(Sirsi) a107831(Sirsi) 01-0128237UtOrBLWPQ''541''W5''1890Weiss, Jean Jacques,1827-1891.Le théâtre et les moeurs /par J. J. Weiss6. éd.Paris :Lévy,1890.383 p.Bibliothèque contemporain1ThéâtreFrance.Théâtre (Genre littéraire)19e siècleHistoire et critique.PQ 541 W5 1890LC30007000005719YBOOKSDESM-CIRDESMARAISgrr9311'), +(:bib_tag,'00771nam a2200217 a 450001-012825019970801171548.0970701s1876 fr u000 0 fre 64001490(Sirsi) a107844(Sirsi) 01-0128250UtOrBLWD''127''.M47Méray, Antony.La Vie au temps des cours d''amour :croyances, usages et moeurs intimes des XIe, XIIe & XIIIe siècles d''après les chroniques, gestes, jeux-partis et fabliaux /par Antony MérayParis :Claudin,1876.379 p.1EuropeMœurs et coutumes.91-396 B4LC30007001544740YBOOKSDESM-CIRDESMARAIS.NOTE. B4RAREBOOKSRare books/Livres rares'), +(:bib_tag,'00608nam a2200217 a 450001-012834819970801171934.0970701s1912 fr u000 0 fre u(Sirsi) a107942(Sirsi) 01-0128348UtOrBLWB''2947''R7''1912Roques, P.Hegel :sa vie et ses oeuvres /par P. RoquesParis :Alcan,1912.358 p.1Hegel, Georg Wilhelm Friedrich,1770-1831.B 2947 R7 1912LC30007004332341YBOOKSDESM-CIRDESMARAISfr9205mb'), +(:bib_tag,'00586nam a2200205 a 450001-012839119970801172102.0970701s1918 quc u000 0 fre u(Sirsi) a107984(Sirsi) 01-0128391UtOrBLWPS''9535''I93''C4Rivard, Adjutor,1868-1945.Chez nos gens /Adjutor RivardQuébec :Editions de l''Action Sociale Catholique,1918.135 p.1PS 9535 I93 C4LC30007004334032YBOOKSDESM-CIRDESMARAISfr9205mb'), +(:bib_tag,'00725nam a2200253 a 450001-012842419970801172204.0970701s1908 fr u000 0 fre u(Sirsi) a108017(Sirsi) 01-0128424UtOrBLWQD''181''R1''M6Montessus de Bellore, Robert de,1870-Le Radium /par R. de Montessus de BelloreParis :Bloud,1908.64 p.Science et Religion : Questions scientifiques ;365Bibliogr.1Radium.SciencesPhilosophie.QD 181 R1 M6LC30007000179282YBOOKSDESM-CIRDESMARAISgrr9310'), +(:bib_tag,'00811nam a2200253 a 450001-012864619981017183912.0970701s1910 fr u000 0 fre u(Sirsi) a108230(Sirsi) 01-0128646UtOrBLWQK''495''O46''L4Léveillé, Augustin Abel Hector,1863-1918.Iconographie du genre Epilobium /par H. Léveillé ; dessins de Gonzalve de CordouëLe Mans :Monnoyer,1910.328 p. :272 planchesPublié en trois parties, 1910-19111Épilobes.Cordouë, Gonzalve de.QK 495 O46 L4LC30007001694511YBOOKSDESM-CIRDESMARAISGARDNERGardner Northern Collectiongrr9310'), +(:bib_tag,'01214nam a2200265 a 450001-012864719990209112340.0970701s1914 quca u000 0 fre u(Sirsi) a108231(Sirsi) 01-0128647UtOrBLWSB''357''L4''1914Léopold, père, O.C.S.O.,1884-La Culture fruitière dans la Province de Québec /par le père Léopold, O.C.R.2. éd., rev. et cor.La Trappe, Qué. :Institut agricole d''Oka,c1914.269, vi p. :ill.Bulletin / Ministère de l''agriculture de Québec ;no. 17"Traité complet de la propagation des arbres et arbustes fruitiers cultivés dans la province de Québec--de la création d''un verger de pommes et de son entretien, pour le commerce comme pour la famille--d''après les méthodes les plus modernes--avec un sommaire de la culture du Prunier, du Cerisier, du Poirier, et des petits arbustes fruitiers."1Arboriculture fruitièreQuébec (Province)Pommier.SB 357 L4 1914LC30007001694214YBOOKSDESM-CIRDESMARAISgrr9310'), +(:bib_tag,'00753nam a2200265 a 450001-012866920000506164440.0970701s1903 fr a u000 0 fre 04017905(Sirsi) a108252(Sirsi) 01-0128669UtOrBLWQ''173''P22Parenty, Henry,1851-1921.Les tourbillons de Descartes et la science moderne /par H. PerentyParis :Champion,1903.viii, 220 p. :ill.1Descartes, René,1596-1650.Jets.Cosmologie.SciencesHistoire.Q 173 P22LC30007004333430YBOOKSDESM-CIRDESMARAISfr9205vs'), +(:bib_tag,'00698nam a2200241 a 450001-000139920010113175654.0970701s1892 fr u000 0 fre u(Sirsi) a1083(Sirsi) 01-0001399UtOrBLWBR''253''P7Prevost, Gustave Amable,1846-L''église et les campagnes au Moyen Age /par Gustave A. PrevostParis :Champion,1892.292 p.1Église catholiqueHistoireÂge moyen.Églises rurales.Vie rurale.BR 253 P7LC30007004329255YBOOKSDESM-CIRDESMARAIScwfr9502'), +(:bib_tag,'00757nam a2200241 a 450001-012892119970801174140.0970701s1901 fr a u000 0 fre 02019497(Sirsi) a108489(Sirsi) 01-0128921UtOrBLWPN''2629''R5Rigal, Eugène Pierre Marie,1856-1920.Le théâtre français avant la période classique (fin du XVIe et commencement du XVIIe siècle) /par Eugène RigalParis :Hachette,1901.viii, 363 p. :ill.Bibliogr.1ThéâtreFranceHistoire.PN 2629 R5LC30007000003219YBOOKSDESM-CIRDESMARAISfr9204vs'), +(:bib_tag,'00753nam a2200241 a 450001-000140819970729172408.0970701s1905 fr u000 0 fre u(Sirsi) a1087(Sirsi) 01-0001408UtOrBLWPQ''287''D8''1905Dupuy, Ernest,1849-1918.La jeunesse des romantiques :Victor Hugo, Alfred de Vigny /E. DupuyParis :Société Française d''Imprimerie et de Librairie,1905.396 p.1Hugo, Victor,1802-1885.Vigny, Alfred de,1797-1863.RomantismeFrance.PQ 287 D8 1905LC30007004329271YBOOKSDESM-CIRDESMARAISgrr9311'), +(:bib_tag,'00975nam a2200265 a 450001-012932819970801175452.0970701s1921 fr u000 0 fre u(Sirsi) a108871(Sirsi) 01-0129328UtOrBLWPQ''1109''B73''1921Braunschvig, Marcel,1876-Notre littérature étudiée dans les textes /Marcel BraunschvigParis :Colin,1921.2 v.DÉPOUILLEMENT: 1. Des origines à la fin du XVIIe siècle.--2. Le XVIIIe et le XIXe siècle, avec un tableau de la production littéraire contemporaine jusqu''en 1923.Bibliogr.1Littérature françaiseHistoire et critique.Littérature françaiseAnthologies.Littérature françaiseBiobibliographie.PQ 1109 B73 19212LC30007004328992YBOOKSDESM-CIRDESMARAISFR9303JL'), +(:bib_tag,'00719nam a2200241 a 450001-012953819970801180110.0970701s1895 fr u000 0 fre u(Sirsi) a109065(Sirsi) 01-0129538UtOrBLWPQ''4506''M6''1895Mézières, Alfred Jean François,1826-1915.Pétrarque :étude d''après de nouveaux documents /A. MézièresNouv. éd.Paris :Hachette,1895.xxxix, 435 p.Bibliogr.1Petrarca, Francesco,1304-1374.PQ 4506 M6 1895LC30007004389614YBOOKSDESM-CIRDESMARAIScwfr9411'), +(:bib_tag,'00584nam a2200205 a 450001-012990519970801181426.0970701s1898 quc u000 0 fre u(Sirsi) a109406(Sirsi) 01-0129905UtOrBLWPS''9505''H665''R5Choquette, Ernest,1862-1941.Les Ribaud :une idylle de 37 /Dr. ChoquetteMontréal, Qué. :Senécal,1898.354 p.1PS 9505 H665 R5LC30007004393178YBOOKSDESM-CIRDESMARAIScwfr9407'), +(:bib_tag,'00594nam a2200205 a 450001-012990619970801181426.0970701s1918 quc u000 0 fre u(Sirsi) a109407(Sirsi) 01-0129906UtOrBLWPS''9507''O82''C3Doucet, Louis Joseph,1874-1950.Compagnards de la Noraye /Louis-Joseph DoucetQuébec, Qué. :Louis-Joseph Doucet,1918.124 p.1PS 9507 O82 C3LC30007004393152YBOOKSDESM-CIRDESMARAIScwfr9501'), +(:bib_tag,'00568nam a2200181 a 450001-013017519970801182316.0970701q1898 quca u000 0 fre u(Sirsi) a109630PS''9453''E78''M9''1898Berthelot, Hector,1842-1895.Les Mystères de Montréal :roman de moeurs /par Hector Berthelot.4. éd.Montréal, Qué. :Pigeon,1898?.140 p. :ill.fr9204PS 9453 E78 M9 1898LC30007004391271YBOOKSDESM-CIRDESMARAIS1'), +(:bib_tag,'00874nam a2200265 a 450001-013039720030503124102.0970701s1891 fr u000 0 fre u(Sirsi) a109848(Sirsi) 01-0130397UtOrBLWDG''270''G7''1891Goyau, Georges,1869-Chronologie de l''empire romaine /par Georges Goyau ; publiée sous la direction de R. Cagnat.Paris :Editions Klincksieck,1891.635 p.Nouvelle collection à l''usage des classes ;17Bibliogr.1RomeHistoireChronologie.RomeHistoire30 av. J.-C.-476 (Empire)Cagnat, René Louis Victor,1852-1937.DG 270 G7 1891LC30007004394754YBOOKSDESM-CIRDESMARAISFR9204MBP'), +(:bib_tag,'00574nam a2200205 a 450001-013041319970801183142.0970701s1919 quc u000 0 fre u(Sirsi) a109862(Sirsi) 01-0130413UtOrBLWPS''9507''E87''E5DesRoches, Francis,1895-1979."En furetant" /Francis DesRochesQuébec, Qué. :Action sociale,1919.199 p.1PS 9507 E87 E5LC30007004394739YBOOKSDESM-CIRDESMARAIScwfr9501'), +(:bib_tag,'00567nam a2200205 a 450001-013055120010511113104.0970701s1920 quc u000 0 fre u(Sirsi) a109993(Sirsi) 01-0130551UtOrBLWPS''9529''R54''E58Ormes, Renée des.Entre deux rives /Renée des Ormes.Québec, Qué. :Action sociale,1920.137 p.1PS 9529 R54 E58LC30007004395058YBOOKSDESM-CIRDESMARAISfr9210lys'), +(:bib_tag,'00572nam a2200205 a 450001-013055220020213090232.0970701s1912 quc u000 0 fre u(Sirsi) a109994(Sirsi) 01-0130552UtOrBLWPS''9539''E44''A26Tellier, Napoléon.A bout portant :(Billets du Soir).Montréal, Qué. :Editions du "Devoir",1912.121 p.1PS 9539 E44 A26LC30007004395033YBOOKSDESM-CIRDESMARAIS6r9502'), +(:bib_tag,'00704nam a2200217 a 450001-013078320011116112058.0970701s1907 fr u000 0 fre 08034167(Sirsi) a110221(Sirsi) 01-0130783UtOrBLWPS''9073''H35Halden, Charles ab der,1873-Nouvelles études de littérature canadienne française /Charles ab der Halden.Paris :Rudeval,1907.xvi, 377 p.Bibliothèque canadienne1Littérature canadienne-françaiseHistoire et critique.PS 9073 H35LC30007000230796YBOOKSDESM-CIRDESMARAIS'), +(:bib_tag,'00826nam a2200229 a 450001-013088719970801184800.0970701s1890 quc u000 0 fre 10016768(Sirsi) a110319(Sirsi) 01-0130887UtOrBLWFC''2947.4''L42''1890Leblond de Brumath, Adrien,1854-1939.Histoire populaire de Montréal :depuis son origine jusqu''à nos jours /par A. Leblond de Brumath ; avec une lettre-préface de l''abbé Verreau et une introduction de B. SulteMontréal, Qué. :Librairie Granger frères,1890.xii, 454 p.1Montréal (Qué.)Histoire.FC 2947.4 L42 1890LC30007004400148YBOOKSDESM-CIRDESMARAISFR9208dq'), +(:bib_tag,'00512nam a2200181 a 450001-013092719970801184906.0970701s1922 quc u000 0 fre u(Sirsi) a110357PS''9525''A798''M4Massé, Oscar,1880-Mena''sen /Oscar MasséQuébec, Qué :Typographie Dussault & Proulx,1922.123 p.fr9210lysPS 9525 A798 M4LC30007004400379YBOOKSDESM-CIRDESMARAIS1'), +(:bib_tag,'00607nam a2200217 a 450001-013102019970801185204.0970701s1913 fr u000 0 fre u(Sirsi) a110447(Sirsi) 01-0131020UtOrBLWPQ''2635''08''H3''1913Haraszti, Jules,1858-Edmund Rostand /Jules HarosztiParis :Fontemoing ed,1913.237 p.1Rostand, Edmond,1868-1918.PQ 2635 O8 H3 1913LC30007004400213YBOOKSDESM-CIRDESMARAISfr9205mb'), +(:bib_tag,'00711nam a2200229 a 450001-013109619970801185446.0970701s1921 fr u000 0 fre 22004091(Sirsi) a110518(Sirsi) 01-0131096UtOrBLWDR''428''V5''1921Loti, Pierre,1850-1923.Suprêmes visions d''Orient :fragments de journal intime /Pierre Loti et son fils Samuel ViaudParis :Calmann-Lévy,1921.316 p.1TurquieDescriptions et voyages.Viaud, Samuel.DR 428 V5 1921LC30007004396270YBOOKSDESM-CIRDESMARAISfr9205'), +(:bib_tag,'00714nam a2200229 a 450001-013110419970801185502.0970701s1902 fr u000 0 fre 03005078(Sirsi) a110526(Sirsi) 01-0131104UtOrBLWPQ''2333''C2Calmettes, Fernand,1846-Un demi siècle littéraire :Leconte de Lisle et ses amis /par Fernand CalmettesParis :Librairies-Imprimeries réunies,1902.345 p.1Leconte de Lisle, Charles Marie René,1818-1894.PQ 2333 C2LC30007004400783YBOOKSDESM-CIRDESMARAISfr9208mb'), +(:bib_tag,'00720nam a2200229 a 450001-013117019970801185714.0970701s1891 quca u000 0 fre u(Sirsi) a110591(Sirsi) 01-0131170UtOrBLWF''15''F85''H2Hamon, E.(Édouard),1841-1904.Les Canadiens-Français de la Nouvelle-Angleterre /par E. HamonQuébec, Qué. :Hardy,1891.xv, 483 p. :ill.1Église catholiqueNouvelle-Angleterre.Canadiens françaisNouvelle-Angleterre.F 15 F85 H2LC30007004397005YBOOKSDESM-CIRDESMARAISFR9208dq'), +(:bib_tag,'00844nam a2200241 a 450001-013133120030214125650.0970701s1911 nyu u000 0 fre u(Sirsi) a110747(Sirsi) 01-0131331UtOrBLWDC''130''M2''B4Blennerhassett, Charlotte Julia von Leyden, lady,1843-1917.Louis XIV and Madame Maintenon /by Charlotte, lady BlennerhassettNew York, NY :Scribner,1911.xxiii, 323 p.1Louis XIV,King of France,1638-1715.Maintenon, Françoise d''Aubigné,marquise de,1635-1719.FranceCourt and courtiers.FranceHistoryBourbons, 1589-1789.DC 130 M2 B4LC30007004397534YBOOKSDESM-CIRDESMARAISer9206'), +(:bib_tag,'00593nam a2200205 a 450001-013187120001123155136.0970701s1914 quc u000 0 fre u(Sirsi) a111230FC''450''C37''1914Carrier, L. N.Les évènements de 1837-38 /L. N. Carrier2. éd.Beauceville, Qué. :L''Éclaireur,1914.164 p.CanadaHistoire1837-1838 (Rébellion)fr9205mbFC 450 C37 1914LC30007004398318YBOOKSDESM-CIRDESMARAIS1'), +(:bib_tag,'00805nam a2200241 a 450001-013191320030509143924.0970701s1908 quc u000 0 fre 09018175(Sirsi) a111271(Sirsi) 01-0131913UtOrBLWFC''472''B785Brunet, Ludovic,1865-La province du Canada :histoire politique de 1840 à 1867 /Ludovic Brunet.Québec, Qué. :Laflamme & Proulx,1908.305 p.1CanadaPolitique et gouvernement1841-1967.CanadaHistoire1841-1867.FC 472 B785LC230007004295878YBOOKSDESM-CIRDESMARAISFC 472 B785LC30007004406541YBOOKSDESM-CIRDESMARAISfr9206'), +(:bib_tag,'01048nam a2200301 a 450001-013243619981017205328.0970701s1912 fr a u000 0 fre 13003742(Sirsi) a111730(Sirsi) 01-0132436UtOrBLWE''61''B56Beauchat, Henri.Manuel d''archéologie américaine (Amérique préhistorique - Civilisations disparues) /par H. Beauchat ; préface par m. H. VignaudParis :Picard,1912.xli, 773 p. :ill.Bibliogr.1EthnologieAmérique.Indiens d''AmériqueAmérique du NordAntiquités.AmériqueAntiquités.91-958 B35ALPHANUM30007000232032YBOOK_RAREDESM-RAREDESMARAIS.NOTE. B35GARDNERE 61 B56LC30007005040372YBOOKSDESM-CIRDESMARAISGARDNERRare books/Livres raresGardner Northern Collectiongrrb9111'), +(:bib_tag,'00719nam a2200229 a 450001-013305919990401103848.0970701s1909 fr u000 0 fre 93001057(Sirsi) a112333(Sirsi) 01-0133059UtOrBLWPQ''2178''R8Ruxton, Geneviève Rappin.La Dilecta de Balzac :Balzac et Mme de Berny, 1820-1836 /Geneviève Ruxton ; préface de M. Jules LemaitreParis :Plon-Nourrit,1909.iii, 270 p.1Balzac, Honoré de,1799-1850Biographie.PQ 2178 R8LC30007004405295YBOOKSDESM-CIRDESMARAISFR9208dq'), +(:bib_tag,'00611nam a2200217 a 450001-000148719970729172510.0970701s1910 fr u000 0 fre 10009621(Sirsi) a1125(Sirsi) 01-0001487UtOrBLWPQ''2635''O7''C4Rostand, Edmond,1868-1918.Chantecler :pièce en quatre actes, en vers /Edmond RostandParis :Fasquelle,1910.244 p.1PQ 2635 O7 C4LC30007004333489YBOOKSDESM-CIRDESMARAISfr9207lys'), +(:bib_tag,'00634nam a2200217 a 450001-000150019970729172516.0970701s1921 fr a u000 0 fre 44050659(Sirsi) a1130(Sirsi) 01-0001500UtOrBLWPQ''2619''A65''U333Chassé, Charles,1883-Sous le masque d''Alfred Jarry (?) :les sources d''Ubu-Roi /par Charles ChasséParis :Floury,1921.94 p. :ill.1PQ 2619 A65 U333LC30007004332481YBOOKSDESM-CIRDESMARAIScwfr9408'), +(:bib_tag,'00848nam a2200241 a 450001-013457819970801205626.0970701s1840 fr u000 0 fre 39014413(Sirsi) a113808(Sirsi) 01-0134578UtOrBLWHV''9670''P3''M3Maurice, barthélemy, b,1801.Histoire politique et anecdotique des prisons de la Seine :contenant des renseignemens entièrement inédits sur la période révolutionnaire /par Barthélemy MauriceParis :Guillaumin,1840.446 p.1Paris (France)Prisons et maisons de correction.FranceHistoire1789-1799 (Réevolution)HV 9670 P3 M3LC30007004416508YBOOKSDESM-CIRDESMARAISFR9208dq'), +(:bib_tag,'01625nam a2200385 a 450001-013485719970801210712.0970701m1900uuuusz u000 0 fre 76472249(Sirsi) a114076(Sirsi) 01-0134857SwUtOrBLWBR''410''C58''1969Compagnie des pasteurs de Genève.Registres de la Compagnie des pasteurs de Genève /publiés sous la direction des Archives d''Etat de Genève, par Olivier Fatio ... [et al.].Genève :Droz,1900-v.Travaux d''Humanisme et Renaissance ;55, 107, 137, 153, 180, 198, 236, 252Vols. 1-2 ont pour titre: Registres de la Compagnie des pasteurs de Genève au temps de Calvin.Français ou latin. 76472249 // t_oclcBibliogr.t. 1. 1546-1553.--t. 2. 1553-1564.--t. 3. 1565-1574.--t. 4. 1575-1582.--t. 5. 1583-1588.--t. 6. 1589-1594.--t. 7. 1595-1599.--t. 8. 1600-1603.--t. 9. 1604-1606.--t. 10. 1607-1609.1RéformeSuisseGenèveSources.Genève (Suisse)Histoire religieuseSources.Fatio, Olivier.Archives d''Etat de Genève.BR 410 C58 19693LC3000700133474664.90YBOOKSDESM-CIRDESMARAISHISTORYBR 410 C58 196910LC3000700176350684.47YBOOKSDESM-CIRDESMARAISHISTORYHistory (Social sciences)/Histoire (Sciences sociales) 2-239293f9207f9310'), +(:bib_tag,'00750nam a2200265 a 450001-013503420000122215738.0970701s1909 fr u000 0 fre 10006481(Sirsi) a114237(Sirsi) 01-0135034UtOrBLWHD''2733''M23''1909Martin Saint-Léon, Étienne,1860-Cartells et trusts /Et. Martin Saint-Léon.3. éd.Paris :Lecoffre, Gabalada & Cie,1909.x, 266 p.Bibliothèque d''économie socialeBibliogr.1Trusts.HD 2733 M23 1909LC30007004437868YBOOKSDESM-CIRDESMARAISFR9201RB'), +(:bib_tag,'00879nam a2200241 a 450001-013512620000122201444.0970701s1914 fr u000 0 fre u(Sirsi) a114325(Sirsi) 01-0135126UtOrBLWFC''133''M66Montpetit, Édouard,1881-1954.Les survivances françaises au Canada :conférences faites à l''Ecole libre des sciences politiques les 13 et 20 juin 1913 /Édouard Montpetit ; précédées des discours prononcés par Étienne Lamy et Louis MadelinParis :Plon-Nourrit,1914.91 p.1Canadiens français.Madelin, Louis,1871-1956.Lamy, Étienne Marie Victor,1845-1919.FC 133 M66LC30007004417431YBOOKSDESM-CIRDESMARAISFR9209dq'), +(:bib_tag,'01167nam a2200301 a 450001-013550019980527090104.0970701s1878 quc u000 0 fre (Sirsi) a114662(Sirsi) 01-0135500UtOrBLWFC''2946.8''H68''C38''1878Casgrain, H. R.(Henri Raymond),1831-1904.Histoire de l''Hôtel-Dieu de Québec /par l''abbé H.R. CasgrainQuébec, Qué. :Brousseau,1878.612 p.1Augustines hospitalières de la Miséricorde de JésusHistoireChronologie.Hôtel-Dieu de Québec.Catherine de Saint-Augustin, mère,1632-1668.HôpitauxQuébec (Province)Histoire.ReligieusesQuébec (Province)HistoireChronologie.Québec (Québec)Histoire.FC 2946.8 H68 C38 1878LC30007000844273YBOOKSDESM-CIRDESMARAISRAREBOOKS92-1374 B37ALPHANUM30007004344312YBOOK_RAREDESM-RAREDESMARAIS.NOTE. B37RAREBOOKSRare books/Livres raresgrrb9201'), +(:bib_tag,'00827nam a2200229 a 450001-013582119970801214448.0970701s1907 quc u000 0 fre u(Sirsi) a114963(Sirsi) 01-0135821UtOrBLWBX''4705''C363''H8Hudon, Léonidas.Vie de la Mère Marie-Catherine de Saint-Augustin :religieuse de l''Hôtel-Dieu du Précieux-sang de Québec, 1632-1668 /par L. HudonMontréal, Que. :Bureaux du messager canadien,1907.xxiii, 262 p.En tête du titre: Une fleur mystique de la Nouvelle-France1Catherine de Saint-Augustin, soeur,1632-1668.BX 4705 C363 H8LC30007004355904YBOOKSDESM-CIRDESMARAISfr9205mb'), +(:bib_tag,'00822nam a2200265 a 450001-013582719970801214458.0970701s1899 fr u000 0 fre u(Sirsi) a114969(Sirsi) 01-0135827UtOrBLWHM''136''S314''1899Stirner, Max,1806-1856.L''unique et sa propriété /Max Stirner ; traduction de Robert L. ReclaireParis :P. V. Stock,1899.449 p.Bibliothèque sociologique ;no. 23En tête du titre: Max StirnerTraduction de Der einzige und sein Eigenthum1Égoïsme.Individualisme.HM 136 S314 1899LC30007004414792YBOOKSDESM-CIRDESMARAISgrr9310'), +(:bib_tag,'01046nam a2200289 a 450001-013585720010724092454.0970701s1882 quc u000 0 fre u(Sirsi) a114999(Sirsi) 01-0135857UtOrBLWFC''470''T87''1882Turcotte, Louis-P.(Louis-Philippe),1842-1878.Le Canada sous l''union, 1841-1867 /par Louis-P. Turcotte.Québec, Qué. :Demers,1882.2 v. en 1.v.1. Première partie, 1841-1847. -- v.2. 2e, 3e, et 4e parties, 1847-1867.1CanadaHistoire1841-1867.CanadaPolitique et gouvernement1841-1867.FC 470 T87 1882LC30007001260768YBOOKSDESM-CIRDESMARAISFRANCOONT92-1435 B42ALPHANUM30007004344643YBOOK_RAREDESM-RAREDESMARAIS.NOTE. B42FRANCOONTRare books/Livres raresCollection franco-ontariennefg0107grrb9201'), +(:bib_tag,'00741nam a2200265 a 450001-013599420001009103710.0970701s1898 quc u000 0 fre u(Sirsi) a115135(Sirsi) 01-0135994UtOrBLWPS''9473''E53''F4Lemay, Pamphile,1837-1918.Fêtes et corvées /par L. P. LeMayLévis, Qué. :Pierre-Georges Roy,1898.82 p.Bibliothèque canadiennePublié avec Fantôme.1Fêtes.Fêtes religieuses.FantômePS 9473 E53 F4LC30007004356373YBOOKSDESM-CIRDESMARAISFR9209dq'), +(:bib_tag,'00716nam a2200241 a 450001-013607319980904130046.0970701s1919 quc u000 0 fre 27003311(Sirsi) a115210(Sirsi) 01-0136073UtOrBLWHD''7125''B6Bourbonnière, Avila.La mutualité :ce qu''elle a été, ce qu''elle est, ce qu''elle sera /par Avila BourbonnièreMontréal, Qué. :Ducharme,1919.185 p.1MutuellesCanada.MutuellesÉtats-Unis.HD 7125 B6LC30007004441589YBOOKSDESM-CIRDESMARAISFR9202JL'), +(:bib_tag,'00964nam a2200265 a 450001-013674719990926191548.0970701s1841 be u000 0 fre u(Sirsi) a115870(Sirsi) 01-0136747UtOrBLWPQ''1109''N7''1841Noël, François Joseph Michel,1755-1841.Leçons françaises de littérature et de morale :avec les préceptes du genre et des modèles d''exercice /par M.M. Noël et De la Place2. éd.Bruxelles :Société nationale pour la propagation des bons livres,1841.1 v.1Littérature française.Lectures et morceaux choisis.Littérature didactique française.La Place, Guislain François Marie Joseph de,1757-1823.PQ 1109 N7 1841LC30007004357678YBOOKSDESM-CIRDESMARAISgrr9311'), +(:bib_tag,'00748nam a2200241 a 450001-013688619970801222452.0970701s1919 quca u000 0 fre 66036935(Sirsi) a116000(Sirsi) 01-0136886UtOrBLWFC''551''L3''D383David, L.-O.(Laurent-Olivier),1840-1926.Laurier, sa vie, ses oeuvres /L.-O. DavidBeauceville, Qué. :L''Éclaireur,1919.268 p. :ill.1Laurier, Wilfrid,Sir,1841-1919.CanadaPolitique et gouvernement1867-1914.FC 551 L3 D383LC30007004384276YBOOKSDESM-CIRDESMARAISFR9209dq'), +(:bib_tag,'00682nam a2200229 a 450001-013726919970801223844.0970701s1879 fr a u000 0 fre u(Sirsi) a116364(Sirsi) 01-0137269UtOrBLWHQ''1394''D3Dantier, Alphonse.Les femmes dans la société chrétienne.Paris :Firmin-Didot,1879.2 v :ill.1Femmes dans le christianisme.HQ 1394 D32LC30007005954457YBOOKSDESM-CIRDESMARAISHQ 1394 D31LC30007005954499YBOOKSDESM-CIRDESMARAIS7R9407'), +(:bib_tag,'00808nam a2200253 a 450001-013742220001009103812.0970701s1871 fr u000 0 fre u(Sirsi) a116508(Sirsi) 01-0137422UtOrBLWDC''314''B53Blanqui, Auguste,1805-1881.La Patrie en danger /Blanqui.Paris :Le Chevalier,1871.xxvi, 359 p.Photocopie de l''édition de 1871 publiée à Paris.1FranceHistoire1870-1946 (3e République)Paris (France)Histoire1870-1871 (Siège)DC 314 B53LC30007001176568YBOOKSDESM-CIRDESMARAISGIFTSRegular Gift Fund/Fond régulier 6-950001f0005'), +(:bib_tag,'00860nam a2200229 a 450001-013781719970801225946.0970701s1917 quc u000 0 fre u(Sirsi) a116893PS''9439''A23''T7''1917Taché, Joseph-Charles,1820-1894.Trois légendes de mon pays, ou, L''Évangile ignoré, l''Évangile prêché, l''Évangile accepté /par J.-C. Taché.Montréal, Qué. :Beauchemin,1917.122 p.Rare books/Livres raresCollection franco-ontarienneBibliothèque canadiennegrrb9202PS 9439 A23 T7 1917LC30007004296371YBOOKSDESM-CIRDESMARAISFRANCOONT92-1713 B54ALPHANUM30007004345194YBOOK_RAREDESM-RAREDESMARAIS.NOTE. B54FRANCOONT1'), +(:bib_tag,'00659nam a2200217 a 450001-001339119970729224758.0970701t18751984fr u000 0 fre u2130389481(Sirsi) a11704HM''101''B664Boudon, Raymond.La Place du désordre :critique des théories du changement social /Raymond Boudon.2. éd.Paris :Presses universitaires de France,1875, c1984.245 p.Bibliogr.Changement social.2000-03-01HM 101 B664LC30007000047935YBOOKSDESM-CIRDESMARAIS1'), +(:bib_tag,'00788nam a2200241 a 450001-001341320000122202940.0970701s1916 onc u000 0 fre 17008089(Sirsi) a11717(Sirsi) 01-0013413NUCFREUtOrBLWPC3608.M6Montigny, Louvigny de,1876-1955.La Langue française au Canada, son état actuel :étude canadienne /par Louvigny de Montigny.Ottawa, Ont. :[s.n.],1916.187 p.1Français (Langue)Québec (Province)CanadaLangues.PC3608M6LC30007001946010YBOOKSDESM-CIRDESMARAISFRANCOONTCollection franco-ontarienne2000-03-01'), +(:bib_tag,'00819nam a2200253 a 450001-013867419970801233124.0970701s1909 fr u000 0 fre u(Sirsi) a117724(Sirsi) 01-0138674UtOrBLWF''3423''M61''1909Meyendorff, Kondrativ Egorovich.L''empire du soleil Perou et Bolivie /K. Meyendorff and N. MeyendorffParis :Hachette,1909.318 p.En-tête du titre: Baron et baronne Conrad de Meyendorff1PérouDescriptions et voyages.BolivieDescriptions et voyages.Meyendorff, Nataliia Grigorevna.F 3423 M61 1909LC30007004382965YBOOKSDESM-CIRDESMARAISgrr9310'), +(:bib_tag,'00575nam a2200205 a 450001-001357619991012135336.0970701s1920 fr u000 0 fre u(Sirsi) a11823NUCFREN6923.B9R6 1920Rolland, Romain,1866-1944.Vie de Michel-Ange.Paris :Hachette,1920.210 p.Bibliogr.Buonarroti, Michel Angelo,1475-1564.2000-03-01N6923B9R6 1920LC30007001952125YBOOKSDESM-CIRDESMARAIS1'), +(:bib_tag,'00839nam a2200265 a 450001-013940219970823110212.0970701s1917 quc u000 0 fre u(Sirsi) a118430(Sirsi) 01-0139402UtOrBLWD''521''D38''1917Desjardins, L. G.(Louis Georges),1849-1928.L''Angleterre, le Canada et la grande guerre /par le lieutenant-colonel L.-G. Desjardins2e éd.Québec, Qué. :Chronicle Print,1917.v.1Guerre mondiale, 1914-1918.Guerre mondiale, 1914-1918Canada.Impérialisme.Grande-BretagneColonies.D 521 D38 19171LC30007005740575YBOOKSDESM-CIRDESMARAIScwfr9409'), +(:bib_tag,'01022nam a2200289 a 450001-001365119990329105304.0970701s1800 fr u000 0 fre u(Sirsi) a11850(Sirsi) 01-0013651UtOrBLWN''6922''C54Clément, Charles,1821-1887.Michel-ange, Léonard de Vinci, Raphael :avec une étude sur l''art en Italie avant le XVIe siècle et des catalogues raisonnés historiques et bibliographiques /Charles Clément.5. éd. rev. et considérablement augm.Paris :Hetzel,1800.410 p.Bibliothèque d''education et de récréationsBibliogr.1ArtItalieHistoire.Léonard, de Vinvi,1452-1519.Raffaele Sanzio,1483-1520.Michelangelo Buonarroti,1475-1564.N 6922 C54LC30007001946051YBOOKSDESM-CIRDESMARAIS5R9502'), +(:bib_tag,'00796nam a2200253 a 450001-013956419970802000106.0970701q1910 fr u000 0 fre u(Sirsi) a118590(Sirsi) 01-0139564UtOrBLWPQ''263''F3''1910Faguet, Émile,1847-1916.Dix-huitième siècle :études littéraires /Emile Faguet25. éd.Paris :Lecène et Oudin,1910?.559 p.Nouvelle bibliothèque littéraire1Littérature française18e siècleHistoire et critique.XVIIIe siècle : études littérairesPQ 263 F3 1910LC30007004418488YBOOKSDESM-CIRDESMARAISgrr9310'), +(:bib_tag,'00592nam a2200217 a 450001-013957219970802000124.0970701s1896 fr u000 0 fre u(Sirsi) a118598(Sirsi) 01-0139572UtOrBLWPQ''661''B8Brunetière, Ferdinand,1849-1906.Le Roman naturaliste /Ferdinand Brunetière7. éd.Paris :Calmann-Lévy,1896.393 p.1PQ 661 B8LC30007004418645YBOOKSDESM-CIRDESMARAISgrr9311'), +(:bib_tag,'00965nam a2200277 a 450001-013991519970802001436.0970701s1905 quc u000 0 fre u(Sirsi) a118925(Sirsi) 01-0139915UtOrBLWFC''341''N53''G68''1905Gosselin, Auguste Honoré,1843-1918.Jean Nicolet et le Canada de son temps (1618-1642) /par Auguste Gosselin.Québec, Qué. :Laflamme,1905.282 p.En-tête du titre: Les Normands au Canada.Publié à l''origine dans la Revue catholique de Normandie.1Nicollet, Jean,1598?-1642.CanadaHistoireJusqu''à 1763 (Nouvelle-France)Normands au Canada.FC 341 N53 G68 1905LC30007000461318YBOOKSDESM-CIRDESMARAISFRANCOONTCollection franco-ontarienne9192f9204'), +(:bib_tag,'00649nam a2200217 a 450001-014070019970802004126.0970701s1920 quc u000 0 fre u(Sirsi) a119639(Sirsi) 01-0140700UtOrBLWFC''315''L43Lecompte, Edouard,1856-1929.Les Jésuites du Canada au X1Xe siècle /par Édouard LecompteMontréal, Qué. :Imprimerie du Messager,1920.v.1JésuitesCanadaHistoire.FC 315 L431LC30007004419890YBOOKSDESM-CIRDESMARAIScwfr9501'), +(:bib_tag,'00964nam a2200265 a 450001-001381119991024201314.0970701m19211951fr u000 0 fre u(Sirsi) a12007(Sirsi) 01-0013811UtOrBLWP121.M4 1921Meillet, A.(Antoine),1886-1936.Linguistique historique et linguistique générale /par A. Meillet.Paris :Champion,1921-1951.2 v.Collection linguistique publiée par la Société de linguistique de Paris ;8, 40Vol. 2: Paris : Klincksieck.Vol. 2: première éd. 1937.1Linguistique comparée.Langage et langues.Grammaire comparée et générale.P 121 M4 19212LC230007001505865YBOOKSDESM-CIRDESMARAISP121 M4 19212LC30007002212156YBOOKSDESM-CIRDESMARAIS'), +(:bib_tag,'00870nam a2200241 a 450001-014160419970802011300.0970701m18601864fr a u000 0 fre u(Sirsi) a120509(Sirsi) 01-0141604UtOrBLWDC''611''S33''Q5''1860Quicherat, Jules Étienne Joseph,1814-1882.Histoire de Sainte-Barbe :collége, communauté, institution /par J. QuicheratParis :Hachette,1860-1864.3 v. :ill.1Sainte-Barbe (France)Historie.DC 611 S33 Q5 18601LC30007004057302YBOOKSDESM-CIRDESMARAISDC 611 S33 Q5 18603LC30007004057328YBOOKSDESM-CIRDESMARAISDC 611 S33 Q5 18602LC30007004057336YBOOKSDESM-CIRDESMARAIScwfr9603'), +(:bib_tag,'00628nam a2200217 a 450001-014233319970802013722.0970701q1909 fr u000 0 fre u(Sirsi) a121215(Sirsi) 01-0142333UtOrBLWPQ''149''B4Bertaut, Jules,1877-1959.La littérature féminine d''aujourd''hui /Jules BertautParis :Librairie des annules,1909?.315 p.1Femmes écrivains françaises.PQ 149 B4LC30007004428529YBOOKSDESM-CIRDESMARAISfr9204vs'), +(:bib_tag,'00565nam a2200169 a 450001-001396619970729230248.0970701s1886 fr u000 0 fre u(Sirsi) a12123PQ4582''F5''A34''1886Ariosto, Lodovico,1474-1533.Roland furieux /L''Arioste ; traduction nouvelle avec une introduction et des notes par C. Hippeau.Paris :Editions Garnier,1886.v.Hippeau, C.PQ4582 F5 A34 18862LC30007001952554YBOOKSDESM-CIRDESMARAIS1'), +(:bib_tag,'00872nam a2200265 a 450001-014268119970802014848.0970701s1904 fr a u000 0 fre 05011335(Sirsi) a121545(Sirsi) 01-0142681UtOrBLWZ''8660''B4Bédier, Joseph,1864-1938.Bibliographie des travaux de Gaston Paris /publiée par Joseph Bédier et Mario Roques.Paris :Bouillon,1904.201 p. :ill.En-tête du titre: Société amicale Gaston Paris.1Paris, Gaston Bruno Paulin,1839-1903Bibliographie.Philologie romaneBibliographie.Roques, Mario Louis,1875-1961.Z 8660 B4LC30007006473564YBOOKSDESM-CIRDESMARAIS7R9508'), +(:bib_tag,'00997nam a2200241 a 450001-014277119970802015224.0970701s1837 fr u000 0 fre u(Sirsi) a121629(Sirsi) 01-0142771UtOrBLWDF''76''R614''1837Robinson, John,1774-1840.Antiquités grecques :or, tableau des moeurs, usages et institutions des grecs ; dans lequel on expose tout ce qui a rapport a leurs religion, gouvernement, lois, magistratures...agriculture, etc. etc. /traduit de l''anglais de Robinson.Paris :Firmin-Didot,1837.2 v.Ouvrage principalement destiné à faciliter l''intelligence des auteurs classiques grecs.1GrèceAntiquités.DF 76 R614 18371LC30007004425418YBOOKSDESM-CIRDESMARAISDF 76 R614 18372LC30007005746788YBOOKSDESM-CIRDESMARAIScwfr9604'), +(:bib_tag,'00840nam a2200217 a 450001-014277719970802015236.0970701s1881 fr u000 0 fre u(Sirsi) a121635DC''249''T3Talleyrand, Charles Maurice de,1754-1838.Correspondance inédite du Prince de Talleyrand et du Roi Louis XVIII, pendant le Congrès de Vienne, publiée sur les manuscrits conservés au Dépôt des Affaires Étrangères /avec préface, éclaircissements et notes par M.G. Pallain.Paris :Plon,1881.xxviii, 528 p.Bibliogr.FR9306pmPallain, Georges,1845-1923.Louis XVIII, roi de France,1755-1824.DC 249 T3LC30007004425574YBOOKSDESM-CIRDESMARAIS1'), +(:bib_tag,'00705nam a2200205 a 450001-014277820030509103532.0970701s1901 fr u000 0 fre 69016754(Sirsi) a121636(Sirsi) 01-0142778UtOrBLWDC''249''L18''1901La Garde-Chambonas, Auguste Louis Charles, comte de,1783-1853.Souvenirs du congrès de Vienne 1814-1815 /Comte A. de La Garde-Chambonas ; publiés avec introduction et notes par le comte Fleury.Paris :Vivien,1901.xv, 461 p.1DC 249 L18 1901LC30007004425590YBOOKSDESM-CIRDESMARAISfr9502'), +(:bib_tag,'00666nam a2200217 a 450001-014381019970802022618.0970701s1889 quc u000 0 fre u(Sirsi) a122604(Sirsi) 01-0143810UtOrBLWBX''3711''A1''N6Notice historique sur la Compagnie de Jésus au Canada.Montréal, Qué. :Au bureau de propriétaire,1889.94 p.1Jésuites (Société de Jésus)Canada.Collaborateur de la Revue canadienne.BX 371 A1 N6LC30007004503115YBOOKSDESM-CIRDESMARAIS7R9409'), +(:bib_tag,'00644nam a2200217 a 450001-001428919970729231116.0970701s1920 fr u000 0 fre 20015403(Sirsi) a12331(Sirsi) 01-0014289UtOrBLWD''523''B36Barbusse, Henri,1874-1935.Paroles d''un combattant :articles et discours (1917-1920) /Henri Barbusse.Paris :Flammarion,1920.238 p.1Guerre mondiale, 1914-1918.D 523 B36LC30007001952752YBOOKSDESM-CIRDESMARAISfr9207') +; diff --git a/Open-ILS/src/sql/test-data/deploy/bibs_graphic_880.sql b/Open-ILS/src/sql/test-data/deploy/bibs_graphic_880.sql new file mode 100644 index 0000000000..6d27597dab --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/bibs_graphic_880.sql @@ -0,0 +1,11 @@ +\set bib_tag '''IMPORT G880''' + +INSERT INTO marcxml_import (tag, marc) VALUES +(:bib_tag, '01702nam a2200445Ia 45002741359NOBLE20090921105246.0090424s2009 cc a 000 0 chi d97875004738177500473818(OCoLC)319126686HUAHUANOGa-cc---NOGAGT4883.A2D326 2009$1880-01Da, Qiao.880-02Tu shuo Zhongguo jie =Tushuo Zhongguojie /Da Qiao bian zhu.880-03Zhongguo jie.Tushuo Zhongguojie.880-04Di 1 ban.880-05Beijing :Zhongguo she hui ke xue chu ban she,2009.4, 231 p. :ill. (some col.) ;24 cm.FestivalsChina.Chinese language materials.ChinaSocial life and customs.HolidaysChina.TalesChina.100-01/$1大乔.245-02/$1图说中国节 =Tushuo Zhongguojie /大乔编著.246-03/$1中国节.250-04/$1第1版.260-05/$1北京 :中国社会科学出版社,2009.120426109092101-0C0NOGnobbc 09-21-2009b27413597III2741359biblio'), +(:bib_tag, '01750 am a2200481Ia 45002784593CONIFER20121031173514.0121026s2012 ja ac 001 0beng d97849249713324924971332engjpnDS890.M442K3513 2012 880-01Kaimai, Jun,1957-Matsumoto Shigeharu :bearing witness /Kaimai Jun ; English adaptation by Waku Miller.Bearing witness1st English ed.Tokyo :International House of Japan,2012.xviii, 219 p., [1] leaf of plates :ill., portraits ;24 cm.LTCB international library selection ; no. 31Translation of: Matsumoto Shigeharu den : saigo no riberarisuto.Includes index.880-03Matsumoto, Shigeharu,1899-1989.880-04Dōmei Tsūshinsha.LiberalsJapanBiography.JournalistsJapanBiography.Miller, Waku.LTCB international library selection ;no. 31.100-01開米潤,1957-240-02松本重治伝.English600-03松本重治,1899-1989.610-04同盟通信社.5894462OCoLC2784593biblio'), +(:bib_tag, '01964cam a2200397Ia 45002802833CONIFER20110408114902.0m d cr unu||||||||090106s1979 gw ob 001 0 eng d9780387095141 (New York)0387095144 (New York)9783540095149 (Berlin)3540095144 (Berlin)(OCoLC)ocn297188498SPLNMSPLNMGW5XECaOWAQA3.L28 no. 727QA377$1880-01Saitō, Yoshimi.Spectral representations for Schrödinger operators with long-range potentials[electronic resource] /Yoshimi Saitō.Berlin ;New York :Springer-Verlag,1979.148 p. ;25 cm.Lecture notes in mathematics,0075-8434 ;727Includes bibliographical references (p. [141]-144) and index.Access restricted to users with a valid University of Windsor ID ; Ontario Council of University Libraries ; Springer Science+Business Media, LLC.OWADifferential equations, Elliptic.SpringerSP(before 2005)_2012_11_3349.mrc.2012_11_5Schrödinger operator.Scattering (Mathematics)Spectral theory (Mathematics)Print version:Saitō, Yoshimi.Spectral representations for Schrödinger operators with long-range potentials.Berlin ; New York : Springer-Verlag, 19790387095144(DLC) 79015958(OCoLC)5101219Lecture notes in mathematics (Springer-Verlag) ;727.http://ezproxy.uwindsor.ca/login?url=http://books.scholarsportal.info/viewdoc.html?id=/ebooks/ebooks2/springer/2011-04-14/2/3540095144Available OnlineWINDSYShttp://ezproxy.uwindsor.ca/login?url=http://dx.doi.org/10.1007/BFb0070997Available OnlineWINDSYS100-01/$1齋藤, 義實297188498OCoLC2802833biblio'), +(:bib_tag, '02921nam a2200625Ia 4500892053CONIFER20081125080111.0m d cr cn| 081017s2006 ja a sb 001 0 eng d97844312877594431287752(OCoLC)ocn262693560(OCoLC)262693560978-4-431-28774-2Springerhttp://www.springerlink.comGW5XEengGW5XEMAINQP123.B68 2006eb2006 G-560WF 102I608b 2006$1QPlcco612.222880-01Breathing, feeding, and neuroprotection[electronic resource] /I . Homma, S. Shioda, eds.880-02Tokyo ;New York :Springer,c2006.xvi, 148 p. :ill. ;24 cm.Includes bibliographical references and index.Central regulation of breathing -- Neurogeneration and neuroprotection -- Brain functions in health and disease -- Brain functions by the Dipole Tracing method.Electronic reproduction.New York :Springer,2008.Mode of access: World Wide Web.System requirements: Web browser.Title from title screen (viewed on Oct. 10, 2008).Access may be restricted to users at subscribing institutions.RespirationRegulation.Blood-brain barrier.Neurophysiology.Respiratory MechanicsphysiologyCongresses.Respiratory TransportphysiologyCongresses.Biological ClocksCongresses.Blood-Brain BarrierinnervationCongresses.Brain StemphysiologyCongresses.Nerve RegenerationphysiologyCongresses.880-03Nō.jlabsh/3Electronic books.local880-04Homma, Ikuo.880-00Shioda, S.(Seiji)SpringerLink (Online service)Original44312877449784431287742(DLC) 2006923431(OCoLC)69982830Available online from SpringerLinkhttp://librweb.laurentian.ca/login?url=http://dx.doi.org/10.1007/4-431-28775-2LUSYSAvailable online from ScholarsPortalhttp://librweb.laurentian.ca/login?url=http://resolver.scholarsportal.info/isbn/9784431287759LUSYS245-01/$1Breathing,Feeding,and,Neuroprotection/[electronic resource]I。Homma;S。Shioda[編]。260-02/$1[東京]:[シュプリンガー・フェアラーク東京],c2006。650-03/$1jlabsh/3700-00/$1本間生夫700-04/$1塩田清二92ONTCL1a892053Sirsi_Auto892053biblio'), +(:bib_tag, '02737nam a2200589Ia 4500925636CONIFER20081125083147.0m d cr cn| 081017s2002 gw a sb 100 0 eng d 9783540461456 3540461450(OCoLC)ocn262687400(OCoLC)262687400978-3-540-44123-6Springerhttp://www.springerlink.comGW5XEengGW5XEMAINQA76.9.D37D396 2002eb$1Qlcco658.4/038/028557422DaWaK 2002(2002 :Aix-en-Provence, France)Data warehousing and knowledge discovery[electronic resource] :4th international conference, DaWaK 2002, Aix-en-Provence, France, September 4-6, 2002 : proceedings /Yahiko Kambayashi, Werner Winiwarter, Masatoshi Arikawa (eds.).Berlin ;New York :Springer,2002.xiii, 337 p. :ill. ;24 cm.Lecture notes in computer science ;2114Includes bibliographical references.Electronic reproduction.New York :Springer,2008.Mode of access: World Wide Web.System requirements: Web browser.Title from title screen (viewed on Oct. 10, 2008).Access may be restricted to users at subscribing institutions.Data warehousingCongresses.Database searchingCongresses.BANCO DE DADOS (CONGRESSOS)larpcalREDES E COMUNICAÇÃO DE DADOS (CONGRESSOS)larpcalRECUPERAÇÃO DA INFORMAÇÃO (CONGRESSOS)larpcalData-analyse.gttKennismanagement.gttData warehouse.gttBases de donnéesInterrogationCongrès.Entrepôts de données (Informatique)Congrès.Electronic books.localKambayashi, Y.Winiwarter, Werner.880-01Arikawa, Masatoshi.SpringerLink (Online service)Original35404412399783540441236(DLC) 2002030275(OCoLC)50291185Available online from SpringerLinkhttp://librweb.laurentian.ca/login?url=http://dx.doi.org/10.1007/3-540-46145-0LUSYShttp://link.springer-ny.com/link/service/series/0558/tocs/t2454.htmRestricted to Springer LINK subscribersAvailable online from Scholars Portalhttp://librweb.laurentian.ca/login?url=http://resolver.scholarsportal.info/isbn/9783540461456LUSYS700-01/$1有川, 正俊92ONTCL1a925636Sirsi_Auto925636biblio'), +(:bib_tag, '02145cam a2200505Ia 4500964180MAnMC20061016090635.0060622s2005 cc a 000 0 chi d7801885120 :$7.35(OCoLC)70159732BKLBKLBKLACTRANOGchiengNOGA$1880-01Cai, Zhizhong,1948-880-02Laozi shuo I : Zhi zhe de di yu =the Dao speaks I : the whispers of wisdom /Cai Zhizhong zhu ; Brian Bruya yi.880-03Zhi zhe de di yuDao speaks IWhispers of wisdom880-04Di 1 ban.880-05Beijing Shi :Xian dai chu ban she,2005.4, 93 p. :chiefly ill. ;21 cm.880-06Cai Zhizhong man hua zhong ying wen ban.880-07Laozi.Dao de jing.880-08LaoziCriticism and interpretation.880-09LaoziCaricatures and cartoons.Chinese language materials.Philosophy, TaoistCaricatures and cartoons.TaoismComic books, strips, etc.100-01/$1蔡志忠,1948-245-02/$1老子说 I : 智者的低语 =the Dao speaks I : the whispers of wisdom /蔡志忠著 ; Brian Bruya 译.246-03/$1智者的低语250-04/$1第1版.260-05/$1北京市 :现代出版社,2005.440-06/$1蔡志忠漫画中英文版.600-07/$1老子.道德經.600-08/$1老子Criticism and interpretation.600-09/$1老子Caricatures and cartoons.100701106101601-0C0NOGnobcw 10-16-2006gaaagplMBIMBIStacksC 299.5 C123LA V.1book3186700219120812.00nonreferenceholdablecirculatingvisibleAvailablegaaagplMBIMBIStacksC 299.5 C123LA V.1book3186700218768512.00nonreferenceholdablecirculatingvisibleAvailable964180AUTOGEN964180biblio'), +(:bib_tag, '01483cam a2200361Ia 4500800255MAnMC20110603140152.0020801r20022000nyua c 000 1 eng d0439139600 (pbk.) :$8.99(OCoLC)ocm50279560OCOOCOMRQUtOrBLWMRQAJ(MVLC)442287Rowling, J. K.Harry Potter and the goblet of fire /by J.K. Rowling ; illustrations by Mary GrandPré.New York :Scholastic,2002.xi, 734 p. :ill. ;19 cm.Year four at HogwartsHarry Potter: Year four at HogwartsSequel to: Harry Potter and the prisoner of Azkaban.Fourteen-year-old Harry Potter joins the Weasleys at the Quidditch World Cup, then enters his fourth year at Hogwarts Academy where he is mysteriously entered in an unusual contest that challenges his wizarding skills, friendships and character, amid signs that an old enemy is growing stronger.Hogwarts School of Witchcraft and Wizardry (Imaginary place)Fiction.WizardsFiction(MVLC)373715MagicFiction(MVLC)398525SchoolsFiction(MVLC)379065EnglandFiction.(MVLC)486319Fantasy fictionJuvenile fiction.gsafdFantasy fictionJuvenile fiction.GrandPré, Mary(MVLC)176539Rowling, J. K.Year ... at HogwartsHarry Potter: Year four at HogwartsX0MRQ800255AUTOGEN800255biblio') +; diff --git a/Open-ILS/src/sql/test-data/deploy/bibs_insert.sql b/Open-ILS/src/sql/test-data/deploy/bibs_insert.sql new file mode 100644 index 0000000000..6c09b74453 --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/bibs_insert.sql @@ -0,0 +1,10 @@ +-- Deploy evergreen-test-data:bibs_insert to pg +-- requires: bibs_rda + +BEGIN; + +-- insert all loaded bibs into the biblio.record_entry in insert order +INSERT INTO biblio.record_entry (marc, last_xact_id) + SELECT marc, tag FROM marcxml_import ORDER BY id; + +COMMIT; diff --git a/Open-ILS/src/sql/test-data/deploy/bibs_maps.sql b/Open-ILS/src/sql/test-data/deploy/bibs_maps.sql new file mode 100644 index 0000000000..5432d46e91 --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/bibs_maps.sql @@ -0,0 +1,8 @@ +\set bib_tag '''IMPORT MAPS''' + +INSERT INTO marcxml_import (tag, marc) VALUES + +(:bib_tag,'03311cem a2200529 a 45001368378320090125221700.0aj canzn040811s1989 cauae bh b s 0 eng7cbcorigcopuncip20n-geogmapsga09 2004-08-16 sent to CMT2004631763a250000W1260000W1240000N0420000N0400000DLCDLCG4362.C6C5 s250.C374362C6California.Division of Mines and Geology.Geology of the northern California continental margin /H. Gary Greene and Michael P. Kennedy, editors ; [graphics by Ross Martin].Scale 1:250,000 ;transverse Mercator proj.[Sacramento, Calif.] :State of California, Resources Agency, Dept. of Conservation ;[Reston, Va.] :United States Geological Survey,1989.4 maps :col. ;each 91 x 69 cm., on sheets 116 x 99 cm. or smaller, folded in envelope 31 x 26 cm.California continental margin geologic map series ;map no. 7A-7DDepths shown by contours and soundings.Title from envelope cover."Northern California continental margin--Area 7 of 7"--Envelope cover.Maps attributed to various authors, compilers, and contributors.The California continental margin geologic map series was developed cooperatively by the State of California Dept. of Conservation, Division of Mines and Geology, and the United States Geological Survey.Some sheets include chart of geophysical tracklines and data sources.Bibliography.Includes geologic explanation and location diagram.Map no. 7A. Geologic map of the northern California continental margin -- Map no. 7B. Earthquake epicenters and selected fault plane solutions of the northern California continental margin -- Map no. 7C. Bouguer gravity and magnetic anomaly map of the northern California continental margin -- Map no. 7D. Well location, geophysical trackline, and data source map of the northern California continental margin.GeologyCaliforniaPacific Coast RegionMaps.Faults (Geology)CaliforniaPacific Coast RegionMaps.Gravity anomaliesCaliforniaPacific Coast RegionMaps.Continental shelfCaliforniaMaps.CoastsCaliforniaMaps.Submerged landsCaliforniaMaps.Greene, H. G.Kennedy, Michael P.Martin, Ross,cartographer.Geological Survey (U.S.)Geologic map of the northern California continental margin.Earthquake epicenters and selected fault plane solutions of the northern California continental margin.Bouguer gravity and magnetic anomaly map of the northern California continental margin.Well location, geophysical trackline, and data source map of the northern California continental margin.13683783System Local1gaaagplBR1BR1StacksG4362.C6C5 s250.C37112233440.00nonreferenceholdablecirculatingvisibleAvailable'), +(:bib_tag,'01918cem a22003854a 45001493368920090127030616.0aj canzn070719s2007 vauabg cp a f 0 eng7cbcorigcopuncip20y-geogmapsga09 2007-07-19 sent to CMT20076313091411318013a24000W1194500W1192910N0374705N0374200DLCDLCG4362.Y62 2007.G44362Y62Y6Geological Survey (U.S.)Map of Yosemite Valley, Yosemite National Park and Wilderness, California, Mariposa County /United States, Department of the Interior, Geological Survey.Shaded relief ed., limited revision 1970.Scale 1:24,000 ;polyconic proj.Reston, Va. :Geological Survey,2007.1 map :col. ;40 x 97 cm.Relief shown by contours, shading, and spot heights."Interior--Geological Survey ... 1995."On verso: The geologic story of Yosemite Valley / by N. king Huber, in the footsteps of Fran©ʹois E. Matthes. 2007.Includes descriptive list of "Elevations of principal points" and location map.Map of California showing location of Yosemite National Park and ill. (some col.) on verso.Yosemite Valley (Calif.)Maps, Topographic.Yosemite National Park (Calif.)Maps, Topographic.GeologyCaliforniaYosemite ValleyMaps.Huber, N. King(Norman King),1926-Geologic story of Yosemite Valley.Matthes, Fran©ʹois,1874-1948.14933689System Local3gaaagplBR1BR1StacksG4362.Y62 2007.G410901090.00nonreferenceholdablecirculatingvisibleIn process'), +(:bib_tag,'03375cem a2200529 a 45001368374020090126032558.0aj canzn040811s1987 cauae bh b s 0 eng7cbcorigcopuncip20n-geogmapsga09 2004-08-16 sent to CMT2004631762a250000W1220000W1180000N0340000N0320000DLCDLCG4362.C6C5 s250.C334362C6California.Division of Mines and Geology.Geology of the outer-southern California continental margin /H. Gary Greene and Michael P. Kennedy, editors ; [graphics by James Dennis Williams].Scale 1:250,000 ;transverse Mercator proj.[Sacramento, Calif.] :State of California, Resources Agency, Dept. of Conservation ;[Reston, Va.] :United States Geological Survey,1987.4 maps :col. ;each 91 x 78 cm., on sheets 140 x 85 cm. or smaller, folded in envelope 31 x 26 cm.California continental margin geologic map series ;map no. 3A-3DDepths shown by contours and soundings.Title from envelope cover."Outer-southern California continental margin--Area 3 of 7"--Envelope cover.Maps attributed to various authors, compilers, and contributors.The California continental margin geologic map series was developed cooperatively by the State of California Dept. of Conservation, Division of Mines and Geology, and the United States Geological Survey.Some sheets include chart of geophysical tracklines and data sources.Bibliography.Includes geologic explanation and location diagram.Map no. 3A. Geologic map of the outer-southern California continental margin -- Map no. 3B. Earthquake epicenters and selected fault plane solutions of the outer-southern California continental margin -- Map no. 3C. Bouguer gravity and magnetic anomaly map of the outer-southern California continental margin -- Map no. 3D. Well location, geophysical trackline, and data source map of the outer-southern California continental margin.GeologyCaliforniaPacific Coast RegionMaps.Faults (Geology)CaliforniaPacific Coast RegionMaps.Gravity anomaliesCaliforniaPacific Coast RegionMaps.Continental shelfCaliforniaMaps.CoastsCaliforniaMaps.Submerged landsCaliforniaMaps.Greene, H. G.Kennedy, Michael P.Williams, James Dennis.Geological Survey (U.S.)Geologic map of the outer-southern California continental margin.Earthquake epicenters and selected fault plane solutions of the outer-southern California continental margin.Bouguer gravity and magnetic anomaly map of the outer-southern California continental margin.Well location, geophysical trackline, and data source map of the outer-southern California continental margin.13683740System Local2gaaagplBR1BR1StacksG4362.C6C5 s250.C3322334440.00nonreferenceholdablecirculatingvisibleAvailable') +; diff --git a/Open-ILS/src/sql/test-data/deploy/bibs_rda.sql b/Open-ILS/src/sql/test-data/deploy/bibs_rda.sql new file mode 100644 index 0000000000..6c638cc5e7 --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/bibs_rda.sql @@ -0,0 +1,14 @@ +\set bib_tag '''IMPORT RDA''' + +INSERT INTO marcxml_import (tag, marc) VALUES +(:bib_tag, '01534cjm a22003977i 45001789689820140205190136.0sd fsngnnmnned130924p20122012bl ppnn n por 7cbcorignew3ncip20y-soundrecacquire1 shelf copypolicy defaultwr07 2013-09-24 to MBRSqr30 2014-01-31qr30 2014-01-31 201333528350999949467279494672EMIDLCengDLCrdaDLClcodes-bl---SDC 31600Cláudia,1948-Cláudia.[Rio de Janeiro, Brazil] :EMI,[2012]℗20121 audio disc :CD audio ;4 3/4 in.performed musicrdacontentaudiordamediaaudio discrdacarrierSuper divasSung in Portuguese."AA1000"--Container.Lyrics inserted in container.Compact disc.Deixa eu dizer --Eu não sou causa, sou consequência --Soy latino-americano --Desacato --Garra --Peter Gunn --Apenas um rapaz latino-americano --Eu robot --Espanta o grilo --Com mais de trinta --Memória livre de Leila --O circo --O cavaleiro e os moinhos --Gamboa --Só que deram zero pro Bedeu --Minha voz virá do sol da América.Production level cataloging.Popular musicBrazil1971-1980.ODE-rj '), +(:bib_tag, '04927cgm a2200781 i 45001655778120120112135234.0vd msaiz|co mga||||||||101130t20082009cau229 | mleng 7cbcorignewuncip20y-movingimqm02 2010-11-30 2010600022143592125904339626417526417Sony Pictures Home EntertainmentDLCengDLCrdaDLCengfrespaporthaengengfrespaporchikorthaindn-us---DVC 4301 (viewing copy)Pineapple express /Columbia Pictures presents, in association with Relativity Media, an Apatow Company production ; produced by Judd Apatow, Shauna Robertson ; screenplay by Seth Rogen & Evan Goldberg ; directed by David Gordon Green.Unrated special edition.United States.Culver City, California :Sony Pictures Home Entertainment,2008, ©2009.viewing copy.1 videodisc (theatrical version approximately 112 min., extended version approximately 117 min.) :sound, color with introductory black and white sequence ;4 3/4 in. +1 computer disc (4 3/4 in.)two-dimensional moving imagerdacontentvideocomputerrdamediavideodisccomputer discrdacarrierBlu-ray disc; regions A, B, C.DVD-ROM drive required; compatible with PC, PSP, Mac, or iPod; Internet connection required.Video specifications: 1080p high definition, wide screen (2.40:1); some special features in standard definition.Audio specifications: Dolby TrueHD 5.1 (English, French), 5.1 Dolby Digital (Spanish, Portuguese, Thai).Executive producers, Seth Rogen, Evan Goldberg ; story by Judd Apatow and Seth Rogen & Evan Goldberg ; director of photography, Tim Orr ; music by Graeme Revell ; edited by Craig Alpert ; production designer, Chris Spellman.Seth Rogen, James Franco, Gary Cole, Rosie Perez, Danny McBride.Feature film: English; optional French, Spanish, Portuguese, Thai language tracks; optional English, French, Spanish, Portuguese, Chinese, Korean, Thai, Indonesian subtitles.Special features: English; optional Spanish, Portuguese, Chinese, Korean, Thai subtitles."A lazy stoner (Seth Rogen) is the sole witness to a murder by an evil drug lord (Gary Cole) and a corrupt cop (Rosie Perez). Marked for death, he runs for his life, dragging his dazed dealer (James Franco) and his supplier (Danny McBride) with him on a hilarious pot-fueled adventure"--Container.MPAA rating: R (theatrical version); extended version, special features are unrated.Special features: Includes Both theatrical and extended versions of the film; Commentary with Filmmakers and Cast; Deleted Scenes; Extended & Alternate Scenes; The Making of Pineapple Express; The Action of Pineapple Express; Phone Booth; Line-O-Rama; Direct-O-Rama; Gag Reel; Item 9; Saul's Apartment; Raw Footage; Begley's Best; Red and Jessica's Guide to Marriage; Injury Report; Stuntmaster Ken; Rehearsal Footage; First Table Read; Comic-Con Panel; BD-Live.LC copy is incomplete; computer disc is missing.DLCPartially viewed.Sources used: Internet movie database WWW site, viewed November 30, 2010; Sony Pictures WWW site, viewed November 30, 2010.SlackersUnited StatesDrama.Drug dealersUnited StatesDrama.MarijuanaUnited StatesDrama.Drug trafficUnited StatesDrama.Police corruptionUnited StatesDrama.Feature films.lcgftFiction films.lcgftCrime films.lcgftComedy films.lcgftAction and adventure films.lcgftApatow, Judd,1967-film producer.Robertson, Shauna,film producer.Rogen, Seth,1982-screenwriter,film producer,actor.Goldberg, Evan,screenwriterfilm producer.Green, David Gordon,1975-film director.Franco, James,1978-actor.Cole, Gary,1956-actor.Perez, Rosie,actor.McBride, Danny,1976-actor.Columbia Pictures,production company.Relativity Media,production company.Apatow Company,production company.Sony Pictures Home Entertainment (Firm),video distributor.Anonymous Donor Collection (Library of Congress)DLCPineapple express (Motion picture)Pineapple express (Motion picture)Extended version of '), +(:bib_tag, '02185cgm a22004695i 45001811280220140415111154.0vd mvaizk140411m20132012bl 093 g vlpor 0ibcorigres2ncip20y-movingimacquire1 shelf copypolicy defaultwr07 2014-04-11 z-processorwr07 2014-04-15 to MBRS-MI 20143400807892141647564049CBRDLCengDLCrdaporgerengfrespalcodes-bl---Jorge Mautner :o filho do Holocausto /Globo Filmes, Canal Brasil, Pedro Bial e UNIP apresentam ; produção, Carlos Wanderley ; um filme de Pedro Bial e Heitor Alincourt.Filho do HolocaustoBrazil.[Rio de Janeiro, Brazil] :[publisher not identified],℗2012.©2013viewing copy1 videodisc (93 min.) :sound, color ;4 3/4 in.two-dimensional moving imagetdirdacontentvideovrdamediavideodiscvdrdacarrierColeção Canal BrasilThe Brazilian singer, violinist and writer Jorge Mautner, the son of holocaust survivors, is a something of a sensation in Brazil, having collaborated with Caetano Veloso and Gilberto Gil. This film documents his life from birth to age 17. His nanny introduced him to Candomblé; Mautner then became a precursor of the Tropicália, contributing to the construction of a Brazilian musical identity.DVD; 16x9 format; 5.1 surround and 2.0 stereo.In Portuguese and some German, with optional English, French and Spanish subtitles.Not viewed.Mautner, Jorge,1941-Documentary films.lcgftWanderley, Carlos,film producer.Bial, Pedro,1958?-film director.D'Alincourt, Heitor,film director.Mautner, Jorge Henrique,actor.Globo Filmes (Firm)film distributor.Canal Brasil (Firm)film distributor.ODE-rj '), +(:bib_tag, '01228cem a2200349 i 45001763107520130220112822.0aj canzn130220s2012 nmu a 1 eng 7cbcorigcopuncip20y-geogmapsga09 2013-02-20 sent to CMT 2013585177aDLCengDLCrdaG4324.T2 2012.T34324T2Taos news.2012 Enchanted Circle :tourist map : Taos Ski Valley, Taos Canyon, Eagle Nest, Angel Fire, Cimarron, Red River, Costilla, Questa, Raton /Taos news.Title within map border:Taos, New MexicoScale not given.[Taos] :Taos news,2012.1 map :both sides, color ;on sheet 57 x 89 cm, folded to 23 x 14 cmcartographic imagerdacontentunmediatedrdamediasheetrdacarrierPictorial map.Shows Taos region of New Mexico.Title from panel.Printed in 11 segments.Includes location map and color illustrations.Taos Region (N.M.)Maps.Pictorial maps.lcgft '), +(:bib_tag, '01295ckmaa2200349 i 45001759166720140331133353.0130115s19uu cc nnn an 7cbcorignew1ncip20y-gencatlgacquire1 shelf copypolicy defaultcg09 2013-01-15cg04 2013-04-10 to Asian Div. 2011432135DLCengDLCrdaDLCpcca-cc-tiBF1714.B7S75 1900zSrid pa ho.[Tibet] :[producer not identified],[not before 1900]1 sheet ;79 x 55 cmstill imagerdacontentunmediatedrdamediavolumerdacarrierAlso available in digital form on the Library of Congress Web site.20th century Tibetan Buddhist astrological thangka on cloth depicting auspicious symbols, including 12 animals of the 60 year calendar cycle."Tibetan Collection/Thangka no. 4" on cover of box.Inscription in Tibetan.Buddhist astrology.Buddhist astrologyPictorial works.http://hdl.loc.gov/loc.wdl/wdl.3167wdlpmpulldigital files not viewed; td12 2013-7-16 '), +(:bib_tag, '07649ccm a2200913 i 45001802102220140128084328.0140128s2013 nyuopk| defhi n | ita d 201356518697814803285321480328537884088883249HL50498721Hal Leonard(bk.)HL50490487Hal Leonard(cd.)HL50486260Hal Leonard(cd.)63011108Hal Leonard(diction coach 1)63011109Hal Leonard(diction coach 2)63014792Hal Leonard(CD 1)63014793Hal Leonard(CD 2)(OCoLC)ocn826076986(OCoLC)826076986YDXCPengrdaYDXCPCLENUIMYGDLCitagerfreengitagerfreengenglccopycatvf01ka01M1507.A+Arias for bass :complete package : with diction coach and accompaniment CDs /compiled and edited by Robert L. Larsen.New York, NY :G. Schirmer, Inc.,2013.Milwaukee, WI :Distributed by Hal Leonard Corporation1 score (263 pages) ;31 cm +4 sound discs (digital ; 4 3/4 in.)notated musicntmrdacontentperformed musicprmrdacontentunmediatednrdamediaaudiosrdamediavolumencrdacarrieraudio discsdrdacarrierG. Schirmer opera anthologystaff notationItalian, French, German, and English words; non-English texts also printed with English translations.Opera arias; acc. arr. for piano.William Billingham, pianist on CDs.disc 1-2 diction coach -- disc 3-4 accompaniment CDs.Il barbiere di Siviglia. La calunnia / Gioachino Rossini -- La Bohè̀me. Vecchia zimarra, senti / Giacomo Puccini -- La Cenerentola. Miei rampolli femminini / Gioachino Rossini -- Don Giovanni. Madamina! Il catalogo è questo / Wolfgang Amadeus Mozart -- Don Pasquale. Ah! Un foco insolito / Gaetano Donizetti -- Die Entführung aus dem Serail. O, wie will ich triumphiren / Wolfgang Amadeus Mozart -- Ernani. Infelice! E tuo credevi / Giuseppe Verdi -- Eugene Onegin. Gremin's aria / Pyotr Il'yich Tchaikovsky -- Faust. Le veau d'or ; Vous qui faites l'endormie / Charles Gounod -- Der Freischütz. Schweig'! Schweig'! Damit dich niemand warnt / Carl Maria von Weber -- Les huguenots. Pour le couvents c'est fini (Piff, paff) / Giacomo Meyerbeer -- La jolie fille de Perth. Quand la flamme de l'amour / Georges Bizet -- Lucia di Lammermoor. Dalle stanze ove Lucia / Gaetano Donizetti -- Die lustigen Weiber von Windsor. Als Büblein klein / Otto Nicolai -- Macbeth. Come dal ciel precipita / Giuseppe Verdi -- Manon. Épouse quelque brave fille / Jules Massenet -- The mother of us all. What what is it / Virgil Thomson -- Le nozze di Figaro. La vendetta ; Se vuol ballare ; Non più andrai ; Aprite un po' quegl'occhi / Wolfgang Amadeus Mozart -- Simon Boccanegra. Il lacerato spirito / Giuseppe Verdi -- La sonnambula. Vi ravviso / Vincenzo Bellini -- Street scene. Let things be like they always was / Kurt Weill -- I vespri siciliani. O tu, Palermo / Giuseppe Verdi -- Die Zauberflöte. O Isis und Osiris ; In diesen heil'gen Hallen / Wolfgang Amadeus Mozart.OperasExcerptsVocal scores with piano.Recorded accompaniments (Low voice)Larsen, Robert L.,1934-editor,compiler.Billingham, William,performer.Contains (expression):Rossini, Gioacchino,1792-1868.Barbiere di Siviglia.Calunnia è un venticello.Vocal score.Contains (expression):Puccini, Giacomo,1858-1924.Bohème.Vecchia zimarra.Vocal score.Contains (expression):Rossini, Gioacchino,1792-1868.Cenerentola.Miei rampolli femminini.Vocal score.Contains (expression):Mozart, Wolfgang Amadeus,1756-1791.Don Giovanni.Madamina, il catalogo è questo.Vocal score.Contains (expression):Donizetti, Gaetano,1797-1848.Don Pasquale.Foco insolito.Vocal score.Contains (expression):Mozart, Wolfgang Amadeus,1756-1791.Entführung aus dem Serail.Ha! wie will ich triumphieren.Vocal score.Contains (expression):Verdi, Giuseppe,1813-1901.Ernani.Infelice! e tu credevi.Vocal score.Contains (expression):Tchaikovsky, Peter Ilich,1840-1893.Evgeniĭ Onegin.Arii︠a︡ kni︠a︡zi︠a︡.Vocal score.Contains (expression):Gounod, Charles,1818-1893.Faust.Veau d'or est toujours debout.Vocal score.Contains (expression):Gounod, Charles,1818-1893.Faust.Vous qui faites l'endormie.Vocal score.Contains (expression):Weber, Carl Maria von,1786-1826.Freischütz.Schweig', schweig'! damit dich niemand warnt.Vocal score.Contains (expression):Meyerbeer, Giacomo,1791-1864.Huguenots.Piff, paff.Vocal score.Contains (expression):Bizet, Georges,1838-1875.Jolie fille de Perth.Quand la flamme de l'amour.Vocal score.Contains (expression):Donizetti, Gaetano,1797-1848.Lucia di Lammermoor.Dalle stanze ove Lucia.Vocal score.Contains (expression):Nicolai, Otto,1810-1849.Lustigen Weiber von Windsor.Als Büblein klein.Vocal score.Contains (expression):Verdi, Giuseppe,1813-1901.Macbeth.Come dal ciel precipita.Vocal score.Contains (expression):Massenet, Jules,1842-1912.Manon.Épouse quelque brave fille.Vocal score.Contains (expression):Thomson, Virgil,1896-1989.Mother of us all.What what is it.Vocal score.Contains (expression):Mozart, Wolfgang Amadeus,1756-1791.Nozze di Figaro.Vendetta.Vocal score.Contains (expression):Mozart, Wolfgang Amadeus,1756-1791.Nozze di Figaro.Se vuol ballare, signor contino.Vocal score.Contains (expression):Mozart, Wolfgang Amadeus,1756-1791.Nozze di Figaro.Non più andrai farfallone.Vocal score.Contains (expression):Mozart, Wolfgang Amadeus,1756-1791.Nozze di Figaro.Aprite un po' quegl' occhi.Vocal score.Contains (expression):Verdi, Giuseppe,1813-1901.Simon Boccanegra.Lacerato spirito.Vocal score.Contains (expression):Bellini, Vincenzo,1801-1835.Sonnambula.Vi ravviso, o luoghi ameni.Vocal score.Contains (expression):Weill, Kurt,1900-1950.Street scene.Let things be like they always was.Vocal score.Contains (expression):Verdi, Giuseppe,1813-1901.Vêpres siciliennes.Et toi Palerme.Italian.Vocal score.Contains (expression):Mozart, Wolfgang Amadeus,1756-1791.Zauberflöte.O Isis und Osiris (Aria and chorus)O Isis und Osiris.Vocal score.Contains (expression):Mozart, Wolfgang Amadeus,1756-1791.Zauberflöte.In diesen heil'gen Hallen.Vocal score.G. Schirmer opera anthology.0parcopycat2ncip20y-genmusicacquire2 shelf copiespolicy defaultvl34 2014-01-28 z-clientvl34 2014-01-28vl34 2014-01-28 4 sound disc to MBRS for shelf labelvl34 2014-01-28 copy 2, 4 sound disc to MBRS for shelf label '), +(:bib_tag, '07199ccm a2200829 i 45001802185120140128141932.0140128s2013 nyuopk| n | mul d 201356519097814803284711480328472884088883164HL50498715Hal Leonard(bk.)63010268Hal Leonard(CD)63011100Hal Leonard(CD)63014780Hal Leonard(CD)63014781Hal Leonard(CD)(OCoLC)ocn825047719(OCoLC)825047719YDXCPengrdaYDXCPCLEMYGZQPDLClccopycatM1507.A+Arias for soprano :complete package : with diction coach and accompaniment CDs /compiled and edited by Robert L. Larsen.New York, NY :G. Schirmer, Inc.,2013.Milwaukee, WI :Distributed by Hal Leonard Corporation1 vocal score (269 pages) ;31 cm +4 sound discs (digital ; 4 3/4 in.)notated musicntmrdacontentperformed musicprmrdacontentunmediatednrdamediaaudiosrdamediavolumencrdacarrieraudio discsdrdacarrierG. Schirmer opera anthologyThe ballad of Baby Doe. Willow song. The silver aria / Douglas Moore -- Un ballo in maschera. Saper vorreste / Giuseppe Verdi -- La Bohème. Mi chiamano Mimì ; Quando men vo ; Donde lieta / Giacomo Puccini -- Carmen. Je dis que rien ne m'épouvante / Georges Bizet -- Les contes d'Hoffmann. Elle a fui, la tourterelle! / Jacques Offenbach -- Don Giovanni. Batti, batti, o bel Masetto ; Vedrai, carino / Wolfgang Amadeus Mozart -- Falstaff. Sul fil d'un soffio etesio / Giuseppe Verdi -- Faust. Ah! Je ris de me voir (The jewel song) / Charles Gounod -- Fidelio. O wär' ich schon mit dir vereint / Ludwig van Beethoven -- Der Freischütz. Kommt ein schlanker Bursch gegangen / Carl Maria von Weber -- Gianni Schicchi. O mio babbino caro / Giacomo Puccini -- Giulio Cesare. V'adoro, pupille / George Frideric Handel -- Madama Butterfly. Un bel di vedremo / Giacomo Puccini -- Manon. Adieu, notre petite table / Jules Massenet -- The medium. The black swan ; Monica's waltz / Gian Carlo Menotti -- Le nozze di Figaro. Porgi, amor ; Dove sono i bei momenti ; Deh vieni, non tardar / Wolfgang Amadeus Mozart -- I pagliacci. Stridono lassù / Ruggero Leoncavallo -- Rigoletto. Caro nome / Giuseppe Verdi -- Roméo et Juliette. Ah! Je veux vivre / Charles Gounod -- Der Schauspieldirektor. Bester Jüngling / Wolfgang Amadeus Mozart -- Tartuffe. Fair Robin I love / Kirke Mecham -- Turandot. Signore, ascolta! ; Tu che di gel sei cinta / Giacomo Puccini -- Die Zauberflöte. Ach ich fühl's / Wolfgang Amadeus Mozart.OperasExcerptsVocal scores with piano.Recorded accompaniments (High voice)Larsen, Robert L.,1934-Contains (expression):Moore, Douglas,1893-1969.Ballad of Baby Doe.Willow song.Vocal score.Contains (expression):Moore, Douglas,1893-1969.Ballad of Baby Doe.Gold is a fine thing.Vocal score.Contains (expression):Verdi, Giuseppe,1813-1901.Ballo in maschera.Saper vorreste.Vocal score.Contains (expression):Puccini, Giacomo,1858-1924.Bohème.Sì, mi chiamano Mimì.Vocal score.Contains (expression):Puccini, Giacomo,1858-1924.Bohème.Quando me'n vo.Vocal score.Contains (expression):Puccini, Giacomo,1858-1924.Bohème.Donde lieta uscì.Vocal score.Contains (expression):Bizet, Georges,1838-1875.Carmen.Je dis que rien ne m'épouvante.Vocal score.Contains (expression):Offenbach, Jacques,1819-1880.Contes d'Hoffmann.Elle a fui, la tourterelle.Vocal score.Contains (expression):Mozart, Wolfgang Amadeus,1756-1791.Don Giovanni.Batti, batti, o bel Masetto.Vocal score.Contains (expression):Mozart, Wolfgang Amadeus,1756-1791.Don Giovanni.Vedrai, carino, se sei buonino.Vocal score.Contains (expression):Verdi, Giuseppe,1813-1901.Falstaff.Sul fil d'un soffio etesio.Vocal score.Contains (expression):Gounod, Charles,1818-1893.Faust.Je ris de me voir si belle.Vocal score.Contains (expression):Beethoven, Ludwig van,1770-1827.Fidelio(1814).O wär ich schon mit dir vereint.Vocal score.Contains (expression):Weber, Carl Maria von,1786-1826.Freischütz.Kommt ein schlanker Bursch gegangen.Vocal score.Contains (expression):Puccini, Giacomo,1858-1924.Trittico.Gianni Schicchi.O mio babbino caro.Vocal score.Contains (expression):Handel, George Frideric,1685-1759.Giulio Cesare.V'adoro, pupille.Vocal score.Contains (expression):Puccini, Giacomo,1858-1924.Madama Butterfly.Un bel dì, vedremo.Vocal score.Contains (expression):Massenet, Jules,1842-1912.Manon.Adieu, notre petite table.Vocal score.Contains (expression):Menotti, Gian Carlo,1911-2007.Medium.Black swan.Vocal score.Contains (expression):Menotti, Gian Carlo,1911-2007.Medium.Monica's waltz.Vocal score.Contains (expression):Mozart, Wolfgang Amadeus,1756-1791.Nozze di Figaro.Porgi amor.Vocal score.Contains (expression):Mozart, Wolfgang Amadeus,1756-1791.Nozze di Figaro.Dove sono?Vocal score.Contains (expression):Mozart, Wolfgang Amadeus,1756-1791.Nozze di Figaro.Deh vieni, non tardar.Vocal score.Contains (expression):Leoncavallo, Ruggiero,1858-1919.Pagliacci.Hui! stridono lassù.Vocal score.Contains (expression):Verdi, Giuseppe,1813-1901.Rigoletto.Caro nome.Vocal score.Contains (expression):Gounod, Charles,1818-1893.Roméo et Juliette.Je veux vivre dans le rêve.Vocal score.Contains (expression):Mozart, Wolfgang Amadeus,1756-1791.Schauspieldirektor.Bester Jüngling.Vocal score.Contains (expression):Mechem, Kirke.Tartuffe.Fair Robin I love.Vocal score.Contains (expression):Puccini, Giacomo,1858-1924.Turandot.Signore, ascolta!Vocal score.Contains (expression):Puccini, Giacomo,1858-1924.Turandot.Tu che di gel sei cinta.Vocal score.Contains (expression):Mozart, Wolfgang Amadeus,1756-1791.Zauberflöte.Ach, ich fühl's, es ist verschwunden.Vocal score.G. Schirmer opera anthology.0parcopycat2ncip20y-genmusicacquire2 shelf copiespolicy defaultvl34 2014-01-28 z-clientvl34 2014-01-28vl34 2014-01-28 4 sound disc to MBRS for shelf labelvl34 2014-01-28 copy 2, 4 sound disc to MBRS for shelf label '), +(:bib_tag, '01182ccm a22003254i 45001801834920140307095439.0140124s2013 flusta| he n | zxx 7cbcorignew3ncip20y-genmusicacquire2 shelf copiespolicy defaultvk13 2014-01-24vl34 2014-02-27 to Music Divisionvl34 2014-02-27 c. 2 to Music Divisionvl39 2014-3-7 to BCCD c.1 20135684039781574632255884088872281HL00114421Hal LeonardDLCengrdaDLCengMT485.I58 2013Intermediate studies for developing artists on the tuba /[compiled] by Howard Hilliard.First edition.Del Ray Beach, Florida :Meredith Music Publications,2013.Milwaukee, WI :Exclusively distributed by Hal Leonard©20131 score (48 pages) ;31 cmnotated musicrdacontentunmediatedrdamediavolumerdacarrierStaff notation.TubaStudies and exercises.Hilliard, Howard,compiler. '), +(:bib_tag, '01995ccm a22004935i 45001805732120140306100536.0140306t20142014gw sga i n ger d0ibccopycat3ncip20y-gencatlgacquire1 shelf copiespolicy defaultfd08 2014-03-06 z-processor 20134931959783890077772 (hd. bd.)3890077773 (hd. bd.)9784890077773(OCoLC)ocn867509274OHXengOHXrdaOCLCQKLMWTUZCUTDFOCLCODLCgerenglccopycatML96.5.B8 op.49, no. 4 2014Brahms, Johannes,1833-1897,composer.Lieder,op. 49.WiegenliedWiegenlied :Guten Abend, gut' Nacht, Opus 49, Nr. 4 : Faksimile nach dem Autograph des Glinka-Nationalmuseums für Musikkultur, Moskau /von Johannes Brahms ; mit einem Geleitwort von Brigitte Fassbaender und einer Einführung von Wolfgang Sandberger.Laaber :Laaber-Verlag,[2014]©20141 score (14 pages, [4] pages of music) :4 facsimiles ;17 x 25 cm.notated musicntmrdacontentunmediatednrdamediavolumencrdacarrierMeisterwerke der Musik im Faksimile ;Bd. 30For voice and piano.German words.Facsimile reprint.Staff notation.Preface and introduction in German and English.Songs with piano.Lullabies.MusicManuscriptsFacsimiles.Brahms, Johannes,1833-1897ManuscriptsFacsimiles.Fassbaender, Brigitte,writer of added commentary.Sandberger, Wolfgang,writer of added commentary.Meisterwerke der Musik im Faksimile ;Bd. 30.8675092742014013133240793001286 '), +(:bib_tag, '00854cas a22002295i 45001756839920130213162001.0121219cuuuu9999xxu | | 0 0eng 0ibcserials*ncip20z-ilssercaacquire1 shelf copiespolicy defaultrh13 2012-12-19 to Selection OfficerDLCengDLCrdapccIEEE International conference on software testing, verification and validation :[proceedings].(ICST)Piscataway, NJ :Institute of Electrical and Electronic Engineers, Inc.volumes :illustrations ;cmtextrdacontentunmediatedrdamediavolumerdacarrierDescription based on: 5th, (ICST 2012).Institute of Electrical and Electronic Engineers, Inc.') +; diff --git a/Open-ILS/src/sql/test-data/deploy/env_create.sql b/Open-ILS/src/sql/test-data/deploy/env_create.sql new file mode 100644 index 0000000000..52c36035e7 --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/env_create.sql @@ -0,0 +1,218 @@ +/* + * 'id' gives us insert sort order + * 'tag' is mapped to the last_xact_id at import + */ +CREATE TABLE marcxml_import (id SERIAL PRIMARY KEY, marc TEXT, tag TEXT); + +/** + * Create an address for a given actor.org_unit + * + * The "address_type" parameter accepts a TEXT value that contains the + * strings 'mailing', 'interlibrary', 'billing', and 'holds' to enable + * you to provide granular control over which address is associated for + * each function; if given NULL, then all functions are associated with + * the incoming address. + * + * This will happily create duplicate addresses if given duplicate info. + */ +CREATE FUNCTION evergreen.create_aou_address + (owning_lib INTEGER, street1 TEXT, street2 TEXT, city TEXT, state TEXT, country TEXT, + post_code TEXT, address_type TEXT) +RETURNS void AS $$ +BEGIN + INSERT INTO actor.org_address (org_unit, street1, street2, city, state, country, post_code) + VALUES ($1, $2, $3, $4, $5, $6, $7); + + IF $8 IS NULL THEN + UPDATE actor.org_unit SET holds_address = currval('actor.org_address_id_seq'), ill_address = currval('actor.org_address_id_seq'), billing_address = currval('actor.org_address_id_seq'), mailing_address = currval('actor.org_address_id_seq') WHERE id = $1; + END IF; + IF $8 ~ 'holds' THEN + UPDATE actor.org_unit SET holds_address = currval('actor.org_address_id_seq') WHERE id = $1; + END IF; + IF $8 ~ 'interlibrary' THEN + UPDATE actor.org_unit SET ill_address = currval('actor.org_address_id_seq') WHERE id = $1; + END IF; + IF $8 ~ 'billing' THEN + UPDATE actor.org_unit SET billing_address = currval('actor.org_address_id_seq') WHERE id = $1; + END IF; + IF $8 ~ 'mailing' THEN + UPDATE actor.org_unit SET mailing_address = currval('actor.org_address_id_seq') WHERE id = $1; + END IF; +END +$$ LANGUAGE PLPGSQL; + +/** + * create a callnumber for every bib record in the database, + * appending the bib ID to the callnumber label to differentiate. + * If set, 'bib_tag' will limit the inserted callnumbers to bibs + * whose last_xact_id matches bib_tag + */ +CREATE FUNCTION evergreen.populate_call_number + (ownlib INTEGER, label TEXT, bib_tag TEXT, class INTEGER DEFAULT 1) +RETURNS void AS $$ + INSERT INTO asset.call_number (record, creator, editor, owning_lib, label, label_class) + SELECT id, 1, 1, $1, $2 || id::text, $4 + FROM biblio.record_entry + WHERE id > 0 AND + CASE WHEN $3 IS NULL THEN TRUE + ELSE last_xact_id = $3 END; +$$ LANGUAGE SQL; + +CREATE FUNCTION evergreen.populate_call_number + (ownlib INTEGER, label TEXT, bib_tag TEXT) +RETURNS void AS $$ + SELECT evergreen.populate_call_number($1, $2, $3, NULL); +$$ LANGUAGE SQL; + + +/* + * create a copy for every callnumber in the database whose label and owning_lib + * matches, appending the callnumber ID to the copy barcode to differentate. + */ +CREATE FUNCTION evergreen.populate_copy + (circlib INTEGER, ownlib INTEGER, barcode TEXT, label TEXT) +RETURNS void AS $$ + INSERT INTO asset.copy (call_number, circ_lib, creator, editor, loan_duration, fine_level, barcode) + SELECT id, $1, 1, 1, 1, 1, $3 || id::text + FROM asset.call_number + WHERE record > 0 AND label LIKE $4 || '%' AND owning_lib = $2; +$$ LANGUAGE SQL; + +/** Returns the next (by ID) non-deleted asset.copy */ +CREATE FUNCTION evergreen.next_copy (copy_id BIGINT) RETURNS asset.copy AS $$ + SELECT * FROM asset.copy + WHERE id > $1 AND NOT deleted + ORDER BY id LIMIT 1; +$$ LANGUAGE SQL; + +/** Returns the next (by ID) non-deleted biblio.record_entry */ +CREATE FUNCTION evergreen.next_bib (bib_id BIGINT) RETURNS biblio.record_entry AS $$ + SELECT * FROM biblio.record_entry + WHERE id > $1 AND NOT deleted + ORDER BY id LIMIT 1; +$$ LANGUAGE SQL; + + +/** Create one circulation */ +CREATE FUNCTION evergreen.populate_circ ( + patron_id INTEGER, + staff_id INTEGER, + copy_id BIGINT, + circ_lib INTEGER, + duration_rule TEXT, + recurring_fine_rule TEXT, + max_fine_rule TEXT, + overdue BOOLEAN +) + +RETURNS void AS $$ + DECLARE duration config.rule_circ_duration%ROWTYPE; + DECLARE recurring config.rule_recurring_fine%ROWTYPE; + DECLARE max_fine config.rule_max_fine%ROWTYPE; + DECLARE patron actor.usr%ROWTYPE; + DECLARE xact_base_date TIMESTAMP; + DECLARE due_date TIMESTAMP; + DECLARE xact_start TIMESTAMP; +BEGIN + + SELECT INTO duration * FROM config.rule_circ_duration WHERE name = duration_rule; + SELECT INTO recurring * FROM config.rule_recurring_fine WHERE name = recurring_fine_rule; + SELECT INTO max_fine * FROM config.rule_max_fine WHERE name = max_fine_rule; + SELECT INTO patron * FROM actor.usr WHERE id = patron_id; + + IF patron.expire_date < NOW() THEN + xact_base_date = patron.expire_date; + ELSE + xact_base_date = NOW(); + END IF; + + IF overdue THEN + -- if duration is '7 days', the overdue item was due 7 days ago + due_date := xact_base_date - duration.normal; + -- make overdue circs appear as if they were created two durations ago + xact_start := xact_base_date - duration.normal - duration.normal; + ELSE + due_date := xact_base_date + duration.normal; + xact_start := xact_base_date; + END IF; + + IF duration.normal >= '1 day'::INTERVAL THEN + due_date := (DATE(due_date) || ' 23:59:59')::TIMESTAMP; + END IF; + + INSERT INTO action.circulation ( + xact_start, usr, target_copy, circ_lib, circ_staff, renewal_remaining, + grace_period, duration, recurring_fine, max_fine, duration_rule, + recurring_fine_rule, max_fine_rule, due_date ) + VALUES ( + xact_start, + patron_id, + copy_id, + circ_lib, + staff_id, + duration.max_renewals, + recurring.grace_period, + duration.normal, + recurring.normal, + max_fine.amount, + duration.name, + recurring.name, + max_fine.name, + due_date + ); + + -- mark copy as checked out + UPDATE asset.copy SET status = 1 WHERE id = copy_id; + +END; +$$ LANGUAGE PLPGSQL; + + + +/** Create one hold */ +CREATE FUNCTION evergreen.populate_hold ( + hold_type TEXT, + target BIGINT, + patron_id INTEGER, + requestor INTEGER, + pickup_lib INTEGER, + frozen BOOLEAN, + thawdate TIMESTAMP WITH TIME ZONE +) RETURNS void AS $$ +BEGIN + INSERT INTO action.hold_request ( + requestor, hold_type, target, usr, pickup_lib, + request_lib, selection_ou, frozen, thaw_date) + VALUES ( + requestor, + hold_type, + target, + patron_id, + pickup_lib, + pickup_lib, + pickup_lib, + frozen, + thawdate + ); + + -- Create hold notes for staff-placed holds: 1 public, 1 private + IF requestor != patron_id THEN + INSERT INTO action.hold_request_note (hold, title, body, pub, staff) + VALUES ( + currval('action.hold_request_id_seq'), + 'Public: Title of hold# ' || currval('action.hold_request_id_seq'), + 'Public: Hold note body for ' || currval('action.hold_request_id_seq'), + TRUE, TRUE + ), ( + currval('action.hold_request_id_seq'), + 'Private: title of hold# ' || currval('action.hold_request_id_seq'), + 'Private: Hold note body for ' || currval('action.hold_request_id_seq'), + FALSE, TRUE + ); + END IF; +END; +$$ LANGUAGE PLPGSQL; + + + + diff --git a/Open-ILS/src/sql/test-data/deploy/env_destroy.sql b/Open-ILS/src/sql/test-data/deploy/env_destroy.sql new file mode 100644 index 0000000000..3fec691b90 --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/env_destroy.sql @@ -0,0 +1,14 @@ + +-- clean up our temp tables / functions +DROP TABLE marcxml_import; +DROP FUNCTION evergreen.create_aou_address(INTEGER, TEXT, TEXT, TEXT, TEXT, TEXT, TEXT, TEXT); +DROP FUNCTION evergreen.populate_call_number(INTEGER, TEXT, TEXT); +DROP FUNCTION evergreen.populate_call_number(INTEGER, TEXT, TEXT, INTEGER); +DROP FUNCTION evergreen.populate_copy(INTEGER, INTEGER, TEXT, TEXT); +DROP FUNCTION evergreen.next_copy (BIGINT); +DROP FUNCTION evergreen.next_bib (BIGINT); +DROP FUNCTION evergreen.populate_circ + (INTEGER, INTEGER, BIGINT, INTEGER, TEXT, TEXT, TEXT, BOOLEAN); +DROP FUNCTION evergreen.populate_hold + (TEXT, BIGINT, INTEGER, INTEGER, INTEGER, BOOLEAN, TIMESTAMP WITH TIME ZONE); + diff --git a/Open-ILS/src/sql/test-data/deploy/libraries.sql b/Open-ILS/src/sql/test-data/deploy/libraries.sql new file mode 100644 index 0000000000..00a54777f2 --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/libraries.sql @@ -0,0 +1,68 @@ +INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES + (2, 1, 2, 'SYS1', oils_i18n_gettext(2, 'Example System 1', 'aou', 'name')); +INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES + (3, 1, 2, 'SYS2', oils_i18n_gettext(3, 'Example System 2', 'aou', 'name')); +INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES + (4, 2, 3, 'BR1', oils_i18n_gettext(4, 'Example Branch 1', 'aou', 'name')); +INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES + (5, 2, 3, 'BR2', oils_i18n_gettext(5, 'Example Branch 2', 'aou', 'name')); +INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES + (6, 3, 3, 'BR3', oils_i18n_gettext(6, 'Example Branch 3', 'aou', 'name')); +INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES + (7, 3, 3, 'BR4', oils_i18n_gettext(7, 'Example Branch 4', 'aou', 'name')); +INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES + (8, 4, 4, 'SL1', oils_i18n_gettext(8, 'Example Sub-library 1', 'aou', 'name')); +INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES + (9, 6, 5, 'BM1', oils_i18n_gettext(9, 'Example Bookmobile 1', 'aou', 'name')); + +-- Address for the Consortium +SELECT evergreen.create_aou_address(1, '123 Main St.', NULL, 'Anywhere', 'GA', 'US', '30303', NULL); + +-- Addresses for System 1 +SELECT evergreen.create_aou_address(2, '234 Side St.', NULL, 'Anywhere', 'GA', 'US', '30304', NULL); + +-- Addresses for System 2 +SELECT evergreen.create_aou_address(3, '345 Corner Crescent', NULL, 'Elsewhere', 'GA', 'US', '30335', NULL); + +-- Addresses for Branch 1 +SELECT evergreen.create_aou_address(4, 'BR1', '123 Main St.', 'Anywhere', 'GA', 'US', '30303', 'billing mailing'); +SELECT evergreen.create_aou_address(4, 'Holds and ILL', '125 Main St.', 'Anywhere', 'GA', 'US', '30303', 'interlibrary holds'); + +-- Addresses for Branch 2 +SELECT evergreen.create_aou_address(5, 'BR2', '234 Side St.', 'Anywhere', 'GA', 'US', '30304', 'mailing'); +SELECT evergreen.create_aou_address(5, 'BR2 - Billing', '234 Side St.', 'Anywhere', 'GA', 'US', '30304', 'billing'); +SELECT evergreen.create_aou_address(5, 'BR2 - Holds and ILL', '234 Side St.', 'Anywhere', 'GA', 'US', '30304', 'interlibrary holds'); + +-- Addresses for Branch 3 +SELECT evergreen.create_aou_address(6, 'BR3', '347 Corner Crescent', 'Elsewhere', 'GA', 'US', '30335', NULL); + +-- Addresses for Branch 4 +SELECT evergreen.create_aou_address(7, 'BR4', '446 Nowhere Road', 'Elsewhere', 'GA', 'US', '30404', 'mailing'); +SELECT evergreen.create_aou_address(7, 'BR4 - Billing Dept', '446 Nowhere Road', 'Elsewhere', 'GA', 'US', '30404', 'billing'); +SELECT evergreen.create_aou_address(7, 'BR4 - Holds and ILL', '756 Industrial Lane', 'Elsewhere', 'GA', 'US', '30304', 'interlibrary holds'); + +-- Hours for branches +INSERT INTO actor.hours_of_operation (id, dow_0_open, dow_0_close, dow_1_open, dow_1_close, + dow_2_open, dow_2_close, dow_3_open, dow_3_close, dow_4_open, dow_4_close, + dow_5_open, dow_5_close, dow_6_open, dow_6_close) VALUES +-- BR1 - closed on weekends (convention is 00:00 - 00:00) + (4, '08:00', '23:30', '08:00', '23:30', '08:00', '23:30', '08:00', '23:30', '09:00', '23:30', '00:00', '00:00', '00:00', '00:00'), +-- BR2 - accept defaults of 09:00 - 17:00 for some days + (5, '08:30', '21:30', '09:30', '14:30', '10:00', '21:30', '08:30', '17:00', '09:00', '17:00', '09:00', '17:00', '09:00', '17:00'), +-- BR3 - accept defaults of 09:00 - 17:00 for some days + (6, '08:00', '23:30', '08:00', '23:30', '08:00', '23:30', '08:00', '23:30', '09:00', '23:30', '13:00', '23:30', '09:00', '23:30'), +-- BR4 - accept defaults of 09:00 - 17:00 for each day + (7, '09:00', '17:00', '09:00', '17:00', '09:00', '17:00', '09:00', '17:00', '09:00', '17:00', '09:00', '17:00', '09:00', '17:00'); + +-- Set some information URLs for library branches +INSERT INTO actor.org_unit_setting(org_unit, name, value) VALUES + (4, 'lib.info_url', '"http://example.com/BR1"'), -- BR1 + (5, 'lib.info_url', '"http://example.com/BR2"'), -- BR2 + (6, 'lib.info_url', '"http://br3.example.com"'), -- BR3 + (7, 'lib.info_url', '"http://br4.example.com/info"'); -- BR4 + + +UPDATE actor.org_unit SET email = 'br1@example.com', phone = '(555) 555-0271' WHERE shortname = 'BR1'; +UPDATE actor.org_unit SET email = 'br2@example.com', phone = '(555) 555-0272' WHERE shortname = 'BR2'; +UPDATE actor.org_unit SET email = 'br3@example.com', phone = '(555) 555-0273' WHERE shortname = 'BR3'; +UPDATE actor.org_unit SET email = 'br4@example.com', phone = '(555) 555-0274' WHERE shortname = 'BR4'; diff --git a/Open-ILS/src/sql/test-data/deploy/neg_bal_custom_transactions.sql b/Open-ILS/src/sql/test-data/deploy/neg_bal_custom_transactions.sql new file mode 100644 index 0000000000..31f470db6e --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/neg_bal_custom_transactions.sql @@ -0,0 +1,185 @@ +-- Deploy evergreen-test-data:neg_bal_custom_transactions to pg +-- requires: transactions + +BEGIN; + +-- DATA FOR LIVE TESTING LP#1198465: +-- Support for Conditional Negative Balances +-- +-- Assume stock data has been loaded. +-- +-- Dates are relative when necessary; otherwise they may be hardcoded. +-- NOTE: Org unit settings will be handled in the perl code + + +-- Setup some LOST circs, and change copy status to LOST +UPDATE action.circulation SET + xact_start = '2014-05-14 08:39:13.070326-04', + due_date = '2014-05-21 23:59:59-04', + stop_fines_time = '2014-05-28 08:39:13.070326-04', + create_time = '2014-05-14 08:39:13.070326-04', + max_fine = '3.00', + stop_fines = 'LOST', + checkin_staff = NULL, + checkin_lib = NULL, + checkin_time = NULL, + checkin_scan_time = NULL +WHERE id IN (1,2,3,4,5,6,12,13,15); +UPDATE asset.copy SET status = 3 WHERE id IN (2,3,4,5,6,7,13,14,16); + +-- relative LOST circ +UPDATE action.circulation SET + xact_start = NOW() - '24 days'::interval, + due_date = (DATE(NOW() - '10 days'::interval) || ' 23:59:59')::TIMESTAMP, + stop_fines_time = NOW() - '3 days'::interval, + create_time = NOW() - '24 days'::interval, + max_fine = '5.00', + stop_fines = 'LOST', + checkin_staff = NULL, + checkin_lib = NULL, + checkin_time = NULL, + checkin_scan_time = NULL +WHERE id = 10; +UPDATE asset.copy SET status = 3 WHERE id = 11; + +-- Two recently LOST items for Case 10: Interval Testing (1 hour interval) +-- - Item 1: Lost, paid more than 1 hour later, to be returned LESS than 1 hour after payment (via perl test) +-- - Item 2: Lost, paid more than 1 hour later, to be returned MORE than 1 hour after payment (via perl test) +UPDATE action.circulation SET + create_time = NOW() - '1 week'::interval, + xact_start = NOW() - '1 week'::interval, + due_date = NOW() + '1 day'::interval, + stop_fines_time = NOW() - '3 hours'::interval, + max_fine = '3.00', + stop_fines = 'LOST', + checkin_staff = NULL, + checkin_lib = NULL, + checkin_time = NULL, + checkin_scan_time = NULL +WHERE id IN (8, 9); +UPDATE asset.copy SET status = 3 WHERE id IN (9, 10); + +-- non-lost circs, used for Amnesty Mode check-ins +UPDATE action.circulation SET + xact_start = '2014-05-14 08:39:13.070326-04', + due_date = '2014-05-21 23:59:59-04', + stop_fines_time = '2014-05-28 08:39:13.070326-04', + create_time = '2014-05-14 08:39:13.070326-04', + max_fine = '0.70', + stop_fines = 'MAXFINES', + checkin_staff = NULL, + checkin_lib = NULL, + checkin_time = NULL, + checkin_scan_time = NULL +WHERE id IN (7, 14, 16); +UPDATE asset.copy SET status = 1 WHERE id IN (8, 15, 17); + +-- Setup a non-lost, maxfines circ +UPDATE action.circulation SET + xact_start = '2014-05-14 08:39:13.070326-04', + due_date = '2014-05-21 23:59:59-04', + stop_fines_time = '2014-05-28 08:39:13.070326-04', + create_time = '2014-05-14 08:39:13.070326-04', + max_fine = '0.70', + stop_fines = 'MAXFINES', + checkin_staff = NULL, + checkin_lib = NULL, + checkin_time = NULL, + checkin_scan_time = NULL +WHERE id = 11; +UPDATE asset.copy SET status = 1 WHERE id = 12; + + +-- Create LOST and overdue fines +INSERT INTO money.billing (id, xact, billing_ts, voided, voider, void_time, amount, billing_type, btype, note) VALUES + (DEFAULT, 1, '2014-05-28 08:39:13.070326-04', false, NULL, NULL, 50.00, 'Lost Materials', 3, 'SYSTEM GENERATED'), + (DEFAULT, 2, '2014-05-28 08:39:13.070326-04', false, NULL, NULL, 50.00, 'Lost Materials', 3, 'SYSTEM GENERATED'), + (DEFAULT, 3, '2014-05-28 08:39:13.070326-04', false, NULL, NULL, 50.00, 'Lost Materials', 3, 'SYSTEM GENERATED'), + (DEFAULT, 4, '2014-05-28 08:39:13.070326-04', false, NULL, NULL, 50.00, 'Lost Materials', 3, 'SYSTEM GENERATED'), + (DEFAULT, 5, '2014-05-28 08:39:13.070326-04', false, NULL, NULL, 50.00, 'Lost Materials', 3, 'SYSTEM GENERATED'), + (DEFAULT, 6, '2014-05-22 23:59:59-04', true, 1, '2014-05-28 08:39:13.070326-04', 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 6, '2014-05-23 23:59:59-04', true, 1, '2014-05-28 08:39:13.070326-04', 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 6, '2014-05-24 23:59:59-04', true, 1, '2014-05-28 08:39:13.070326-04', 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 6, '2014-05-25 23:59:59-04', true, 1, '2014-05-28 08:39:13.070326-04', 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 6, '2014-05-26 23:59:59-04', true, 1, '2014-05-28 08:39:13.070326-04', 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 6, '2014-05-27 23:59:59-04', true, 1, '2014-05-28 08:39:13.070326-04', 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 6, '2014-05-28 23:59:59-04', true, 1, '2014-05-28 08:39:13.070326-04', 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 6, '2014-05-28 08:39:13.070326-04', false, NULL, NULL, 50.00, 'Lost Materials', 3, 'SYSTEM GENERATED'), + (DEFAULT, 7, '2014-05-22 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 7, '2014-05-23 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 7, '2014-05-24 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 7, '2014-05-25 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 7, '2014-05-26 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 7, '2014-05-27 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 7, '2014-05-28 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 8, NOW() - '2 hours'::interval, false, NULL, NULL, 50.00, 'Lost Materials', 3, 'SYSTEM GENERATED'), + (DEFAULT, 9, NOW() - '4 hours'::interval, false, NULL, NULL, 50.00, 'Lost Materials', 3, 'SYSTEM GENERATED'), + (DEFAULT, 11, '2014-05-22 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 11, '2014-05-23 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 11, '2014-05-24 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 11, '2014-05-25 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 11, '2014-05-26 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 11, '2014-05-27 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 11, '2014-05-28 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 12, '2014-05-22 23:59:59-04', true, 1, '2014-05-28 08:39:13.070326-04', 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 12, '2014-05-23 23:59:59-04', true, 1, '2014-05-28 08:39:13.070326-04', 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 12, '2014-05-24 23:59:59-04', true, 1, '2014-05-28 08:39:13.070326-04', 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 12, '2014-05-25 23:59:59-04', true, 1, '2014-05-28 08:39:13.070326-04', 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 12, '2014-05-26 23:59:59-04', true, 1, '2014-05-28 08:39:13.070326-04', 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 12, '2014-05-27 23:59:59-04', true, 1, '2014-05-28 08:39:13.070326-04', 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 12, '2014-05-28 23:59:59-04', true, 1, '2014-05-28 08:39:13.070326-04', 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 12, '2014-05-28 08:39:13.070326-04', false, NULL, NULL, 50.00, 'Lost Materials', 3, 'SYSTEM GENERATED'), + (DEFAULT, 13, '2014-05-28 08:39:13.070326-04', false, NULL, NULL, 50.00, 'Lost Materials', 3, 'SYSTEM GENERATED'), + (DEFAULT, 14, '2014-05-22 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 14, '2014-05-23 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 14, '2014-05-24 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 14, '2014-05-25 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 14, '2014-05-26 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 14, '2014-05-27 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 14, '2014-05-28 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 15, '2014-05-28 08:39:13.070326-04', false, NULL, NULL, 50.00, 'Lost Materials', 3, 'SYSTEM GENERATED'), + (DEFAULT, 16, '2014-05-22 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 16, '2014-05-23 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 16, '2014-05-24 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 16, '2014-05-25 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 16, '2014-05-26 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 16, '2014-05-27 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 16, '2014-05-28 23:59:59-04', false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + -- XACT 10 must be last, because we use CURRVAL() to put their IDs in the account adjustments + (DEFAULT, 10, (DATE(NOW() - '9 days'::interval) || ' 23:59:59')::TIMESTAMP, false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 10, (DATE(NOW() - '8 days'::interval) || ' 23:59:59')::TIMESTAMP, false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 10, (DATE(NOW() - '7 days'::interval) || ' 23:59:59')::TIMESTAMP, false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 10, (DATE(NOW() - '6 days'::interval) || ' 23:59:59')::TIMESTAMP, false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 10, (DATE(NOW() - '5 days'::interval) || ' 23:59:59')::TIMESTAMP, false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 10, (DATE(NOW() - '4 days'::interval) || ' 23:59:59')::TIMESTAMP, false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 10, (DATE(NOW() - '3 days'::interval) || ' 23:59:59')::TIMESTAMP, false, NULL, NULL, 0.10, 'Overdue materials', 1, 'System Generated Overdue Fine'), + (DEFAULT, 10, NOW() - '3 days'::interval, false, NULL, NULL, 50.00, 'Lost Materials', 3, 'SYSTEM GENERATED'); + + +INSERT INTO money.account_adjustment (id, xact, payment_ts, voided, amount, note, amount_collected, accepting_usr, billing) VALUES + (DEFAULT, 10, NOW() - '3 days'::interval, false, 0.10, '', 0.10, 1, CURRVAL('money.billing_id_seq') - 7), + (DEFAULT, 10, NOW() - '3 days'::interval, false, 0.10, '', 0.10, 1, CURRVAL('money.billing_id_seq') - 6), + (DEFAULT, 10, NOW() - '3 days'::interval, false, 0.10, '', 0.10, 1, CURRVAL('money.billing_id_seq') - 5), + (DEFAULT, 10, NOW() - '3 days'::interval, false, 0.10, '', 0.10, 1, CURRVAL('money.billing_id_seq') - 4), + (DEFAULT, 10, NOW() - '3 days'::interval, false, 0.10, '', 0.10, 1, CURRVAL('money.billing_id_seq') - 3), + (DEFAULT, 10, NOW() - '3 days'::interval, false, 0.10, '', 0.10, 1, CURRVAL('money.billing_id_seq') - 2), + (DEFAULT, 10, NOW() - '3 days'::interval, false, 0.10, '', 0.10, 1, CURRVAL('money.billing_id_seq') - 1); + +INSERT INTO money.cash_payment (id, xact, payment_ts, voided, amount, note, amount_collected, accepting_usr, cash_drawer) VALUES + (DEFAULT, 8, NOW() - '30 minutes'::interval, false, 50.00, 'LOST payment', 50.00, 1, 51), + (DEFAULT, 9, NOW() - '2 hours'::interval, false, 50.00, 'LOST payment', 50.00, 1, 51), + (DEFAULT, 10, NOW() - '2 days'::interval, false, 10.00, 'Partial LOST payment', 10.00, 1, 51); + +-- if rerunning, make sure our mangled bills have the right total in the summary +UPDATE money.materialized_billable_xact_summary SET balance_owed = 50.00 + WHERE id IN (1,2,3,4,5,6,12,13,15); +UPDATE money.materialized_billable_xact_summary SET balance_owed = 0.70 + WHERE id IN (7, 14, 16); +UPDATE money.materialized_billable_xact_summary SET balance_owed = 0.00 + WHERE id IN (8, 9); +UPDATE money.materialized_billable_xact_summary SET balance_owed = 40.00 + WHERE id = 10; +UPDATE money.materialized_billable_xact_summary SET balance_owed = 0.70 + WHERE id = 11; + +COMMIT; diff --git a/Open-ILS/src/sql/test-data/deploy/transactions.sql b/Open-ILS/src/sql/test-data/deploy/transactions.sql new file mode 100644 index 0000000000..e95b0d60d0 --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/transactions.sql @@ -0,0 +1,141 @@ + +/** + * For the first (by ID) 20 users in each Patron group and the first 3 in + * each Staff group: + * + * 1. create 3 regular circs w/ varying (stock) rules and 3 overdue + * circs. + * + * 2. create 2 regular title holds and one frozen title hold. If the user + * is in a Staff group, also create one copy-level hold. + * + */ + +/** + * NOTE: The fine generator and hold targeter should be run after this is + * loaded to creating overdue billings and target copies for holds. + */ + +DO $$ + DECLARE grp INTEGER; + DECLARE recipient actor.usr%ROWTYPE; + DECLARE copy asset.copy%ROWTYPE; + DECLARE bre biblio.record_entry%ROWTYPE; + DECLARE user_count INTEGER; + DECLARE requestor INTEGER; +BEGIN + + copy := evergreen.next_copy(0); + bre := evergreen.next_bib(0); + + FOR grp IN SELECT id FROM permission.grp_tree WHERE id > 1 ORDER BY id LOOP + + IF 2 IN (SELECT id FROM permission.grp_ancestors(grp)) THEN + -- patron group + user_count := 50; + ELSE + user_count := 3; + END IF; + + FOR recipient IN SELECT * FROM actor.usr + WHERE NOT deleted AND profile = grp + AND expire_date > NOW() - '1 month'::interval + ORDER BY id LIMIT user_count LOOP + + -- find a suitable circulator/requestor for these transactions + SELECT INTO requestor id + FROM actor.usr + WHERE home_ou = recipient.home_ou AND + profile = 5 AND -- Circulators + NOT deleted + AND expire_date > NOW() + ORDER BY id LIMIT 1; + + -- regular circs -------------------------------- + + copy := evergreen.next_copy(copy.id); + EXIT WHEN copy IS NULL; + PERFORM evergreen.populate_circ( + recipient.id, requestor, copy.id, copy.circ_lib, + 'default', 'default', 'default', FALSE + ); + + copy := evergreen.next_copy(copy.id); + EXIT WHEN copy IS NULL; + PERFORM evergreen.populate_circ( + recipient.id, requestor, copy.id, copy.circ_lib, + '1_hour_2_renew', 'default', 'overdue_min', FALSE + ); + + copy := evergreen.next_copy(copy.id); + EXIT WHEN copy IS NULL; + PERFORM evergreen.populate_circ( + recipient.id, requestor, copy.id, copy.circ_lib, + '7_days_0_renew', 'default', 'overdue_max', FALSE + ); + + -- overdue circs ---------------------------------- + + copy := evergreen.next_copy(copy.id); + EXIT WHEN copy IS NULL; + PERFORM evergreen.populate_circ( + recipient.id, requestor, copy.id, copy.circ_lib, + 'default', 'default', 'default', TRUE + ); + + copy := evergreen.next_copy(copy.id); + EXIT WHEN copy IS NULL; + PERFORM evergreen.populate_circ( + recipient.id, requestor, copy.id, copy.circ_lib, + '1_hour_2_renew', 'default', 'overdue_min', TRUE + ); + + copy := evergreen.next_copy(copy.id); + EXIT WHEN copy IS NULL; + PERFORM evergreen.populate_circ( + recipient.id, requestor, copy.id, copy.circ_lib, + '7_days_0_renew', 'default', 'overdue_max', TRUE + ); + + -- holds ------------------------------------------ + + -- title hold + bre := evergreen.next_bib(bre.id); + EXIT WHEN bre IS NULL; + PERFORM evergreen.populate_hold( + 'T', bre.id, recipient.id, recipient.id, + recipient.home_ou, FALSE, NULL + ); + + -- title hold, circulator-placed + bre := evergreen.next_bib(bre.id); + EXIT WHEN bre IS NULL; + PERFORM evergreen.populate_hold( + 'T', bre.id, recipient.id, requestor, + recipient.home_ou, FALSE, NULL + ); + + -- frozen title hold + bre := evergreen.next_bib(bre.id); + EXIT WHEN bre IS NULL; + PERFORM evergreen.populate_hold( + 'T', bre.id, recipient.id, recipient.id, + recipient.home_ou, + TRUE, NOW() + '3 months'::INTERVAL + ); + + -- Staff accounts get a copy-level hold + IF 3 IN (SELECT id FROM permission.grp_ancestors(grp)) THEN + copy := evergreen.next_copy(copy.id); + EXIT WHEN copy IS NULL; + PERFORM evergreen.populate_hold( + 'C', copy.id, recipient.id, recipient.id, + recipient.home_ou, FALSE, NULL + ); + END IF; + + END LOOP; + END LOOP; +END $$; + + diff --git a/Open-ILS/src/sql/test-data/deploy/users_patrons_100.sql b/Open-ILS/src/sql/test-data/deploy/users_patrons_100.sql new file mode 100644 index 0000000000..9ed900b600 --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/users_patrons_100.sql @@ -0,0 +1,2108 @@ + +-- expired patron +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999395390', 9, 'Brooks', 'terrib1234', + 'Terri', 'Maria', '2008-01-01', NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '32961', '1809 Target Way', 't', + 'FL', 'Vero beach', '', 'Indian river', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999395390', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +-- expired patron +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999320945', 5, 'Jackson', 'shannonj1234', + 'Shannon', 'Thomas', '1999-01-01', NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '41301', '3481 Facility Island', 't', + 'KY', 'Campton', '', 'Wolfe', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999320945', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +-- Soon to expire patron +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999355250', 5, 'Jones', 'gregoryj1234', + 'Gregory', '', NOW() + '1 day'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '55927', '5150 Dinner Expressway', 't', + 'MN', 'Dodge center', '', 'Dodge', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999355250', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +-- Soon to expire patron +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999387993', 9, 'Moran', 'vincentm1234', + 'Vincent', 'Kenneth', NOW() + '1 week'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '22611', '8496 Random Trust Points', 't', + 'VA', 'Berryville', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999387993', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +-- Soon to expire patron +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999335859', 8, 'Jones', 'gregoryj1234', + 'Gregory', 'Adam', NOW() + '3 weeks'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '99502', '7626 Secret Institute Courts', 't', + 'AK', 'Anchorage', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999335859', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +-- Recently expired patron +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999373186', 7, 'Walker', 'brittanyw1234', + 'Brittany', 'Geraldine', NOW() - '1 week'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '40445', '7044 Regular Index Path', 't', + 'KY', 'Livingston', '', 'Rockcastle', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999373186', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +-- Recently expired patron +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999384262', 9, 'Miller', 'ernestom1234', + 'Ernesto', 'Robert', NOW() - '3 weeks'::INTERVAL, '1997-02-02', 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '33157', '3403 Thundering Heat Meadows', 't', + 'FL', 'Miami', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999384262', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +-- Invalid address +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999373998', 9, 'Hill', 'roberth1234', + 'Robert', 'Louis', NOW() + '3 years'::INTERVAL, NULL, 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '18960', '759 Doubtful Government Extension', 'f', + 'PA', 'Sellersville', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999373998', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +-- Invalid address +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999376669', 7, 'Lopez', 'edwardl1234', + 'Edward', 'Robert', NOW() + '3 years'::INTERVAL, NULL, 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '29593', '5431 Japanese Work Rapid', 'f', + 'SC', 'Society hill', '', 'Darlington', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999376669', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999361076', 8, 'Bell', 'andrewb1234', + 'Andrew', 'Alberto', NOW() + '3 years'::INTERVAL, NULL, 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '61936', '5253 Agricultural Exhibition Stravenue', 't', + 'IL', 'La place', '', 'Piatt', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999361076', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999376988', 9, 'Mitchell', 'jenniferm1234', + 'Jennifer', 'Dorothy', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '61822', '8649 Raspy Goal Terrace', 't', + 'IL', 'Champaign', '', 'Champaign', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999376988', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999390791', 7, 'Ortiz', 'richardo1234', + 'Richard', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '23885', '2433 Uncomfortable Nature Greens', 't', + 'VA', 'Sutherland', '', 'Dinwiddie', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999390791', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999378730', 6, 'Wade', 'robertw1234', + 'Robert', 'Coy', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '55796', '3241 Communist Boat Boulevard', 't', + 'MN', 'Winton', '', 'Saint louis', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999378730', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999360638', 5, 'Wise', 'janetw1234', + 'Janet', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '64126', '6773 Government Hill', 't', + 'MO', 'Kansas city', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999360638', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999350419', 4, 'Torres', 'donaldt1234', + 'Donald', 'Arnold', NOW() + '3 years'::INTERVAL, '1974-06-26', 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '40847', '7194 Gorgeous Edge Dale', 't', + 'KY', 'Kenvir', '', 'Harlan', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999350419', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999354736', 4, 'Miller', 'jeffm1234', + 'Jeff', 'James', NOW() + '3 years'::INTERVAL, NULL, 'Sr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '80920', '9674 Filthy Firm Meadows', 't', + 'CO', 'Colorado springs', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999354736', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999329662', 9, 'Estes', 'leonarde1234', + 'Leonard', '', NOW() + '3 years'::INTERVAL, '1994-05-07', 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '20724', '6145 Superior Dress Prairie', 't', + 'MD', 'Laurel', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999329662', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999397601', 8, 'Dunn', 'brittneyd1234', + 'Brittney', 'Pamela', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '73838', '9753 Confident Limit Shoal', 't', + 'OK', 'Chester', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999397601', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999377594', 4, 'Wiggins', 'jeanw1234', + 'Jean', 'Verna', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '23018', '6115 Thoughtful Country Ridge', 't', + 'VA', 'Bena', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999377594', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999371252', 9, 'Thomas', 'lelat1234', + 'Lela', 'Sarah', NOW() + '3 years'::INTERVAL, '1968-04-11', 'Sr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '60609', '4223 Spotty Chemical Stravenue', 't', + 'IL', 'Chicago', '', 'Cook', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999371252', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999398023', 8, 'Phillips', 'noahp1234', + 'Noah', 'Joseph', NOW() + '3 years'::INTERVAL, NULL, 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '33593', '2005 Inner Entry Harbor', 't', + 'FL', 'Trilby', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999398023', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999324566', 5, 'Mitchell', 'carolynm1234', + 'Carolyn', 'Patrica', NOW() + '3 years'::INTERVAL, '1981-09-03', 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '50652', '5259 Film Crossing', 't', + 'IA', 'Lincoln', '', 'Tama', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999324566', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999379221', 5, 'Wells', 'kristenw1234', + 'Kristen', 'Vivian', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '12450', '2302 Prisoner Way', 't', + 'NY', 'Lanesville', '', 'Greene', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999379221', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999373350', 8, 'Lindsey', 'noahl1234', + 'Noah', 'Keith', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '50108', '7583 Low Surface Overpass', 't', + 'IA', 'Grand river', '', 'Decatur', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999373350', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999340920', 4, 'Williams', 'berthaw1234', + 'Bertha', 'Katherine', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '20646', '3301 Acid Canyon', 't', + 'MD', 'La plata', '', 'Charles', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999340920', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999398482', 7, 'Rodriguez', 'jamesr1234', + 'James', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '95066', '9801 Working-class Flower Meadow', 't', + 'CA', 'Scotts valley', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999398482', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999394378', 5, 'Byrd', 'matthewb1234', + 'Matthew', 'David', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '43015', '9029 Note Court', 't', + 'OH', 'Delaware', '', 'Delaware', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999394378', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999382659', 4, 'Kelley', 'sandrak1234', + 'Sandra', 'Pearlie', NOW() + '3 years'::INTERVAL, '1977-01-18', 'Sr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '56568', '4246 Fun Post Street', 't', + 'MN', 'Nielsville', '', 'Polk', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999382659', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999387130', 7, 'Wilson', 'bethw1234', + 'Beth', 'Michelle', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '15341', '7780 Horrible Winner Island', 't', + 'PA', 'Holbrook', '', 'Greene', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999387130', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999310765', 8, 'Daniels', 'randyd1234', + 'Randy', 'Lawrence', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '29680', '4697 Subsequent Culture Pass', 't', + 'SC', 'Simpsonville', '', 'Greenville', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999310765', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999335545', 9, 'Simpson', 'steves1234', + 'Steve', 'Raymond', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '88118', '2400 Communication Mount', 't', + 'NM', 'Floyd', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999335545', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999360529', 5, 'Hoskins', 'jimh1234', + 'Jim', 'Michael', NOW() + '3 years'::INTERVAL, '1983-08-02', 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '15015', '7815 Principal Element Center', 't', + 'PA', 'Bradfordwoods', '', 'Allegheny', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999360529', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999357038', 5, 'May', 'michaelm1234', + 'Michael', '', NOW() + '3 years'::INTERVAL, '1988-03-06', 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '20064', '4827 Shoulder Center', 't', + 'DC', 'Washington', '', 'District of columbia', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999357038', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999371688', 8, 'Ellison', 'done1234', + 'Don', 'John', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '20643', '1298 Golden Speed Hills', 't', + 'MD', 'Ironsides', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999371688', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999312757', 4, 'Hughes', 'josephh1234', + 'Joseph', 'Bryant', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '48613', '9736 Profitable Wine Spring', 't', + 'MI', 'Bentley', '', 'Bay', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999312757', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999399015', 8, 'Turner', 'cristinat1234', + 'Cristina', 'Karen', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '45844', '6445 Turkish Strike Shoal', 't', + 'OH', 'Fort jennings', '', 'Putnam', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999399015', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999313973', 4, 'Langley', 'victorl1234', + 'Victor', 'James', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '94576', '1082 Capacity Hill', 't', + 'CA', 'Deer park', '', 'Napa', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999313973', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999311521', 6, 'Fields', 'davidf1234', + 'David', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '73939', '8788 Religious Writer Isle', 't', + 'OK', 'Goodwell', '', 'Texas', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999311521', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999388816', 7, 'Hoffman', 'gregoryh1234', + 'Gregory', 'Thomas', NOW() + '3 years'::INTERVAL, '1999-11-13', 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '47163', '4971 Assembly Parkways', 't', + 'IN', 'Otisco', '', 'Clark', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999388816', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999345160', 8, 'Gonzalez', 'natalieg1234', + 'Natalie', 'Joan', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '17120', '8835 Amazing Reduction Course', 't', + 'PA', 'Harrisburg', '', 'Dauphin', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999345160', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999328966', 9, 'Rucker', 'drewr1234', + 'Drew', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '92253', '5158 Redundant Reality Creek', 't', + 'CA', 'La quinta', '', 'Riverside', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999328966', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999394635', 9, 'Mitchell', 'kimberlym1234', + 'Kimberly', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '85375', '9724 Land Corner', 't', + 'AZ', 'Sun city west', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999394635', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999333308', 7, 'Murray', 'heatherm1234', + 'Heather', 'Margaret', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '51239', '5555 Project Bypass', 't', + 'IA', 'Hull', '', 'Sioux', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999333308', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999316647', 7, 'Sosa', 'robertas1234', + 'Roberta', 'Norma', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '94010', '4571 Jealous Comparison Wells', 't', + 'CA', 'Burlingame', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999316647', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999389066', 4, 'Ramos', 'annetter1234', + 'Annette', 'Angela', NOW() + '3 years'::INTERVAL, '1967-11-04', 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '29621', '9196 Old Future Fort', 't', + 'SC', 'Anderson', '', 'Anderson', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999389066', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999380162', 8, 'Jackson', 'paulj1234', + 'Paul', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '77651', '9869 Convention Pine', 't', + 'TX', 'Port neches', '', 'Jefferson', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999380162', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999318240', 7, 'Graham', 'johng1234', + 'John', 'Charles', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '03216', '3676 Sweet Campaign Courts', 't', + 'NH', 'Andover', '', 'Merrimack', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999318240', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999347267', 7, 'Michael', 'adamm1234', + 'Adam', 'John', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '68113', '7244 Brief Tree Crescent', 't', + 'NE', 'Offutt a f b', '', 'Sarpy', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999347267', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999344618', 7, 'Thomas', 'helent1234', + 'Helen', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '43534', '5066 Disabled Drink Ford', 't', + 'OH', 'Mc clure', '', 'Henry', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999344618', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999301966', 7, 'Rivas', 'meghanr1234', + 'Meghan', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '48328', '1604 Other Factor Harbor', 't', + 'MI', 'Waterford', '', 'Oakland', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999301966', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999306663', 5, 'Hurst', 'williamh1234', + 'William', 'Ian', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '76937', '7986 Line Grove', 't', + 'TX', 'Eola', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999306663', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999329410', 8, 'Bridges', 'kimberlyb1234', + 'Kimberly', 'Anna', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '21047', '9992 Show Village', 't', + 'MD', 'Fallston', '', 'Harford', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999329410', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999396820', 6, 'Stewart', 'beatrices1234', + 'Beatrice', 'Gloria', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '64123', '7373 Social Fact Roads', 't', + 'MO', 'Kansas city', '', 'Jackson', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999396820', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999398998', 7, 'Welsh', 'alejandraw1234', + 'Alejandra', 'Christine', NOW() + '3 years'::INTERVAL, '1973-11-18', 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '91615', '4270 Deafening Speed Stream', 't', + 'CA', 'North hollywood', '', 'Los angeles', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999398998', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999308688', 9, 'Osborne', 'leonao1234', + 'Leona', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '65261', '1368 Defiant Visit Drive', 't', + 'MO', 'Keytesville', '', 'Chariton', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999308688', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999321465', 4, 'Sinclair', 'luellas1234', + 'Luella', 'Carole', NOW() + '3 years'::INTERVAL, '1993-10-15', 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '45314', '3011 Thoughtful Law Terrace', 't', + 'OH', 'Cedarville', '', 'Greene', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999321465', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999399294', 5, 'Jones', 'joej1234', + 'Joe', 'Wayne', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '12167', '1641 Jolly Period Bend', 't', + 'NY', 'Stamford', '', 'Delaware', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999399294', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999355645', 6, 'Duncan', 'willied1234', + 'Willie', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '34682', '9904 Australian Cash Squares', 't', + 'FL', 'Palm harbor', '', 'Pinellas', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999355645', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999359616', 6, 'Carney', 'andreac1234', + 'Andrea', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '23442', '9706 Jealous Alternative Fort', 't', + 'VA', 'Temperanceville', '', 'Accomack', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999359616', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999359143', 9, 'Hunt', 'howardh1234', + 'Howard', 'Ralph', NOW() + '3 years'::INTERVAL, '1971-05-09', 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '49337', '1182 Radical Letter Square', 't', + 'MI', 'Newaygo', '', 'Newaygo', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999359143', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999389009', 6, 'Martin', 'eddiem1234', + 'Eddie', 'Anthony', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '95031', '1938 Fundamental Distribution Lane', 't', + 'CA', 'Los gatos', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999389009', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999327461', 9, 'Barry', 'paulb1234', + 'Paul', 'Richard', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '40583', '9317 Testy Soil Place', 't', + 'KY', 'Lexington', '', 'Fayette', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999327461', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999319193', 7, 'Wright', 'dennisw1234', + 'Dennis', 'Jimmie', NOW() + '3 years'::INTERVAL, '1992-09-05', 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '24925', '7338 Drab Development Underpass', 't', + 'WV', 'Caldwell', '', 'Greenbrier', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999319193', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999378520', 5, 'Saunders', 'rubens1234', + 'Ruben', 'Eric', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '32648', '2941 Conservation Race Haven', 't', + 'FL', 'Horseshoe beach', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999378520', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999366196', 7, 'Lane', 'jenniferl1234', + 'Jennifer', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '12456', '5547 Knee Underpass', 't', + 'NY', 'Mount marion', '', 'Ulster', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999366196', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999324371', 5, 'Madden', 'jom1234', + 'Jo', 'Mae', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '19612', '3125 League Brook', 't', + 'PA', 'Reading', '', 'Berks', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999324371', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999316280', 8, 'Harding', 'naomih1234', + 'Naomi', 'Julie', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '93021', '6693 Thin Entry Lake', 't', + 'CA', 'Moorpark', '', 'Ventura', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999316280', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999388575', 5, 'Davis', 'blaked1234', + 'Blake', 'George', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '13856', '8634 Need Bridge', 't', + 'NY', 'Walton', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999388575', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999336610', 4, 'Barnes', 'normab1234', + 'Norma', 'Gail', NOW() + '3 years'::INTERVAL, NOW() + '3 years'::INTERVAL, ''); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '23107', '218 Region River', 't', + 'VA', 'Maryus', '', 'Gloucester', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999336610', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999376864', 4, 'Anderson', 'leona1234', + 'Leon', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '27315', '9834 Standard Stravenue', 't', + 'NC', 'Providence', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999376864', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999391951', 7, 'Gillespie', 'mistyg1234', + 'Misty', 'Margaret', NOW() + '3 years'::INTERVAL, '1993-10-19', 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '47273', '4151 Severe Look Fort', 't', + 'IN', 'Scipio', '', 'Jennings', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999391951', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999368950', 7, 'Santos', 'esthers1234', + 'Esther', 'Mary', NOW() + '3 years'::INTERVAL, '1961-12-17', 'Sr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '06468', '2774 Melted Stone Islands', 't', + 'CT', 'Monroe', '', 'Fairfield', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999368950', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999343281', 7, 'Bradley', 'rebeccab1234', + 'Rebecca', 'Vanessa', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '66948', '5933 Changing Terms Pike', 't', + 'KS', 'Jamestown', '', 'Cloud', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999343281', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999394534', 4, 'Hart', 'victorh1234', + 'Victor', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '16833', '677 Breezy Agreement Mountain', 't', + 'PA', 'Curwensville', '', 'Clearfield', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999394534', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999323404', 8, 'Riley', 'edwardr1234', + 'Edward', 'Lonnie', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '84412', '5806 Metropolitan Problem Annex', 't', + 'UT', 'Ogden', '', 'Weber', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999323404', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999375760', 5, 'Jordan', 'michellej1234', + 'Michelle', '', NOW() + '3 years'::INTERVAL, '1973-05-07', 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '46970', '8951 Great Arrangement Mills', 't', + 'IN', 'Peru', '', 'Miami', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999375760', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999315742', 7, 'Brown', 'maryb1234', + 'Mary', 'Jill', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '75663', '4845 Boat Course', 't', + 'TX', 'Kilgore', '', 'Gregg', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999315742', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999322514', 7, 'Barber', 'shawnb1234', + 'Shawn', 'Thomas', NOW() + '3 years'::INTERVAL, '1988-10-21', 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '98464', '7111 Accurate Talk Canyon', 't', + 'WA', 'Tacoma', '', 'Pierce', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999322514', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999342144', 8, 'Harrison', 'williamh1234', + 'William', 'Phillip', NOW() + '3 years'::INTERVAL, '1990-04-09', 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '79085', '9798 Marked West Fork', 't', + 'TX', 'Summerfield', '', 'Castro', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999342144', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999320546', 7, 'Porter', 'darlenep1234', + 'Darlene', 'Lisa', NOW() + '3 years'::INTERVAL, '1987-02-23', 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '24910', '3522 Channel Radial', 't', + 'WV', 'Alderson', '', 'Monroe', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999320546', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999315474', 8, 'Lopez', 'joycel1234', + 'Joyce', 'Donna', NOW() + '3 years'::INTERVAL, '1980-06-28', 'Sr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '89101', '9734 Civilian Position Hollow', 't', + 'NV', 'Las vegas', '', 'Clark', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999315474', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999371586', 9, 'Stevenson', 'larrys1234', + 'Larry', '', NOW() + '3 years'::INTERVAL, '1990-12-20', 'Sr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '46241', '5799 Constitutional Roof Groves', 't', + 'IN', 'Indianapolis', '', 'Marion', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999371586', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999329832', 4, 'Kinney', 'nicholask1234', + 'Nicholas', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '90606', '411 Preliminary Library Square', 't', + 'CA', 'Whittier', '', 'Los angeles', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999329832', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999342948', 5, 'Bernard', 'omarb1234', + 'Omar', 'David', NOW() + '3 years'::INTERVAL, '1981-08-19', 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '41567', '2546 Marvellous Index Ways', 't', + 'KY', 'Stone', '', 'Pike', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999342948', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999335091', 9, 'Brown', 'maryb1234', + 'Mary', 'Annie', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '07630', '48 Look Ridge', 't', + 'NJ', 'Emerson', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999335091', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999303411', 8, 'Smith', 'sarahs1234', + 'Sarah', '', NOW() + '3 years'::INTERVAL, '1990-01-13', 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '34972', '845 Relative Dress Mall', 't', + 'FL', 'Okeechobee', '', 'Okeechobee', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999303411', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999327083', 8, 'Jones', 'coraj1234', + 'Cora', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '65262', '9202 Tight Subject Highway', 't', + 'MO', 'Kingdom city', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999327083', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999300523', 7, 'Little', 'shawnl1234', + 'Shawn', 'Joseph', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '86343', '8169 Vast Passage Key', 't', + 'AZ', 'Crown king', '', 'Yavapai', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999300523', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999328829', 6, 'Thurman', 'luannt1234', + 'Luann', 'Donna', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '63463', '1967 Interesting Court Ford', 't', + 'MO', 'Philadelphia', '', 'Marion', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999328829', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999394673', 6, 'Scott', 'patricias1234', + 'Patricia', 'Robin', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '44241', '8955 Due Population Alley', 't', + 'OH', 'Streetsboro', '', 'Portage', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999394673', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999355318', 5, 'Lamb', 'esperanzal1234', + 'Esperanza', 'Beth', NOW() + '3 years'::INTERVAL, '1995-06-13', 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '05501', '9042 Just Show Turnpike', 't', + 'MA', 'Andover', '', 'Essex', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999355318', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999377675', 8, 'Brown', 'wendib1234', + 'Wendi', 'Mary', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '37721', '7546 Rude Agreement Highway', 't', + 'TN', 'Corryton', '', 'Knox', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999377675', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999363186', 5, 'Clarke', 'lawrencec1234', + 'Lawrence', 'Vern', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '76234', '7903 Surprised Rule Loop', 't', + 'TX', 'Decatur', '', 'Wise', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999363186', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999346314', 8, 'Clark', 'danielc1234', + 'Daniel', 'Ricky', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '70706', '8604 Defensive Case Trace', 't', + 'LA', 'Denham springs', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999346314', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999353477', 6, 'Dennis', 'johnd1234', + 'John', 'Robert', NOW() + '3 years'::INTERVAL, '1975-03-04', NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '14480', '8712 Legislative Box Shore', 't', + 'NY', 'Lakeville', '', 'Livingston', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999353477', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999312358', 4, 'Copeland', 'janc1234', + 'Jan', 'Lindsey', NOW() + '3 years'::INTERVAL, '1998-06-14', 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '83204', '6713 River Bridge', 't', + 'ID', 'Pocatello', '', 'Bannock', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999312358', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999360839', 8, 'Brooks', 'pennyb1234', + 'Penny', 'Martha', NOW() + '3 years'::INTERVAL, '1980-03-13', 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '79120', '8208 Death Ramp', 't', + 'TX', 'Amarillo', '', 'Potter', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999360839', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999342446', 8, 'Johnson', 'jeannej1234', + 'Jeanne', '', NOW() + '3 years'::INTERVAL, '1980-02-03', NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '85036', '9634 Tough Division Junction', 't', + 'AZ', 'Phoenix', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999342446', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 1, '99999358416', 4, 'Sanford', 'elizabeths1234', + 'Elizabeth', 'Vanessa', NOW() + '3 years'::INTERVAL, NULL, ''); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '98357', '6767 Application Course', 't', + 'WA', 'Neah bay', '', 'Clallam', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999358416', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (2, 3, '99999361389', 9, 'Ramirez', 'alanr1234', + 'Alan', 'Claude', NOW() + '3 years'::INTERVAL, NULL, ''); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '76060', '9964 Skinny Party Orchard', 't', + 'TX', 'Kennedale', '', 'Tarrant', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999361389', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); diff --git a/Open-ILS/src/sql/test-data/deploy/users_staff_134.sql b/Open-ILS/src/sql/test-data/deploy/users_staff_134.sql new file mode 100644 index 0000000000..6ca31b83cb --- /dev/null +++ b/Open-ILS/src/sql/test-data/deploy/users_staff_134.sql @@ -0,0 +1,3618 @@ +-- Invalid address +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (13, 3, 'sforbes', 6, 'Forbes', 'samuelf1234', + 'Samuel', 'Eugene', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '40065', '8751 Gentleman Burgs', 'f', + 'KY', 'Shelbyville', '', 'Shelby', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999336514', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (13, 1, 'vcampbell', 4, 'Campbell', 'vincentc1234', + 'Vincent', 'Lawrence', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '45633', '5489 Suitable Way Knoll', 't', + 'OH', 'Hallsville', '', 'Ross', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999338171', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (15, 3, 'afrey', 9, 'Frey', 'annief1234', + 'Annie', 'Jessica', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '54409', '7918 Subjective Volume Trail', 't', + 'WI', 'Antigo', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999364116', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (15, 3, 'msalinas', 9, 'Salinas', 'marks1234', + 'Mark', 'Christopher', NOW() + '3 years'::INTERVAL, '1999-06-13', 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '25529', '1790 Lively Attitude Falls', 't', + 'WV', 'Julian', '', 'Boone', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999313813', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (15, 1, 'klindsey', 8, 'Lindsey', 'kennethl1234', + 'Kenneth', 'Jesse', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '89077', '1552 Okay Communication Motorway', 't', + 'NV', 'Henderson', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999334832', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (15, 3, 'mdavis', 8, 'Davis', 'marthad1234', + 'Martha', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '13156', '8717 Cabinet Fords', 't', + 'NY', 'Sterling', '', 'Cayuga', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999315736', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (15, 3, 'vfreeman', 7, 'Freeman', 'virginiaf1234', + 'Virginia', 'Johanna', NOW() + '3 years'::INTERVAL, '1967-07-23', 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '33122', '4033 Instant Matter Cape', 't', + 'FL', 'Miami', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999301938', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (15, 3, 'lmartinez', 7, 'Martinez', 'leroym1234', + 'Leroy', 'Brian', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '55046', '2511 Other Stream', 't', + 'MN', 'Lonsdale', '', 'Rice', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999385425', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (15, 1, 'warmstrong', 6, 'Armstrong', 'williama1234', + 'William', 'William', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '55959', '1671 Cabinet Orchard', 't', + 'MN', 'Minnesota city', '', 'Winona', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999378711', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (15, 3, 'acotton', 6, 'Cotton', 'amyc1234', + 'Amy', 'Ada', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '34202', '1488 Glamorous Alternative Forks', 't', + 'FL', 'Bradenton', '', 'Manatee', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999323866', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (15, 1, 'sbarton', 5, 'Barton', 'sarahb1234', + 'Sarah', 'Valerie', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '54655', '6986 Delighted Design Trail', 't', + 'WI', 'Soldiers grove', '', 'Crawford', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999327258', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (15, 1, 'jhammond', 5, 'Hammond', 'jamesh1234', + 'James', 'Michael', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '88211', '9144 White Support Squares', 't', + 'NM', 'Artesia', '', 'Eddy', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999385896', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (15, 3, 'ajoseph', 4, 'Joseph', 'alexj1234', + 'Alex', 'Edward', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '56308', '9081 Awake Minute Spring', 't', + 'MN', 'Alexandria', '', 'Douglas', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999378073', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (15, 3, 'imccoy', 4, 'Mccoy', 'idam1234', + 'Ida', 'Gloria', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '40046', '9875 Support Row', 't', + 'KY', 'Mount eden', '', 'Spencer', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999321047', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (14, 3, 'dwright', 9, 'Wright', 'dennisw1234', + 'Dennis', 'Ernest', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '03457', '2063 Sophisticated Status Plaza', 't', + 'NH', 'Nelson', '', 'Cheshire', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999348121', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (14, 1, 'alynch', 9, 'Lynch', 'armandol1234', + 'Armando', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '31126', '7394 Show Valley', 't', + 'GA', 'Atlanta', '', 'Fulton', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999384116', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (14, 3, 'rgraham', 8, 'Graham', 'robertg1234', + 'Robert', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '98807', '2577 Stuck Benefit Tunnel', 't', + 'WA', 'Wenatchee', '', 'Chelan', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999311950', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (14, 1, 'sthompson', 8, 'Thompson', 'sherrit1234', + 'Sherri', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '31758', '3587 Name Neck', 't', + 'GA', 'Thomasville', '', 'Thomas', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999384066', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (14, 1, 'ngarcia', 7, 'Garcia', 'nanetteg1234', + 'Nanette', 'Helen', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '11733', '6990 Icy Scene Street', 't', + 'NY', 'East setauket', '', 'Suffolk', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999332719', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (14, 3, 'rcook', 7, 'Cook', 'raymondc1234', + 'Raymond', 'Boyd', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '94533', '2004 Harsh Gold Tunnel', 't', + 'CA', 'Fairfield', '', 'Solano', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999392343', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (14, 3, 'kbrewer', 6, 'Brewer', 'katherineb1234', + 'Katherine', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '59053', '6732 Recognition Street', 't', + 'MT', 'Martinsdale', '', 'Meagher', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999383479', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (14, 1, 'cwashington', 6, 'Washington', 'christopherw1234', + 'Christopher', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '47360', '9934 Coloured Bar Grove', 't', + 'IN', 'Mooreland', '', 'Henry', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999380284', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (14, 3, 'dmurray', 5, 'Murray', 'dawnm1234', + 'Dawn', 'Katherine', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '59868', '4426 Temporary Demand River', 't', + 'MT', 'Seeley lake', '', 'Missoula', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999347656', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (14, 1, 'bwatts', 5, 'Watts', 'barbaraw1234', + 'Barbara', 'Gloria', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '51036', '4020 Marked Chemical Bayoo', 't', + 'IA', 'Maurice', '', 'Sioux', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999384489', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (14, 3, 'mmartin', 4, 'Martin', 'marym1234', + 'Mary', 'Shannon', NOW() + '3 years'::INTERVAL, NULL, 'Sr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '16657', '7511 Fortunate Length Parkway', 't', + 'PA', 'James creek', '', 'Huntingdon', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999336634', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (14, 3, 'vford', 4, 'Ford', 'vivianf1234', + 'Vivian', 'Darlene', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '23023', '3414 Energetic Weekend Circles', 't', + 'VA', 'Bruington', '', 'King and queen', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999361251', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (12, 1, 'gsuarez', 9, 'Suarez', 'garys1234', + 'Gary', 'Joel', NOW() + '3 years'::INTERVAL, NULL, 'Sr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '19244', '1613 Legislation River', 't', + 'PA', 'Philadelphia', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999372079', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (12, 1, 'eellis', 9, 'Ellis', 'edwarde1234', + 'Edward', 'David', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '17349', '1977 Profound Conference Path', 't', + 'PA', 'New freedom', '', 'York', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999354444', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (12, 1, 'nward', 8, 'Ward', 'naomiw1234', + 'Naomi', 'Angela', NOW() + '3 years'::INTERVAL, NULL, 'Sr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '20109', '2689 Standard Interview Vista', 't', + 'VA', 'Manassas', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999326817', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (12, 1, 'jrichards', 8, 'Richards', 'josephr1234', + 'Joseph', 'Thomas', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '78658', '3275 Error Freeway', 't', + 'TX', 'Ottine', '', 'Gonzales', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999318881', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (12, 3, 'rsanders', 7, 'Sanders', 'roslyns1234', + 'Roslyn', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '19975', '6946 Constitutional Word Freeway', 't', + 'DE', 'Selbyville', '', 'Sussex', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999356038', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (12, 1, 'nrivera', 7, 'Rivera', 'nancyr1234', + 'Nancy', 'Anita', NOW() + '3 years'::INTERVAL, NULL, 'Sr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '27373', '263 Catholic End Field', 't', + 'NC', 'Wallburg', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999302274', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (12, 1, 'cmartin', 6, 'Martin', 'carlm1234', + 'Carl', 'Charles', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '61452', '6985 Welcome Statement Fort', 't', + 'IL', 'Littleton', '', 'Schuyler', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999339237', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (12, 1, 'telliott', 6, 'Elliott', 'thomase1234', + 'Thomas', 'Marcus', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '97624', '1283 Splendid West Manor', 't', + 'OR', 'Chiloquin', '', 'Klamath', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999340230', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (12, 3, 'ocherry', 5, 'Cherry', 'olgac1234', + 'Olga', 'Marie', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '17081', '9657 Scared Kind Street', 't', + 'PA', 'Plainfield', '', 'Cumberland', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999384061', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (12, 1, 'gdavenport', 5, 'Davenport', 'gwendolynd1234', + 'Gwendolyn', '', NOW() + '3 years'::INTERVAL, NULL, 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '85014', '110 Logical Tone Drive', 't', + 'AZ', 'Phoenix', '', 'Maricopa', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999372586', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (12, 3, 'sbrock', 4, 'Brock', 'scottb1234', + 'Scott', 'George', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '60132', '1760 Channel Bottom', 't', + 'IL', 'Carol stream', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999336715', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (12, 3, 'rjackson', 4, 'Jackson', 'ronaldj1234', + 'Ronald', 'Robert', NOW() + '3 years'::INTERVAL, NULL, 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '04985', '5561 Native Reduction Crossing', 't', + 'ME', 'West forks', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999335465', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (11, 1, 'wjames', 9, 'James', 'waynej1234', + 'Wayne', 'George', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '27014', '5542 Politics Hollow', 't', + 'NC', 'Cooleemee', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999379835', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (11, 1, 'shernandez', 9, 'Hernandez', 'sarahh1234', + 'Sarah', 'Elaine', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '89151', '4939 Family Divide', 't', + 'NV', 'Las vegas', '', 'Clark', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999346587', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (11, 3, 'latkins', 8, 'Atkins', 'louisa1234', + 'Louis', 'Edward', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '44705', '2794 Uniform Value Square', 't', + 'OH', 'Canton', '', 'Stark', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999377256', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (11, 3, 'wneal', 8, 'Neal', 'waynen1234', + 'Wayne', '', NOW() + '3 years'::INTERVAL, '1977-06-05', 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '35501', '6178 Relieved Rain Wells', 't', + 'AL', 'Jasper', '', 'Walker', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999377249', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (11, 3, 'mharrison', 7, 'Harrison', 'michelleh1234', + 'Michelle', 'Patricia', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '05345', '1766 Victorious Estate Avenue', 't', + 'VT', 'Newfane', '', 'Windham', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999376642', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (11, 3, 'hwomack', 7, 'Womack', 'howardw1234', + 'Howard', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '06262', '5472 Exhibition Trace', 't', + 'CT', 'Quinebaug', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999342319', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (11, 3, 'vbacon', 6, 'Bacon', 'virginiab1234', + 'Virginia', 'Celia', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '61638', '4639 Family Tunnel', 't', + 'IL', 'Peoria', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999362019', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (11, 1, 'lbrooks', 6, 'Brooks', 'lonnieb1234', + 'Lonnie', 'William', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '83836', '8823 Side Fall', 't', + 'ID', 'Hope', '', 'Bonner', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999326493', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (11, 3, 'mgonzales', 5, 'Gonzales', 'maryg1234', + 'Mary', 'Jessica', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '16213', '6608 Weary Drawing Lakes', 't', + 'PA', 'Callensburg', '', 'Clarion', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999337760', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (11, 1, 'mterry', 5, 'Terry', 'michellet1234', + 'Michelle', 'Kristy', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '30817', '1658 Organisational Bedroom Square', 't', + 'GA', 'Lincolnton', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999390692', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (11, 3, 'mmeeks', 4, 'Meeks', 'michellem1234', + 'Michelle', 'Myra', NOW() + '3 years'::INTERVAL, '1966-01-23', 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '88240', '7269 Sister Gardens', 't', + 'NM', 'Hobbs', '', 'Lea', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999396672', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (11, 3, 'epalmer', 4, 'Palmer', 'elvap1234', + 'Elva', 'Tiffany', NOW() + '3 years'::INTERVAL, '1987-08-21', 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '50595', '7864 Remarkable Status River', 't', + 'IA', 'Webster city', '', 'Hamilton', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999335171', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (10, 3, 'mwilliams', 9, 'Williams', 'mattheww1234', + 'Matthew', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '60064', '7230 Trend Mount', 't', + 'IL', 'North chicago', '', 'Lake', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999365046', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (10, 1, 'nperez', 9, 'Perez', 'nicholasp1234', + 'Nicholas', 'Joseph', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '55076', '9299 Democratic Hill Cliffs', 't', + 'MN', 'Inver grove heights', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999391887', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (10, 3, 'bfisher', 8, 'Fisher', 'barbaraf1234', + 'Barbara', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '61756', '9822 Excess Start Lock', 't', + 'IL', 'Maroa', '', 'Macon', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999325028', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (10, 3, 'mmendoza', 8, 'Mendoza', 'miguelm1234', + 'Miguel', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '58773', '5831 Residential Respect Track', 't', + 'ND', 'Powers lake', '', 'Burke', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999338966', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (10, 1, 'ldickinson', 7, 'Dickinson', 'leed1234', + 'Lee', 'Annie', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '12803', '5030 Vision Loop', 't', + 'NY', 'South glens falls', '', 'Saratoga', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999328210', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (10, 1, 'awilliams', 7, 'Williams', 'angelinaw1234', + 'Angelina', 'Joan', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '25054', '1723 Multiple Object Canyon', 't', + 'WV', 'Dawes', '', 'Kanawha', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999373939', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (10, 1, 'bsanchez', 6, 'Sanchez', 'beths1234', + 'Beth', 'Deborah', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '36426', '5148 Shaggy Farm Center', 't', + 'AL', 'Brewton', '', 'Escambia', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999354471', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (10, 3, 'ethompson', 6, 'Thompson', 'elvint1234', + 'Elvin', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '67664', '2800 Cheerful Animal Valley', 't', + 'KS', 'Prairie view', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999320974', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (10, 1, 'dlawson', 5, 'Lawson', 'doral1234', + 'Dora', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '63957', '6016 General Dog Divide', 't', + 'MO', 'Piedmont', '', 'Wayne', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999394437', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (10, 1, 'lvargas', 5, 'Vargas', 'laurav1234', + 'Laura', 'Mildred', NOW() + '3 years'::INTERVAL, '1989-07-04', 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '62526', '4689 Alert Minute Court', 't', + 'IL', 'Decatur', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999317988', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (10, 3, 'wrandall', 4, 'Randall', 'williamr1234', + 'William', 'James', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '72117', '3448 Minor Solicitor Junction', 't', + 'AR', 'North little rock', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999393617', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (10, 1, 'csmith', 4, 'Smith', 'cathys1234', + 'Cathy', 'Cheryl', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '81420', '784 Striking Theatre Fords', 't', + 'CO', 'Lazear', '', 'Delta', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999389406', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (9, 1, 'alopez', 9, 'Lopez', 'arlinel1234', + 'Arline', 'Amber', NOW() + '3 years'::INTERVAL, '1985-05-05', 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '19053', '5012 Unemployed Other Harbor', 't', + 'PA', 'Feasterville trevose', '', 'Bucks', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999330939', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (9, 1, 'epeterson', 9, 'Peterson', 'emmap1234', + 'Emma', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '07095', '9931 Hushed Passage Turnpike', 't', + 'NJ', 'Woodbridge', '', 'Middlesex', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999346297', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (9, 1, 'okelly', 8, 'Kelly', 'opalk1234', + 'Opal', 'Sara', NOW() + '3 years'::INTERVAL, '1975-01-18', 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '79550', '8572 Ltd Bar Brook', 't', + 'TX', 'Snyder', '', 'Scurry', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999355455', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (9, 1, 'cdonovan', 8, 'Donovan', 'charlied1234', + 'Charlie', 'David', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '54017', '1926 Double Effort Spring', 't', + 'WI', 'New richmond', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999348978', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (9, 3, 'msmith', 7, 'Smith', 'marthas1234', + 'Martha', 'Raquel', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '80534', '7185 Arbitrary Contrast Freeway', 't', + 'CO', 'Johnstown', '', 'Weld', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999394964', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (9, 3, 'chouston', 7, 'Houston', 'cherylh1234', + 'Cheryl', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '93703', '2782 Awake Day Square', 't', + 'CA', 'Fresno', '', 'Fresno', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999320969', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (9, 1, 'kwright', 6, 'Wright', 'kayw1234', + 'Kay', 'Anna', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '22834', '4585 Whole Harbor', 't', + 'VA', 'Linville', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999398195', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (9, 3, 'mlane', 6, 'Lane', 'michellel1234', + 'Michelle', 'Andrea', NOW() + '3 years'::INTERVAL, '1963-06-14', 'Sr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '98110', '8676 Thundering Loss Field', 't', + 'WA', 'Bainbridge island', '', 'Kitsap', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999333153', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (9, 1, 'rsmith', 5, 'Smith', 'roberts1234', + 'Robert', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '00983', '231 Causal Expert Highway', 't', + 'PR', 'Carolina', '', 'Carolina', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999362675', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (9, 1, 'cdodson', 5, 'Dodson', 'cleod1234', + 'Cleo', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '25266', '53 Nice Customer Green', 't', + 'WV', 'Newton', '', 'Roane', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999362218', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (9, 1, 'mneal', 4, 'Neal', 'melvinn1234', + 'Melvin', 'Richard', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '10150', '668 Unconscious Gun Spring', 't', + 'NY', 'New york', '', 'New york', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999317310', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (9, 3, 'awilliams', 4, 'Williams', 'annaw1234', + 'Anna', 'Justine', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '45809', '749 Software Center', 't', + 'OH', 'Gomer', '', 'Allen', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999392361', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (8, 1, 'emiller', 9, 'Miller', 'edmondm1234', + 'Edmond', 'Vance', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '92007', '2632 Unlikely Assumption Tunnel', 't', + 'CA', 'Cardiff by the sea', '', 'San diego', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999371777', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (8, 3, 'vlogan', 9, 'Logan', 'vanessal1234', + 'Vanessa', 'Cassandra', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '44470', '2823 Eventual Hour Gateway', 't', + 'OH', 'Southington', '', 'Trumbull', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999372363', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (8, 1, 'lthompson', 8, 'Thompson', 'lisat1234', + 'Lisa', 'Shirley', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '45690', '2166 Newspaper Grove', 't', + 'OH', 'Waverly', '', 'Pike', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999321149', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (8, 1, 'oshaffer', 8, 'Shaffer', 'ollies1234', + 'Ollie', 'Monica', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '15534', '2134 Inc Boat Turnpike', 't', + 'PA', 'Buffalo mills', '', 'Bedford', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999335455', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (8, 1, 'randrews', 7, 'Andrews', 'raymonda1234', + 'Raymond', 'Willie', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '06018', '1944 Hot Tape Valley', 't', + 'CT', 'Canaan', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999346031', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (8, 3, 'emartinez', 7, 'Martinez', 'ednam1234', + 'Edna', 'Judith', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '49270', '121 Consequence Club', 't', + 'MI', 'Petersburg', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999336926', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (8, 3, 'jdavis', 6, 'Davis', 'jamesd1234', + 'James', 'Jerry', NOW() + '3 years'::INTERVAL, '1970-06-11', 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '58064', '5708 Brainy West Bend', 't', + 'ND', 'Page', '', 'Cass', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999363070', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (8, 1, 'droberts', 6, 'Roberts', 'dianer1234', + 'Diane', 'Teresa', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '00692', '9609 Advanced Tool Mountain', 't', + 'PR', 'Vega alta', '', 'Vega alta', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999357381', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (8, 1, 'psantiago', 5, 'Santiago', 'paiges1234', + 'Paige', 'Helen', NOW() + '3 years'::INTERVAL, '1979-08-23', 'Sr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '91608', '2852 Key Incident Avenue', 't', + 'CA', 'Universal city', '', 'Los angeles', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999394956', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (8, 1, 'awright', 5, 'Wright', 'alyssaw1234', + 'Alyssa', 'Christine', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '80295', '7771 Alive Iron Mission', 't', + 'CO', 'Denver', '', 'Denver', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999367802', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (8, 3, 'dbeck', 4, 'Beck', 'dianab1234', + 'Diana', 'Wilma', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '58776', '1146 Ability Centers', 't', + 'ND', 'Ross', '', 'Mountrail', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999361901', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (8, 1, 'mclark', 4, 'Clark', 'montyc1234', + 'Monty', 'Daniel', NOW() + '3 years'::INTERVAL, '1984-05-19', 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '55168', '3541 Radical Sir Avenue', 't', + 'MN', 'Saint paul', '', 'Ramsey', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999381970', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (7, 3, 'hstone', 9, 'Stone', 'hazels1234', + 'Hazel', 'Sylvia', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '93247', '4171 Impossible Defence Overpass', 't', + 'CA', 'Lindsay', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999367834', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (7, 1, 'dgarza', 9, 'Garza', 'davidg1234', + 'David', 'Steven', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '22513', '3627 Retail Kind Lodge', 't', + 'VA', 'Merry point', '', 'Lancaster', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999377760', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (7, 3, 'jevans', 8, 'Evans', 'johne1234', + 'John', 'Timothy', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '64778', '1212 Mid Top Parkway', 't', + 'MO', 'Richards', '', 'Vernon', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999367573', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (7, 3, 'rpayton', 8, 'Payton', 'robertp1234', + 'Robert', 'Steven', NOW() + '3 years'::INTERVAL, '1994-05-07', 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '55336', '1642 Minor Potential Corners', 't', + 'MN', 'Glencoe', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999394830', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (7, 3, 'ddavis', 7, 'Davis', 'donaldd1234', + 'Donald', 'Gene', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '48749', '5946 Gas Way', 't', + 'MI', 'Omer', '', 'Arenac', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999340278', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (7, 1, 'gadams', 7, 'Adams', 'genea1234', + 'Gene', '', NOW() + '3 years'::INTERVAL, '1974-02-18', 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '88525', '8265 Phone Trail', 't', + 'TX', 'El paso', '', 'El paso', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999349290', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (7, 1, 'hwhite', 6, 'White', 'humbertow1234', + 'Humberto', 'Kevin', NOW() + '3 years'::INTERVAL, '1997-09-08', 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '25926', '6558 Willing Master Valley', 't', + 'WV', 'Sprague', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999309750', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (7, 3, 'asnyder', 6, 'Snyder', 'anas1234', + 'Ana', '', NOW() + '3 years'::INTERVAL, '1991-05-23', 'III'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '00922', '8532 Spare Offer Cliffs', 't', + 'PR', 'San juan', '', 'San juan', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999332335', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (7, 1, 'jroberts', 5, 'Roberts', 'johnr1234', + 'John', 'Theodore', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '79550', '279 Passing Conference Street', 't', + 'TX', 'Snyder', '', 'Scurry', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999367122', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (7, 3, 'sheath', 5, 'Heath', 'stevenh1234', + 'Steven', 'Luke', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '94547', '4666 Pain Isle', 't', + 'CA', 'Hercules', '', 'Contra costa', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999375796', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (7, 1, 'krush', 4, 'Rush', 'keithr1234', + 'Keith', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '15257', '4464 Sense Station', 't', + 'PA', 'Pittsburgh', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999345655', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (7, 3, 'lfarrell', 4, 'Farrell', 'lindaf1234', + 'Linda', 'Linda', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '75155', '7746 Cooperative Fall Shoal', 't', + 'TX', 'Rice', '', 'Navarro', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999344872', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (6, 3, 'rharrison', 9, 'Harrison', 'richardh1234', + 'Richard', 'Melvin', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '06601', '2896 Jewish Lack Lodge', 't', + 'CT', 'Bridgeport', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999399702', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (6, 1, 'ksmith', 9, 'Smith', 'kevins1234', + 'Kevin', 'Timothy', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '81523', '5119 Lot Isle', 't', + 'CO', 'Glade park', '', 'Mesa', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999394646', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (6, 1, 'fmoore', 8, 'Moore', 'florencem1234', + 'Florence', 'Michelle', NOW() + '3 years'::INTERVAL, '1977-02-07', 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '39440', '6398 Mathematical Condition Arcade', 't', + 'MS', 'Laurel', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999341034', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (6, 1, 'bcruz', 8, 'Cruz', 'bettyc1234', + 'Betty', 'Shirley', NOW() + '3 years'::INTERVAL, '1993-08-10', 'Sr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '33630', '1062 Scornful Air Fort', 't', + 'FL', 'Tampa', '', 'Hillsborough', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999363183', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (6, 1, 'jjohnson', 7, 'Johnson', 'joelj1234', + 'Joel', 'Allen', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '36028', '3220 Drunk Message Parkway', 't', + 'AL', 'Dozier', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999370090', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (6, 1, 'kburton', 7, 'Burton', 'kristenb1234', + 'Kristen', 'Dena', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '42413', '4924 Part-time Charge Knoll', 't', + 'KY', 'Hanson', '', 'Hopkins', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999372936', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (6, 1, 'rpineda', 6, 'Pineda', 'robertp1234', + 'Robert', 'Gordon', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '47703', '1587 Labour Holiday Park', 't', + 'IN', 'Evansville', '', 'Vanderburgh', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999349988', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (6, 1, 'avaldez', 6, 'Valdez', 'alissav1234', + 'Alissa', 'Gladys', NOW() + '3 years'::INTERVAL, '1994-03-25', 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '64735', '4372 Fact Junction', 't', + 'MO', 'Clinton', '', 'Henry', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999332255', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (6, 3, 'krowland', 5, 'Rowland', 'kennethr1234', + 'Kenneth', 'Ernest', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '98131', '8373 Resonant Investment Mission', 't', + 'WA', 'Seattle', '', 'King', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999354715', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (6, 1, 'thansen', 5, 'Hansen', 'terranceh1234', + 'Terrance', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '16550', '4446 Formidable Way Knolls', 't', + 'PA', 'Erie', '', 'Erie', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999363646', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (6, 3, 'breid', 4, 'Reid', 'barbarar1234', + 'Barbara', 'Amanda', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '04056', '3517 Hot School Brook', 't', + 'ME', 'Newfield', '', 'York', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999365307', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (6, 1, 'mroberts', 4, 'Roberts', 'michaelr1234', + 'Michael', 'Stephen', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '63541', '4668 Start Inlet', 't', + 'MO', 'Glenwood', '', 'Schuyler', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999332788', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (5, 3, 'rkaufman', 9, 'Kaufman', 'rachelk1234', + 'Rachel', 'Vickie', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '68659', '7270 Development Row', 't', + 'NE', 'Rogers', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999340790', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (5, 3, 'csims', 9, 'Sims', 'christophers1234', + 'Christopher', 'John', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '89013', '5637 Plastic Mill', 't', + 'NV', 'Goldfield', '', 'Esmeralda', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999386091', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (5, 1, 'srobinson', 8, 'Robinson', 'sarahr1234', + 'Sarah', '', NOW() + '3 years'::INTERVAL, '1996-01-28', 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '65897', '8092 Pure Name Bridge', 't', + 'MO', 'Springfield', '', 'Greene', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999340199', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (5, 3, 'jpayton', 8, 'Payton', 'johnnyp1234', + 'Johnny', 'Vincent', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '85738', '8772 Forthcoming Hope Fort', 't', + 'AZ', 'Catalina', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999387186', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (5, 3, 'djamison', 7, 'Jamison', 'davidj1234', + 'David', 'Eric', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '59604', '9218 Moral Worker Summit', 't', + 'MT', 'Helena', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999340530', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (5, 3, 'jford', 7, 'Ford', 'jamief1234', + 'Jamie', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '41746', '8268 Hill Valleys', 't', + 'KY', 'Happy', '', 'Perry', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999384455', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (5, 1, 'gwatson', 6, 'Watson', 'geraldw1234', + 'Gerald', 'Larry', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '85063', '881 Scary Holiday Radial', 't', + 'AZ', 'Phoenix', '', 'Maricopa', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999385100', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (5, 1, 'clambert', 6, 'Lambert', 'charlesl1234', + 'Charles', 'William', NOW() + '3 years'::INTERVAL, '1995-09-22', 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '40291', '6026 Wide Development Port', 't', + 'KY', 'Louisville', '', 'Jefferson', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999335749', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (5, 1, 'mbarber', 5, 'Barber', 'michealb1234', + 'Micheal', 'Ramon', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '91357', '9727 Proposed Executive Plaza', 't', + 'CA', 'Tarzana', '', 'Los angeles', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999361522', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (5, 3, 'tcruz', 5, 'Cruz', 'tomc1234', + 'Tom', 'Eugene', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '40546', '7481 Reform Road', 't', + 'KY', 'Lexington', '', 'Fayette', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999394278', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (5, 1, 'iwalton', 4, 'Walton', 'inezw1234', + 'Inez', 'Amanda', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '29053', '8589 Official Valleys', 't', + 'SC', 'Gaston', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999356283', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (5, 3, 'mtownsend', 4, 'Townsend', 'maryt1234', + 'Mary', '', NOW() + '3 years'::INTERVAL, '1995-03-03', 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '72464', '3321 Answer Stravenue', 't', + 'AR', 'Saint francis', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999336350', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (4, 3, 'cmartinez', 9, 'Martinez', 'carolynm1234', + 'Carolyn', 'Sandra', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '49654', '7081 Appalling Plant Causeway', 't', + 'MI', 'Leland', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999397121', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (4, 1, 'jjohnson', 9, 'Johnson', 'jeremyj1234', + 'Jeremy', 'Mark', NOW() + '3 years'::INTERVAL, '1970-03-14', 'II'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '70358', '4786 Prior Politics Mission', 't', + 'LA', 'Grand isle', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999397850', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 9); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 9; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (4, 1, 'mscott', 8, 'Scott', 'maes1234', + 'Mae', 'Sue', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '14723', '1060 Letter Stravenue', 't', + 'NY', 'Cherry creek', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999395984', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (4, 3, 'rstevens', 8, 'Stevens', 'russells1234', + 'Russell', 'Daniel', NOW() + '3 years'::INTERVAL, '1973-08-15', 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '29582', '7735 Street Creek', 't', + 'SC', 'North myrtle beach', '', 'Horry', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999340524', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 8); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 8; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (4, 3, 'therrera', 7, 'Herrera', 'tracih1234', + 'Traci', 'Edith', NOW() + '3 years'::INTERVAL, '1994-07-07', 'Jr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '84133', '7301 Watery Arrangement Radial', 't', + 'UT', 'Salt lake city', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999386259', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (4, 3, 'vgrimes', 7, 'Grimes', 'virginiag1234', + 'Virginia', 'Jennifer', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '87027', '8666 Fluttering Situation Heights', 't', + 'NM', 'La jara', '', 'Sandoval', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999318163', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 7); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 7; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (4, 1, 'pward', 6, 'Ward', 'paulw1234', + 'Paul', '', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '38233', '8859 Roasted Energy Falls', 't', + 'TN', 'Kenton', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999346968', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (4, 3, 'bgreen', 6, 'Green', 'beatriceg1234', + 'Beatrice', 'Janette', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '65438', '9082 Plain Bed Avenue', 't', + 'MO', 'Birch tree', '', 'Shannon', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999345139', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 6); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 6; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (4, 1, 'sschmidt', 5, 'Schmidt', 'scotts1234', + 'Scott', 'Kyle', NOW() + '3 years'::INTERVAL, NULL, 'Sr'); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '99670', '2204 Status Avenue', 't', + 'AK', 'South naknek', '', '', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999393981', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (4, 3, 'jclark', 5, 'Clark', 'joannec1234', + 'Joanne', 'Andrea', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 'f', '35175', '7622 Thoughtless Science Pines', 't', + 'AL', 'Union grove', '', 'Marshall', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999366354', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 5); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 5; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (4, 1, 'bbrown', 4, 'Brown', 'beverlyb1234', + 'Beverly', 'Florence', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '29058', '2991 Trip Crescent', 't', + 'SC', 'Heath springs', '', 'Lancaster', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999338317', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; + +INSERT INTO actor.usr + (profile, ident_type, usrname, home_ou, family_name, passwd, first_given_name, second_given_name, expire_date, dob, suffix) + VALUES (4, 3, 'jmcginnis', 4, 'Mcginnis', 'josem1234', + 'Jose', 'David', NOW() + '3 years'::INTERVAL, NULL, NULL); + +INSERT INTO actor.usr_address + (country, within_city_limits, post_code, street1, valid, state, city, street2, county, usr) + VALUES ('USA', 't', '65055', '8231 Relieved Debt Cape', 't', + 'MO', 'Mc girk', '', 'Moniteau', CURRVAL('actor.usr_id_seq')); + +INSERT INTO actor.card (barcode, usr) + VALUES ('99999316430', CURRVAL('actor.usr_id_seq')); + +UPDATE actor.usr SET + card = CURRVAL('actor.card_id_seq'), + billing_address = CURRVAL('actor.usr_address_id_seq'), + credit_forward_balance = '0', + mailing_address = CURRVAL('actor.usr_address_id_seq') + WHERE id=CURRVAL('actor.usr_id_seq'); + +INSERT INTO permission.usr_work_ou_map (usr, work_ou) + VALUES (CURRVAL('actor.usr_id_seq'), 4); + +UPDATE actor.usr usr SET usrname = LOWER(aou.shortname) || usrname + FROM actor.org_unit aou + WHERE usr.id = CURRVAL('actor.usr_id_seq') AND aou.id = 4; diff --git a/Open-ILS/src/sql/test-data/revert/README.revert b/Open-ILS/src/sql/test-data/revert/README.revert new file mode 100644 index 0000000000..9bfa013391 --- /dev/null +++ b/Open-ILS/src/sql/test-data/revert/README.revert @@ -0,0 +1,5 @@ +Keep this file here so Git will retain the directory. + +Revert scripts are added by 'sqitch add'. They can be useful for development +and testing, however they should be removed from the repository when +merging changes to master. diff --git a/Open-ILS/src/sql/test-data/sqitch.conf b/Open-ILS/src/sql/test-data/sqitch.conf new file mode 100644 index 0000000000..b86f2739d0 --- /dev/null +++ b/Open-ILS/src/sql/test-data/sqitch.conf @@ -0,0 +1,14 @@ +[core] + engine = pg +[target "evergreen"] + # override at run time with --db-user and/or --db-host + uri = postgresql://evergreen@127.0.0.1/evergreen +[engine "pg"] + target = evergreen +[deploy] + verify = false + # only revert the last (failed) change by default. + # this helps avoid an unintended chain reaction of reverts. + mode = change +[rebase] + verify = false diff --git a/Open-ILS/src/sql/test-data/sqitch.plan b/Open-ILS/src/sql/test-data/sqitch.plan new file mode 100644 index 0000000000..ea28090e6a --- /dev/null +++ b/Open-ILS/src/sql/test-data/sqitch.plan @@ -0,0 +1,26 @@ +%syntax-version=1.0.0 +%project=evergreen-test-data +%uri=https://testing.evergreen-ils.org/ + +env_create 2015-07-17T14:03:33Z Bill Erickson # Adding env_create +libraries [env_create] 2015-07-17T14:03:34Z Bill Erickson # Adding libraries +auth_concerto [libraries] 2015-07-17T14:03:34Z Bill Erickson # Adding auth_concerto +bibs_concerto [auth_concerto] 2015-07-17T14:03:34Z Bill Erickson # Adding bibs_concerto +bibs_fre [bibs_concerto] 2015-07-17T14:03:34Z Bill Erickson # Adding bibs_fre +bibs_maps [bibs_fre] 2015-07-17T14:03:35Z Bill Erickson # Adding bibs_maps +bibs_graphic_880 [bibs_maps] 2015-07-17T14:03:35Z Bill Erickson # Adding bibs_graphic_880 +bibs_fic [bibs_graphic_880] 2015-07-17T14:03:35Z Bill Erickson # Adding bibs_fic +bibs_rda [bibs_fic] 2015-07-17T14:03:35Z Bill Erickson # Adding bibs_rda +bibs_insert [bibs_rda] 2015-07-17T14:03:36Z Bill Erickson # Adding bibs_insert +assets_concerto [bibs_insert] 2015-07-17T14:03:36Z Bill Erickson # Adding assets_concerto +assets_fre [assets_concerto] 2015-07-17T14:03:36Z Bill Erickson # Adding assets_fre +assets_graphic_880 [assets_fre] 2015-07-17T14:03:37Z Bill Erickson # Adding assets_graphic_880 +assets_fic [assets_graphic_880] 2015-07-17T14:03:37Z Bill Erickson # Adding assets_fic +assets_rda [assets_fic] 2015-07-17T14:03:37Z Bill Erickson # Adding assets_rda +assets_extras [assets_rda] 2015-11-30T20:53:56Z Bill Erickson # Adding assets_extras +users_patrons_100 [assets_rda] 2015-07-17T14:03:37Z Bill Erickson # Adding users_patrons_100 +users_staff_134 [users_patrons_100] 2015-07-17T14:03:38Z Bill Erickson # Adding users_staff_134 +transactions [users_staff_134] 2015-07-17T14:03:38Z Bill Erickson # Adding transactions +neg_bal_custom_transactions [transactions] 2015-11-30T20:56:52Z Bill Erickson # Adding neg_bal_custom_transactions +acq [neg_bal_custom_transactions] 2015-11-30T20:59:56Z Bill Erickson # Adding acq +env_destroy [transactions] 2015-07-17T14:03:38Z Bill Erickson # Adding env_destroy diff --git a/Open-ILS/src/sql/test-data/verify/README.verify b/Open-ILS/src/sql/test-data/verify/README.verify new file mode 100644 index 0000000000..095df64f43 --- /dev/null +++ b/Open-ILS/src/sql/test-data/verify/README.verify @@ -0,0 +1,5 @@ +Keep this file here so Git will retain the directory. + +Verify scripts are added by 'sqitch add'. They can be useful for development +and testing, however they should be removed from the repository when +merging changes to master. diff --git a/Open-ILS/src/support-scripts/eg_db_config.in b/Open-ILS/src/support-scripts/eg_db_config.in index b59d044b86..de79a7904d 100755 --- a/Open-ILS/src/support-scripts/eg_db_config.in +++ b/Open-ILS/src/support-scripts/eg_db_config.in @@ -28,7 +28,7 @@ use Cwd qw/abs_path getcwd/; my ($dbhost, $dbport, $dbname, $dbuser, $dbpw, $help, $admin_user, $admin_pw, $load_all, $load_concerto); my $config_file = ''; -my $build_db_sh = ''; +my $schema_dir = ''; my $offline_file = ''; my $prefix = ''; my $sysconfdir = ''; @@ -45,9 +45,7 @@ my $cwd = getcwd(); my $script_dir = abs_path(dirname($0)); # Set the location and base file for sample data -my $_sample_dir = abs_path(File::Spec->catdir($script_dir, '../../tests/datasets/sql/')); -my $_sample_all = 'load_all.sql'; -my $_sample_concerto = 'load_concerto.sql'; +my $_sample_dir = abs_path(File::Spec->catdir($script_dir, '../sql/test-data/')); =over @@ -176,17 +174,31 @@ sub create_database { } } -=item create_schema() - Creates the database schema by calling build-db.sh +=item sqitch_deploy() - Execute sqitch deployment script in current directory. =cut -sub create_schema { + +sub sqitch_deploy { my $settings = shift; + $ENV{PGPASSWORD} = $settings->{pw}; + + my $cmd = sprintf( + 'sqitch --db-host %s --db-port %s --db-name %s --db-user %s deploy', + $settings->{host}, $settings->{port}, + $settings->{db}, $settings->{user} + ); + + # assumes non-verbose mode + $cmd = "$cmd 2>&1 | grep -v NOTICE | grep -v '^INSERT'"; - chdir(dirname($build_db_sh)); - my $cmd = File::Spec->catfile('.', basename($build_db_sh)) . " " . - $settings->{host} ." ". $settings->{port} ." ". - $settings->{db} ." ". $settings->{user} ." ". - $settings->{pw}; system($cmd); +} + +=item create_schema() - Creates the database schema by calling build-db.sh +=cut +sub create_schema { + my $settings = shift; + chdir($schema_dir); + sqitch_deploy($settings); chdir($script_dir); } @@ -194,19 +206,10 @@ sub create_schema { =cut sub load_sample_data { my $settings = shift; - - my $load_script = $_sample_all; chdir($_sample_dir); - if ($load_concerto) { - $load_script = $_sample_concerto; - } - $ENV{'PGUSER'} = $settings->{user}; - $ENV{'PGPASSWORD'} = $settings->{pw}; - $ENV{'PGPORT'} = $settings->{port}; - $ENV{'PGHOST'} = $settings->{host}; - $ENV{'PGDATABASE'} = $settings->{db}; - my @output = `psql -f $load_script 2>&1`; - print @output; + # TODO: support load $load_concerto -- does anyone use it? + # To do this, --log-only load most of the sample data. + sqitch_deploy($settings); chdir($cwd); } @@ -266,7 +269,7 @@ GetOptions("create-schema" => \$cschema, "create-offline" => \$offline, "update-config" => \$uconfig, "config-file=s" => \$config_file, - "build-db-file=s" => \$build_db_sh, + "schema-dir=s" => \$schema_dir, "pg-contrib-dir=s" => \$pg_contribdir, "create-db-sql-contribs=s" => \$create_db_sql_contribs, "create-db-sql-extensions=s" => \$create_db_sql_extensions, @@ -301,8 +304,8 @@ if (!$prefix) { $prefix = $temp[0]; } -if (!$build_db_sh) { - $build_db_sh = File::Spec->catfile($script_dir, '../sql/Pg/build-db.sh'); +if (!$schema_dir) { + $schema_dir = File::Spec->catdir($script_dir, '../sql/schema/'); } if (!$pg_contribdir) { @@ -317,14 +320,15 @@ if (!$create_db_sql_contribs) { } if (!$create_db_sql_extensions) { - $create_db_sql_extensions = File::Spec->catfile($script_dir, '../sql/Pg/create_database_extensions.sql'); + $create_db_sql_extensions = File::Spec->catfile($script_dir, + '../sql/schema/tools/create_database_extensions.sql'); } if (!$offline_file) { $offline_file = File::Spec->catfile($sysconfdir, 'offline-config.pl'); } -unless (-e $build_db_sh) { die "Error: $build_db_sh does not exist. \n"; } +unless (-e $schema_dir) { die "Error: $schema_dir does not exist. \n"; } unless (-e $config_file) { die "Error: $config_file does not exist. \n"; } if ($uconfig) { update_config(\@services, \%settings); } -- 2.11.0